This commit is contained in:
xiaozhiyong
2023-04-04 15:28:57 +08:00
parent 03bc343e78
commit d7a96aa14f

View File

@@ -333,6 +333,10 @@ export default {
this.$refs["form"].validate((valid) => {
if (valid) {
let params = { transactionType: "RECHARGE", ...this.form };
if (this.form.companyBankCardArr.length) {
let index = this.form.companyBankCardArr.length - 1;
params["companyBankCardId"] = this.form.companyBankCardArr[index];
}
this.judgeInterface(params).then((res) => {
this.$message.success(res.msg);
this.closeWindow();