只有待审核可操作修改

This commit is contained in:
wuteng 2025-09-19 13:03:32 +08:00
parent 37ea1c30d5
commit 9d26bff286

View File

@ -200,7 +200,7 @@ export default {
this.queryParams = this.addDateRange(this.queryParams, this.dateTimeRange, "createTime"); this.queryParams = this.addDateRange(this.queryParams, this.dateTimeRange, "createTime");
} }
return this.queryParams; return this.queryParams;
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
@ -219,7 +219,11 @@ export default {
this.selectionList = selection; this.selectionList = selection;
this.single = selection.length !== 1 this.single = selection.length !== 1
this.multiple = !selection.length this.multiple = !selection.length
this.selectBlCenterConfirmed = selection[0].blCenterConfirmed; if (selection.length) {
this.selectBlCenterConfirmed = selection[0].blCenterConfirmed;
} else {
this.selectBlCenterConfirmed = null;
}
}, },
// 排序 查询字段是表格中字段名字 动态取值排序顺序 // 排序 查询字段是表格中字段名字 动态取值排序顺序
handleSortChange(column) { handleSortChange(column) {