diff --git a/sgzb-ui/src/views/base/comeAndGo/index.vue b/sgzb-ui/src/views/base/comeAndGo/index.vue index a3c62849..49ab431a 100644 --- a/sgzb-ui/src/views/base/comeAndGo/index.vue +++ b/sgzb-ui/src/views/base/comeAndGo/index.vue @@ -253,7 +253,8 @@ export default { pageSize: 10, unitName: undefined, dictType: undefined, - status: undefined + status: undefined, + dataCondition: [] }, // 表单参数 form: {}, @@ -359,6 +360,7 @@ export default { // 多选框选中数据 handleSelectionChange(selection) { this.ids = selection.map(item => item.unitId) + this.queryParams.dataCondition = this.ids this.single = selection.length != 1 this.multiple = !selection.length },