From 9d26bff28680396bd221edac2e539ef3b4d7ec79 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Fri, 19 Sep 2025 13:03:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AA=E6=9C=89=E5=BE=85=E5=AE=A1=E6=A0=B8?= =?UTF-8?q?=E5=8F=AF=E6=93=8D=E4=BD=9C=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../panel/CancelAccountApplicationListPanel.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue index 89f23f60..55cde50d 100644 --- a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue +++ b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue @@ -200,7 +200,7 @@ export default { this.queryParams = this.addDateRange(this.queryParams, this.dateTimeRange, "createTime"); } return this.queryParams; - }, + }, /** 搜索按钮操作 */ handleQuery() { @@ -219,7 +219,11 @@ export default { this.selectionList = selection; this.single = selection.length !== 1 this.multiple = !selection.length - this.selectBlCenterConfirmed = selection[0].blCenterConfirmed; + if (selection.length) { + this.selectBlCenterConfirmed = selection[0].blCenterConfirmed; + } else { + this.selectBlCenterConfirmed = null; + } }, // 排序 查询字段是表格中字段名字 动态取值排序顺序 handleSortChange(column) {