From b88ad891463c3177f943ec5d7013ba3eedfbbe66 Mon Sep 17 00:00:00 2001 From: huabuweixin <148689675+huabuweixin@users.noreply.github.com> Date: Tue, 20 Jan 2026 18:02:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20107=20=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E7=AE=A1=E7=90=86-=E3=80=8B=E5=9F=BA=E7=A1=80=E6=95=B0?= =?UTF-8?q?=E6=8D=AE-=E3=80=8B=E7=A7=91=E5=AE=A4=E7=AE=A1=E7=90=86?= =?UTF-8?q?=EF=BC=9A=E7=A7=91=E5=AE=A4=E5=88=86=E7=B1=BB=E7=AD=9B=E9=80=89?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E6=97=A0=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/basicmanage/organization/index.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openhis-ui-vue3/src/views/basicmanage/organization/index.vue b/openhis-ui-vue3/src/views/basicmanage/organization/index.vue index f4ecc537..420ef23c 100644 --- a/openhis-ui-vue3/src/views/basicmanage/organization/index.vue +++ b/openhis-ui-vue3/src/views/basicmanage/organization/index.vue @@ -386,6 +386,12 @@ function parseClassEnumValues(value) { /** 搜索按钮操作 */ function handleQuery() { queryParams.value.pageNo = 1; + if (Array.isArray(queryParams.value.classEnum)) { + queryParams.value.classEnum = + queryParams.value.classEnum.length > 0 + ? queryParams.value.classEnum.join(',') + : undefined; + } getPageList(); }