Skip to content

Commit

Permalink
fix(测试计划、测试用例): 关注后不刷新页面
Browse files Browse the repository at this point in the history
--user=郭雨琦 关注后不刷新页面
  • Loading branch information
xiaomeinvG authored and liuruibin committed Nov 24, 2021
1 parent 721815e commit 38b4b83
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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();
});
}
}
Expand Down

0 comments on commit 38b4b83

Please sign in to comment.