From 237c23bb70fa37691018086bc89fc8acf6d7b7ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=BE=E5=90=8C=E5=AD=A6?= Date: Mon, 8 Sep 2025 16:23:19 +0800 Subject: [PATCH] =?UTF-8?q?UPDATE:=20=E5=AE=8C=E5=96=84=E6=A3=80=E4=BF=AE?= =?UTF-8?q?=E8=AE=A1=E5=88=92=E9=A1=B9=E7=9B=AE=E8=B4=9F=E8=B4=A3=E4=BA=BA?= =?UTF-8?q?=E5=92=8C=E9=A1=B9=E7=9B=AE=E6=88=90=E5=91=98=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/api/plan/plan.ts | 5 +++++ .../views/plan/planList/components/devSelect.vue | 5 +++++ .../views/plan/planList/components/planPopup.vue | 16 ++++++++++++++++ 3 files changed, 26 insertions(+) diff --git a/frontend/src/api/plan/plan.ts b/frontend/src/api/plan/plan.ts index d22a01a..a232ae7 100644 --- a/frontend/src/api/plan/plan.ts +++ b/frontend/src/api/plan/plan.ts @@ -154,4 +154,9 @@ export const mergeSubPlanCheckData = (params: Plan.ResPlan) => { //根据误差体系id获取测试项 export const getPqErrSysTestItemList = (params: {errorSysId : string}) => { return http.get(`/pqErrSys/getTestItems?id=${params.errorSysId}`) +} + +// 获取计划项目成员 +export const getMemberList = (params: {id : string}) => { + return http.get(`/adPlan/getMemberList?planId=${params.id}`) } \ No newline at end of file diff --git a/frontend/src/views/plan/planList/components/devSelect.vue b/frontend/src/views/plan/planList/components/devSelect.vue index 80d8e3d..3b6f71c 100644 --- a/frontend/src/views/plan/planList/components/devSelect.vue +++ b/frontend/src/views/plan/planList/components/devSelect.vue @@ -54,6 +54,7 @@ :data="leftTreeData" :default-checked-keys="defaultCheckedKeys" :default-expanded-keys="defaultCheckedKeys" + :default-expand-all="props.expandAll" :filter-node-method="filterNode" node-key="id" style="padding-left: 0; padding-right: 20px" @@ -293,6 +294,10 @@ const props = defineProps({ disabled: { type: Boolean, default: false + }, + expandAll: { + type: Boolean, + default: false } }) const leftTreeRef = ref() diff --git a/frontend/src/views/plan/planList/components/planPopup.vue b/frontend/src/views/plan/planList/components/planPopup.vue index c779e86..c55911d 100644 --- a/frontend/src/views/plan/planList/components/planPopup.vue +++ b/frontend/src/views/plan/planList/components/planPopup.vue @@ -232,6 +232,7 @@ :data="devData" :height="selectByMode ? 325 : 220" :disabled="allDisabled" + :expand-all="planType !== '0'" >