用户-1状态隐藏账户绑定
This commit is contained in:
parent
96616c94ca
commit
e80100199f
|
|
@ -36,7 +36,7 @@
|
|||
},
|
||||
goToBindBank() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/my/bank-account-bind'
|
||||
url: '/pages/my/b-account-bind'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
60
pages.json
60
pages.json
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"pages": [{
|
||||
"path": "pages/index/index"
|
||||
}, {
|
||||
"path": "pages/index/msg-dialog"
|
||||
}, {
|
||||
"path": "pages/index/msg-dialog"
|
||||
}],
|
||||
"subPackages": [{
|
||||
"root": "pages/area-proxy/",
|
||||
|
|
@ -26,37 +26,37 @@
|
|||
"path": "serv-detail"
|
||||
}, {
|
||||
"path": "finish-order"
|
||||
}, {
|
||||
"path": "cancel-order"
|
||||
}, {
|
||||
"path": "cancel-order"
|
||||
}]
|
||||
}, {
|
||||
"root": "pages/my/",
|
||||
"pages": [{
|
||||
"path": "new-serv"
|
||||
}, {
|
||||
"path": "master-occupancy"
|
||||
}, {
|
||||
"path": "withdraw"
|
||||
}, {
|
||||
"path": "b-account-bind"
|
||||
}, {
|
||||
"path": "my-money-bag"
|
||||
}, {
|
||||
"path": "statement-desc"
|
||||
}, {
|
||||
"path": "pay-deposit"
|
||||
}, {
|
||||
"path": "personal-info"
|
||||
}, {
|
||||
"path": "account-security"
|
||||
}, {
|
||||
"path": "master-settled-info"
|
||||
}, {
|
||||
"path": "certification"
|
||||
}]
|
||||
}, {
|
||||
"root": "pages/my/",
|
||||
"pages": [{
|
||||
"path": "new-serv"
|
||||
}, {
|
||||
"path": "master-occupancy"
|
||||
}, {
|
||||
"path": "withdraw"
|
||||
}, {
|
||||
"path": "bank-account-bind"
|
||||
}, {
|
||||
"path": "my-money-bag"
|
||||
}, {
|
||||
"path": "statement-desc"
|
||||
}, {
|
||||
"path": "pay-deposit"
|
||||
}, {
|
||||
"path": "personal-info"
|
||||
}, {
|
||||
"path": "account-security"
|
||||
}, {
|
||||
"path": "master-settled-info"
|
||||
}, {
|
||||
"path": "certification"
|
||||
}]
|
||||
}],
|
||||
"globalStyle": {
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTextStyle": "black"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -295,7 +295,7 @@
|
|||
// 查询实名信息
|
||||
let certifyInfoRes = await this.$request.getWorkerCertify();
|
||||
this.certifyInfo = certifyInfoRes.data;
|
||||
if (!this.bankCard || !this.bankCard.bankNum) {
|
||||
if ((!this.bankCard || !this.bankCard.bankNum) && this.curUserInfo.status != -1) {
|
||||
this.$refs.vertifyBankBind.showModal();
|
||||
return false;
|
||||
} else if (!this.certifyInfo || !this.certifyInfo.workerCertificationId) {
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
<view class="margin-top margin-lr-sm">
|
||||
<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-if="item.show">
|
||||
v-if="item.show || (item.showByStatus ? curUserInfo.status != -1 : false)">
|
||||
<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>{{item.name}}</view>
|
||||
|
|
@ -70,7 +70,8 @@
|
|||
name: '提现账户',
|
||||
icon: 'moneybag',
|
||||
pageUrl: '/pages/my/withdraw',
|
||||
show: true
|
||||
// show: true,
|
||||
showByStatus: true
|
||||
}, {
|
||||
name: '交易明细',
|
||||
icon: 'form',
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@
|
|||
},
|
||||
bindAccount() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/my/bank-account-bind'
|
||||
url: '/pages/my/b-account-bind'
|
||||
})
|
||||
},
|
||||
chooseImage(e) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue