Merge branch 'v1.8' of github.com:metersphere/metersphere into v1.8
This commit is contained in:
commit
25d11cd5e6
|
@ -524,6 +524,9 @@ export default {
|
|||
});
|
||||
},
|
||||
autoCheckStatus() { // 检查执行结果,自动更新计划状态
|
||||
if (!this.planId) {
|
||||
return;
|
||||
}
|
||||
this.$post('/test/plan/autoCheck/' + this.planId, (response) => {
|
||||
});
|
||||
},
|
||||
|
|
|
@ -484,6 +484,9 @@ export default {
|
|||
getLabel(this, TEST_PLAN_FUNCTION_TEST_CASE);
|
||||
},
|
||||
autoCheckStatus() {
|
||||
if (!this.planId) {
|
||||
return;
|
||||
}
|
||||
this.$post('/test/plan/autoCheck/' + this.planId, (response) => {
|
||||
});
|
||||
},
|
||||
|
|
|
@ -251,6 +251,9 @@ export default {
|
|||
|
||||
},
|
||||
autoCheckStatus() {
|
||||
if (!this.planId) {
|
||||
return;
|
||||
}
|
||||
this.$post('/test/plan/autoCheck/' + this.planId, (response) => {
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue