fix(测试计划、测试用例): 关注后不刷新页面

--user=郭雨琦 关注后不刷新页面
This commit is contained in:
guoyuqi 2021-11-23 20:30:39 +08:00 committed by 刘瑞斌
parent 721815e8d6
commit 38b4b833a0
2 changed files with 0 additions and 4 deletions

View File

@ -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
}

View File

@ -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();
});
}
}