parent
cc5bdc9d1a
commit
9200b2660f
|
@ -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;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue