用户-1状态隐藏账户绑定
This commit is contained in:
parent
96616c94ca
commit
e80100199f
|
|
@ -36,7 +36,7 @@
|
||||||
},
|
},
|
||||||
goToBindBank() {
|
goToBindBank() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/my/bank-account-bind'
|
url: '/pages/my/b-account-bind'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@
|
||||||
}, {
|
}, {
|
||||||
"path": "withdraw"
|
"path": "withdraw"
|
||||||
}, {
|
}, {
|
||||||
"path": "bank-account-bind"
|
"path": "b-account-bind"
|
||||||
}, {
|
}, {
|
||||||
"path": "my-money-bag"
|
"path": "my-money-bag"
|
||||||
}, {
|
}, {
|
||||||
|
|
|
||||||
|
|
@ -295,7 +295,7 @@
|
||||||
// 查询实名信息
|
// 查询实名信息
|
||||||
let certifyInfoRes = await this.$request.getWorkerCertify();
|
let certifyInfoRes = await this.$request.getWorkerCertify();
|
||||||
this.certifyInfo = certifyInfoRes.data;
|
this.certifyInfo = certifyInfoRes.data;
|
||||||
if (!this.bankCard || !this.bankCard.bankNum) {
|
if ((!this.bankCard || !this.bankCard.bankNum) && this.curUserInfo.status != -1) {
|
||||||
this.$refs.vertifyBankBind.showModal();
|
this.$refs.vertifyBankBind.showModal();
|
||||||
return false;
|
return false;
|
||||||
} else if (!this.certifyInfo || !this.certifyInfo.workerCertificationId) {
|
} else if (!this.certifyInfo || !this.certifyInfo.workerCertificationId) {
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
<view class="margin-top margin-lr-sm">
|
<view class="margin-top margin-lr-sm">
|
||||||
<view class="flex justify-between align-center solid-bottom padding padding-lr-lg text-lg"
|
<view class="flex justify-between align-center solid-bottom padding padding-lr-lg text-lg"
|
||||||
v-for="(item, index) in menuList" @click="clickMenuItem(item)"
|
v-for="(item, index) in menuList" @click="clickMenuItem(item)"
|
||||||
v-if="item.show">
|
v-if="item.show || (item.showByStatus ? curUserInfo.status != -1 : false)">
|
||||||
<view class="flex justify-start align-center">
|
<view class="flex justify-start align-center">
|
||||||
<view class="margin-right-sm text-main-color text-xl"><view :class="'cuIcon-' + item.icon"></view></view>
|
<view class="margin-right-sm text-main-color text-xl"><view :class="'cuIcon-' + item.icon"></view></view>
|
||||||
<view>{{item.name}}</view>
|
<view>{{item.name}}</view>
|
||||||
|
|
@ -70,7 +70,8 @@
|
||||||
name: '提现账户',
|
name: '提现账户',
|
||||||
icon: 'moneybag',
|
icon: 'moneybag',
|
||||||
pageUrl: '/pages/my/withdraw',
|
pageUrl: '/pages/my/withdraw',
|
||||||
show: true
|
// show: true,
|
||||||
|
showByStatus: true
|
||||||
}, {
|
}, {
|
||||||
name: '交易明细',
|
name: '交易明细',
|
||||||
icon: 'form',
|
icon: 'form',
|
||||||
|
|
|
||||||
|
|
@ -104,7 +104,7 @@
|
||||||
},
|
},
|
||||||
bindAccount() {
|
bindAccount() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/my/bank-account-bind'
|
url: '/pages/my/b-account-bind'
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
chooseImage(e) {
|
chooseImage(e) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue