fix(性能测试): 修复列表点击测试报错后不能取消loading的问题

--bug=1019727 --user=刘瑞斌 【性能测试】使用错误的Job模板执行性能测试不能进入失败状态 https://www.tapd.cn/55049933/s/1300578
This commit is contained in:
CaptainB 2022-11-22 11:55:45 +08:00 committed by 刘瑞斌
parent e9d88045d3
commit e2a8f99301
1 changed files with 1 additions and 3 deletions

View File

@ -297,10 +297,8 @@ export default {
});
},
handleRun(test) {
this.tableLoading = true
runTest(test)
this.tableLoading = runTest(test)
.then(response => {
this.tableLoading = false;
let reportId = response.data;
this.$router.push({path: '/performance/report/view/' + reportId});
});