|
|
@@ -91,12 +91,12 @@
|
|
|
<Iconfont icon="g-icon-capital">资金信息</Iconfont>
|
|
|
</template>
|
|
|
</Cell>
|
|
|
- <Cell is-link :to="{ name: 'account-certification' }" v-if="authStatus !== AuthStatus.Certified && hasSignContract">
|
|
|
+ <Cell is-link :to="{ name: 'account-certification' }" v-if="authStatus !== AuthStatus.Certified">
|
|
|
<template #title>
|
|
|
<Iconfont icon="g-icon-certification">实名认证</Iconfont>
|
|
|
</template>
|
|
|
</Cell>
|
|
|
- <Cell is-link :to="{ name: 'bank-sign' }" v-if="authStatus === AuthStatus.Certified">
|
|
|
+ <Cell is-link :to="{ name: 'bank-sign' }" v-if="authStatus === AuthStatus.Certified && hasSignContract">
|
|
|
<template #title>
|
|
|
<Iconfont icon="g-icon-sign">银行签约</Iconfont>
|
|
|
</template>
|
|
|
@@ -191,7 +191,8 @@ const doInOutMoney = (tab: string) => {
|
|
|
message: '请先去签署合同条例!',
|
|
|
showCancelButton: true,
|
|
|
confirmButtonText: '我知道了'
|
|
|
- }).then(() => {
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
router.push({ name: 'bank-wallet', query: { tab } })
|
|
|
})
|
|
|
} else {
|
|
|
@@ -203,7 +204,7 @@ const doInOutMoney = (tab: string) => {
|
|
|
dialog({
|
|
|
message: '请先去签署合同条例!',
|
|
|
showCancelButton: true,
|
|
|
- confirmButtonText: '我知道了'
|
|
|
+ confirmButtonText: '去签署'
|
|
|
}).then(() => {
|
|
|
router.push({ name: 'account-protocol', query: { memberUserId: getMemberUserId()} })
|
|
|
})
|