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