From 86d1d72ad31acd5661bcc59038fabaaceb7cff06 Mon Sep 17 00:00:00 2001 From: GAOANG <1140589958@qq.com> Date: Fri, 18 Jul 2025 15:13:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=BB=84=E7=BB=87=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E5=8E=BB=E9=99=A4=E6=97=A0=E7=94=A8=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Form/src/components/SelectDepartmentTreeV2.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/Form/src/components/SelectDepartmentTreeV2.vue b/src/components/Form/src/components/SelectDepartmentTreeV2.vue index b3f18f5..5c0879a 100644 --- a/src/components/Form/src/components/SelectDepartmentTreeV2.vue +++ b/src/components/Form/src/components/SelectDepartmentTreeV2.vue @@ -65,7 +65,6 @@ const params = ref({ id: '', code: '', name: '', - isQueryIdPath: false, parentNode: false, excludeDeptTypes: props.justCompany ? '0' : '', ids: props.defaultDepts @@ -111,8 +110,6 @@ async function getList(type = 'default') { if (props.parentNode) { params.value.id = props.parentNode } - params.value.isQueryIdPath = !(type == 'default') - params.value.isQueryChildren = type == 'default' let list = resetTreeList(await getQueryDeptTrees(params.value), type, true) treeData.value = list emit('query-completed');