diff --git a/frontend/src/api/plan/interface/index.ts b/frontend/src/api/plan/interface/index.ts index 7721484..0460877 100644 --- a/frontend/src/api/plan/interface/index.ts +++ b/frontend/src/api/plan/interface/index.ts @@ -37,7 +37,7 @@ export namespace Plan { testConfig?: PlanTestConfig; importFlag?: number; // 导入标识,0-否,1-是 leader?: string; // 负责人 - memberIds?: string[]; //成员 + memberIds?: string | string[]; //成员 members?: string; //成员字符串 } diff --git a/frontend/src/views/plan/planList/components/childrenPlan.vue b/frontend/src/views/plan/planList/components/childrenPlan.vue index 6485be2..6dfada1 100644 --- a/frontend/src/views/plan/planList/components/childrenPlan.vue +++ b/frontend/src/views/plan/planList/components/childrenPlan.vue @@ -305,7 +305,7 @@ const columns = reactive[]>([ prop: 'boundPlanName', label: '子计划', minWidth: 150, - + isShow: planFormContent.value?.importFlag === 0, render: scope => { console.log('boundPlanName', isTabPlanFather.value) const value = scope.row.boundPlanName diff --git a/frontend/src/views/plan/planList/components/devSelect.vue b/frontend/src/views/plan/planList/components/devSelect.vue index 3b6f71c..e08edd3 100644 --- a/frontend/src/views/plan/planList/components/devSelect.vue +++ b/frontend/src/views/plan/planList/components/devSelect.vue @@ -122,7 +122,7 @@ -