From bd577770a494326174b8424559949f82128277db Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Tue, 3 Nov 2020 17:23:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E5=85=B3=E8=81=94=E7=94=A8=E4=BE=8B=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E4=B8=8D=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/track/plan/view/comonents/TestCaseRelevance.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/business/components/track/plan/view/comonents/TestCaseRelevance.vue b/frontend/src/business/components/track/plan/view/comonents/TestCaseRelevance.vue index 387dd66c6f..5d979498d4 100644 --- a/frontend/src/business/components/track/plan/view/comonents/TestCaseRelevance.vue +++ b/frontend/src/business/components/track/plan/view/comonents/TestCaseRelevance.vue @@ -286,12 +286,13 @@ }, getProject() { if (this.planId) { - this.$post("/test/plan/project/", {planId: this.planId}, res => { + this.result = this.$post("/test/plan/project/", {planId: this.planId}, res => { let data = res.data; if (data) { this.projects = data; this.projectId = data[0].id; this.projectName = data[0].name; + this.search(); } }) }