From 53f5f88405e10e369cf7f85cc2a659bbf19e4c44 Mon Sep 17 00:00:00 2001 From: MO <448233645@qq.com> Date: Mon, 6 Nov 2023 17:20:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A4=E6=AC=BE=E5=BC=B9=E7=AA=97=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/accounting/bankSlip/index.vue | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/views/accounting/bankSlip/index.vue b/src/views/accounting/bankSlip/index.vue index 6c72f3be..80200342 100644 --- a/src/views/accounting/bankSlip/index.vue +++ b/src/views/accounting/bankSlip/index.vue @@ -605,7 +605,7 @@ - + @@ -638,8 +638,8 @@ @@ -730,6 +730,7 @@ export default { open: false, open1: false, open2: false, + open3: false, // 查询参数 queryParams: { pageNo: 1, @@ -886,6 +887,11 @@ export default { this.open2 = false; this.reset(); }, + /** 取消按钮 */ + cancel3() { + this.open3 = false; + this.reset(); + }, /** 表单重置 */ reset() { this.form = { @@ -989,13 +995,13 @@ export default { this.reset(); this.form1.id = val.id; this.form1.flowCode = val.flowCode; - this.open2 = true; + this.open3 = true; }, handleSelectUser(val) { this.form1.staffId = val.id; this.form1.staffName = val.username; }, - submitForm2() { + submitForm3() { this.form1.subscriptionStatus = 1; this.$refs["form1"].validate((valid) => { if (!valid) { @@ -1003,7 +1009,7 @@ export default { } updateBankSlip(this.form1).then((response) => { this.$modal.msgSuccess("认款成功"); - this.open2 = false; + this.open3 = false; this.getList(); }); });