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 => {