Merge branch 'v1.8' of github.com:metersphere/metersphere into v1.8

This commit is contained in:
chenjianxing 2021-03-25 15:33:58 +08:00
commit 25d11cd5e6
3 changed files with 9 additions and 0 deletions

View File

@ -524,6 +524,9 @@ export default {
}); });
}, },
autoCheckStatus() { // autoCheckStatus() { //
if (!this.planId) {
return;
}
this.$post('/test/plan/autoCheck/' + this.planId, (response) => { this.$post('/test/plan/autoCheck/' + this.planId, (response) => {
}); });
}, },

View File

@ -484,6 +484,9 @@ export default {
getLabel(this, TEST_PLAN_FUNCTION_TEST_CASE); getLabel(this, TEST_PLAN_FUNCTION_TEST_CASE);
}, },
autoCheckStatus() { autoCheckStatus() {
if (!this.planId) {
return;
}
this.$post('/test/plan/autoCheck/' + this.planId, (response) => { this.$post('/test/plan/autoCheck/' + this.planId, (response) => {
}); });
}, },

View File

@ -251,6 +251,9 @@ export default {
}, },
autoCheckStatus() { autoCheckStatus() {
if (!this.planId) {
return;
}
this.$post('/test/plan/autoCheck/' + this.planId, (response) => { this.$post('/test/plan/autoCheck/' + this.planId, (response) => {
}); });
}, },