parent
cc5bdc9d1a
commit
9200b2660f
|
@ -484,13 +484,19 @@ export default {
|
|||
mode: "serial"
|
||||
};
|
||||
if (this.planId) {
|
||||
this.loading = true;
|
||||
testPlanScenarioCaseRun(param)
|
||||
.then((response) => {
|
||||
setTimeout(() => {
|
||||
this.loading = false;
|
||||
this.runVisible = true;
|
||||
if (response.data && response.data.length > 0) {
|
||||
this.reportId = response.data[0].reportId;
|
||||
}
|
||||
this.search();
|
||||
}, 2000)
|
||||
}).catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue