fix(测试跟踪): 更正错误的拼写

更正错误的拼写
This commit is contained in:
song-tianyang 2022-10-24 11:54:52 +08:00 committed by 刘瑞斌
parent cc5bdc9d1a
commit 9200b2660f
1 changed files with 12 additions and 6 deletions

View File

@ -484,13 +484,19 @@ export default {
mode: "serial" mode: "serial"
}; };
if (this.planId) { if (this.planId) {
this.loading = true;
testPlanScenarioCaseRun(param) testPlanScenarioCaseRun(param)
.then((response) => { .then((response) => {
setTimeout(() => {
this.loading = false;
this.runVisible = true; this.runVisible = true;
if (response.data && response.data.length > 0) { if (response.data && response.data.length > 0) {
this.reportId = response.data[0].reportId; this.reportId = response.data[0].reportId;
} }
this.search(); this.search();
}, 2000)
}).catch(() => {
this.loading = false;
}); });
} }
}, },