|
|
@@ -4,12 +4,11 @@ import { ref } from 'vue'
|
|
|
import { LOGIN_PAGE } from '@/router/config'
|
|
|
import { useUserStore } from '@/store'
|
|
|
import { useTokenStore } from '@/store/token'
|
|
|
-import { changtime, menuButtonInfo, safeAreaInsets, systemInfo } from '@/utils'
|
|
|
|
|
|
definePage({
|
|
|
- style: {
|
|
|
- navigationBarTitleText: '提现',
|
|
|
- },
|
|
|
+ style: {
|
|
|
+ navigationBarTitleText: '提现',
|
|
|
+ },
|
|
|
})
|
|
|
|
|
|
const userStore = useUserStore()
|
|
|
@@ -18,6 +17,12 @@ const tokenStore = useTokenStore()
|
|
|
const { userInfo } = storeToRefs(userStore)
|
|
|
|
|
|
const unlockAmount = ref('')
|
|
|
+
|
|
|
+function toBindBank() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages-A/bank/index',
|
|
|
+ })
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
@@ -35,7 +40,7 @@ const unlockAmount = ref('')
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="widthdraw-select-card-right">
|
|
|
- <view class="widthdraw-select-card-right-title">
|
|
|
+ <view class="widthdraw-select-card-right-title" @click.stop="toBindBank">
|
|
|
去绑卡
|
|
|
</view>
|
|
|
<u-icon name="arrow-right" size="13" color="#666" />
|