Commit df904460 authored by 袁玲利's avatar 袁玲利

Merge branch 'bohai_cert_update' into develop

parents 3f42c762 a700f6f8
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<view class="right"> <view class="right">
<van-popover v-model="showPopover" trigger="click" placement="bottom-end"> <van-popover v-model="showPopover" trigger="click" placement="bottom-end">
<view class="popoverItem" v-for="(item, index) in actions" @click="onSelect(item)" <view class="popoverItem" v-for="(item, index) in actions" @click="onSelect(item)"
:id="item.id ? item.id : '#item'+index"> :id="item.id ? item.id : '#item'+index" >
{{item.text}} {{item.text}}
</view> </view>
<template #reference> <template #reference>
...@@ -367,7 +367,11 @@ ...@@ -367,7 +367,11 @@
text: "账户明细" text: "账户明细"
}, { }, {
text: "常见问题" text: "常见问题"
}, { },
{
text: "证件更新"
},
{
text: "在线销户" text: "在线销户"
}], }],
popshow: false, popshow: false,
...@@ -474,6 +478,10 @@ ...@@ -474,6 +478,10 @@
jWeixin.miniProgram.redirectTo({ jWeixin.miniProgram.redirectTo({
url: `/pages/AssignCancelUserPhone/main` url: `/pages/AssignCancelUserPhone/main`
}); });
} else if (action.text == "证件更新") {
jWeixin.miniProgram.redirectTo({
url: `/pages_subpackB/pages/certificateBohaiUpdate/main`
});
} }
}, },
async beforeQuerySignStatus() { async beforeQuerySignStatus() {
...@@ -1306,6 +1314,9 @@ ...@@ -1306,6 +1314,9 @@
} }
bankInfo = res2.results; bankInfo = res2.results;
this_.typeCode = res2.results.typeCode; this_.typeCode = res2.results.typeCode;
if(this_.typeCode != 'BOHAI'){
this_.actions = this_.actions.filter(x => x.text != '证件更新' );
}
bankInfo.sessionid = sessionID; bankInfo.sessionid = sessionID;
this_.queryBankInfo(); //查余额 this_.queryBankInfo(); //查余额
this_.bankInfo_ = bankInfo; this_.bankInfo_ = bankInfo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment