修复首页转跳企业认证方式错误

This commit is contained in:
唐明明
2021-10-21 11:05:26 +08:00
parent 660ed885d3
commit 6c2c7c6b94
30 changed files with 32 additions and 17 deletions

View File

@@ -184,7 +184,12 @@
confirmText: pathName === 'vipIndex' ? '去开通': '去认证',
confirmColor: '#8b64fd',
success: res => {
console.log(pathName)
if(res.confirm) {
if(pathName === 'User'){
this.$Router.pushTab({name: pathName})
return
}
this.$Router.push({name: pathName})
}
}