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

限制证件更新只有渤海银行有

parent 9fabb075
......@@ -22,7 +22,7 @@
<view class="right">
<van-popover v-model="showPopover" trigger="click" placement="bottom-end">
<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}}
</view>
<template #reference>
......@@ -1314,6 +1314,9 @@
}
bankInfo = res2.results;
this_.typeCode = res2.results.typeCode;
if(this_.typeCode != 'BOHAI'){
this_.actions = this_.actions.filter(x => x.text != '证件更新' );
}
bankInfo.sessionid = sessionID;
this_.queryBankInfo(); //查余额
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