浏览代码

银农app

wulanhaote
yujk 3 年前
父节点
当前提交
9963100b70
共有 1 个文件被更改,包括 17 次插入1 次删除
  1. +17
    -1
      src/views/yinnong/bankAgriculture/paymentApproval/approvalAdd.vue

+ 17
- 1
src/views/yinnong/bankAgriculture/paymentApproval/approvalAdd.vue 查看文件

@@ -1048,10 +1048,26 @@
this.form.accountType = "1" this.form.accountType = "1"
this.form.isPeers = null this.form.isPeers = null
this.accountTypeChange(); this.accountTypeChange();
}else if(obj.bankType==2||obj.bankType==4){
}else if(obj.bankType==2||obj.bankType==3||obj.bankType==4){
this.form.accountType = null this.form.accountType = null
this.form.isPeers = "Y" this.form.isPeers = "Y"
this.accountTypeChange1(); this.accountTypeChange1();
}else{
this.payeeList = [];
this.chargeItme = [];
this.queryParams.isPeers = null
this.queryParams.accountType = ""
this.queryParams.bankType = ""
this.queryParams.status = "0"
listPayee(this.queryParams).then((response) => {
response.rows.map((res,index) => {
if(res.payeeType==1||res.payeeType==2){
response.rows[index].text = res.payee;
response.rows[index].value = res.id;
this.payeeList.push(res)
}
})
});
} }
}else{ }else{
if(obj.payerFrom==1){ if(obj.payerFrom==1){


正在加载...
取消
保存