From 38ef329ba097389511fb762fa9dcb1b90bd2a26c Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Mon, 21 Sep 2020 11:37:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=85=B3=E8=81=94?= =?UTF-8?q?=E7=94=A8=E4=BE=8B=E9=A1=B5=E9=9D=A2=E7=AD=9B=E9=80=89=E5=A4=B1?= =?UTF-8?q?=E8=B4=A5=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/components/track/home/components/ReviewList.vue | 2 +- .../track/plan/view/comonents/TestCaseRelevance.vue | 2 +- .../track/review/view/components/TestReviewRelevance.vue | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/business/components/track/home/components/ReviewList.vue b/frontend/src/business/components/track/home/components/ReviewList.vue index 7ebda37fdc..876d19cd13 100644 --- a/frontend/src/business/components/track/home/components/ReviewList.vue +++ b/frontend/src/business/components/track/home/components/ReviewList.vue @@ -5,7 +5,7 @@ + content="待我评审" @click="searchMyCreator"/> 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 41568160f6..3401ffacf7 100644 --- a/frontend/src/business/components/track/plan/view/comonents/TestCaseRelevance.vue +++ b/frontend/src/business/components/track/plan/view/comonents/TestCaseRelevance.vue @@ -154,6 +154,7 @@ }, methods: { openTestCaseRelevanceDialog() { + this.getProject(); this.initData(); this.dialogFormVisible = true; }, @@ -219,7 +220,6 @@ initData() { this.getCaseNames(); this.getAllNodeTreeByPlanId(); - this.getProject(); }, refresh() { this.close(); diff --git a/frontend/src/business/components/track/review/view/components/TestReviewRelevance.vue b/frontend/src/business/components/track/review/view/components/TestReviewRelevance.vue index 2ddf8c0157..0500c7d16d 100644 --- a/frontend/src/business/components/track/review/view/components/TestReviewRelevance.vue +++ b/frontend/src/business/components/track/review/view/components/TestReviewRelevance.vue @@ -154,6 +154,7 @@ export default { }, methods: { openTestReviewRelevanceDialog() { + this.getProject(); this.initData(); this.dialogFormVisible = true; }, @@ -217,7 +218,6 @@ export default { initData() { this.getReviews(); this.getAllNodeTreeByPlanId(); - this.getProject(); }, refresh() { this.close(); @@ -225,7 +225,7 @@ export default { getAllNodeTreeByPlanId() { if (this.reviewId) { let param = { - testPlanId: this.reviewId, + reviewId: this.reviewId, projectId: this.projectId }; this.result = this.$post("/case/node/list/all/review", param , response => {