From 38b4b833a0cb64603b1a403a16ea8d99a6bd4597 Mon Sep 17 00:00:00 2001 From: guoyuqi Date: Tue, 23 Nov 2021 20:30:39 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92?= =?UTF-8?q?=E3=80=81=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B):=20=E5=85=B3?= =?UTF-8?q?=E6=B3=A8=E5=90=8E=E4=B8=8D=E5=88=B7=E6=96=B0=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --user=郭雨琦 关注后不刷新页面 --- .../business/components/track/plan/components/TestPlanList.vue | 2 -- .../components/track/review/components/TestCaseReviewList.vue | 2 -- 2 files changed, 4 deletions(-) diff --git a/frontend/src/business/components/track/plan/components/TestPlanList.vue b/frontend/src/business/components/track/plan/components/TestPlanList.vue index 5583dfe06f..640f5f0c87 100644 --- a/frontend/src/business/components/track/plan/components/TestPlanList.vue +++ b/frontend/src/business/components/track/plan/components/TestPlanList.vue @@ -569,7 +569,6 @@ export default { } this.$post('/test/plan/edit/follows/' + row.id, row.follows,() => { this.$success(this.$t('commons.cancel_follow_success')); - this.initTableData(); }); return } @@ -581,7 +580,6 @@ export default { row.follows.push(this.currentUser().id); this.$post('/test/plan/edit/follows/' + row.id, row.follows,() => { this.$success(this.$t('commons.follow_success')); - this.initTableData(); }); return } diff --git a/frontend/src/business/components/track/review/components/TestCaseReviewList.vue b/frontend/src/business/components/track/review/components/TestCaseReviewList.vue index 0de2fc36d5..f2df7e04b6 100644 --- a/frontend/src/business/components/track/review/components/TestCaseReviewList.vue +++ b/frontend/src/business/components/track/review/components/TestCaseReviewList.vue @@ -319,7 +319,6 @@ export default { param.followIds = row.followIds this.$post('/test/case/review/edit/follows', param,() => { this.$success(this.$t('commons.cancel_follow_success')); - this.initTableData(); }); return } @@ -332,7 +331,6 @@ export default { param.followIds = row.followIds this.$post('/test/case/review/edit/follows', param,() => { this.$success(this.$t('commons.follow_success')); - this.initTableData(); }); } }