From bb8d41c879872dd9156b80a5cda9647c30c456fe Mon Sep 17 00:00:00 2001 From: binbin_pan Date: Wed, 10 Apr 2024 14:43:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=80=E6=9D=A5=E5=8D=95=E4=BD=8D=E7=AE=A1?= =?UTF-8?q?=E7=90=86-=E4=B8=8D=E8=83=BD=E5=AF=BC=E5=87=BA=E9=80=89?= =?UTF-8?q?=E4=B8=AD=E6=95=B0=E6=8D=AE=20=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-ui/src/views/base/comeAndGo/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 },