diff --git a/src/components/ebiz/account/SelectBankBranch.vue b/src/components/ebiz/account/SelectBankBranch.vue index d95a97c89..b193f3fac 100644 --- a/src/components/ebiz/account/SelectBankBranch.vue +++ b/src/components/ebiz/account/SelectBankBranch.vue @@ -54,7 +54,7 @@ export default { inputvalue(val) { if (val) { this.bankList = this.bankList.filter(item => { - return item.bankName.indexOf(val) != -1 + return item.bankBranchName.indexOf(val) != -1 }) } else { this.bankList = this.bankList1 diff --git a/src/views/ebiz/allowance/Detail.vue b/src/views/ebiz/allowance/Detail.vue index 5d5f0e436..9de323924 100644 --- a/src/views/ebiz/allowance/Detail.vue +++ b/src/views/ebiz/allowance/Detail.vue @@ -48,6 +48,7 @@ + diff --git a/src/views/ebiz/allowance/application/List.vue b/src/views/ebiz/allowance/application/List.vue index 662430445..76a3a94a0 100644 --- a/src/views/ebiz/allowance/application/List.vue +++ b/src/views/ebiz/allowance/application/List.vue @@ -375,16 +375,16 @@ export default { //不符合条件时,阻断toast提示,触发按钮包括“津贴申请列表-未审批”【编辑】、“津贴申请列表-审批通过”【再次申请】、【点击申请】 async isConditionsFunc(type, order) { // type 0点击申请 1编辑 2再次申请 - const res = await allowanceCheck({}) - if (res.result == '1') { - Toast({ - className: 'textLeft', - duration: 3000, // 持续展示 toast - forbidClick: true, - message: res.resultMessage - }) - return - } + // const res = await allowanceCheck({}) + // if (res.result == '1') { + // Toast({ + // className: 'textLeft', + // duration: 3000, // 持续展示 toast + // forbidClick: true, + // message: res.resultMessage + // }) + // return + // } if (type == 0) { this.applicationFunc()