From b7850e5b8a8b47348f21d503eecc7293113ff4ea Mon Sep 17 00:00:00 2001 From: chenqi Date: Thu, 12 Mar 2026 13:47:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=80=97=E6=9D=90?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE=E6=97=B6?= =?UTF-8?q?=E5=9C=B0=E7=82=B9=E5=AD=97=E6=AE=B5=E7=BC=BA=E5=B0=91=E8=80=97?= =?UTF-8?q?=E6=9D=90=E5=BA=93=E6=95=B0=E6=8D=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 问题:formList参数只包含'11,16'(药库和药房),缺少'17'(耗材库) - 解决:将formList参数从'11,16'修改为'11,16,17' - 影响:器材目录新增对话框的地点下拉选项现在可以显示耗材库数据 Closes #174 --- .../src/views/catalog/device/components/deviceDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhis-ui-vue3/src/views/catalog/device/components/deviceDialog.vue b/openhis-ui-vue3/src/views/catalog/device/components/deviceDialog.vue index 29482204..ef893ea2 100644 --- a/openhis-ui-vue3/src/views/catalog/device/components/deviceDialog.vue +++ b/openhis-ui-vue3/src/views/catalog/device/components/deviceDialog.vue @@ -467,7 +467,7 @@ function getDeptTree() { /** 查询地点下拉树结构 */ function getLocationTree() { - locationTreeSelect({ formList: '11,16' }).then((response) => { + locationTreeSelect({ formList: '11,16,17' }).then((response) => { locationOptions.value = response.data.records; }); }