| @@ -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){ | ||||