| | |
| | | name: 'InnerPage', |
| | | }); |
| | | |
| | | const userStore = useUserStore(); |
| | | const { isCertified } = useUser(); |
| | | |
| | | const isBinding = ref(false); |
| | | |
| | |
| | | url: `${RouterPath.incomeDetail}`, |
| | | }); |
| | | } |
| | | function goBankBind() { |
| | | // Message.confirm({ message: '完成实名认证后才可进行银行卡绑定' }).then(() => { |
| | | // Taro.navigateTo({ |
| | | // url: `${RouterPath.authenticationHome}`, |
| | | // }); |
| | | // }); |
| | | Taro.navigateTo({ |
| | | url: `${isBinding.value ? RouterPath.bindBankCard : RouterPath.unboundBankCard}`, |
| | | }); |
| | | } |
| | | |
| | | const goBankBind = useAccessReal( |
| | | () => { |
| | | Taro.navigateTo({ |
| | | url: `${isBinding.value ? RouterPath.bindBankCard : RouterPath.unboundBankCard}`, |
| | | }); |
| | | }, |
| | | { message: '完成实名认证后才可进行银行卡绑定' } |
| | | ); |
| | | </script> |
| | | |
| | | <style lang="scss"> |