diff --git a/frontend/src/business/components/api/automation/scenario/testplan/TestPlanList.vue b/frontend/src/business/components/api/automation/scenario/testplan/TestPlanList.vue index e40e4411e1..c677e2b95c 100644 --- a/frontend/src/business/components/api/automation/scenario/testplan/TestPlanList.vue +++ b/frontend/src/business/components/api/automation/scenario/testplan/TestPlanList.vue @@ -230,9 +230,7 @@ let path = "/test/plan/project"; this.$post(path, {planId: this.tableData[i].id}, res => { let arr = res.data; - let projectName = arr.map(data => data.name).join("、"); let projectIds = arr.map(data => data.id); - this.$set(this.tableData[i], "projectName", projectName); this.$set(this.tableData[i], "projectIds", projectIds); }) }