fix(测试跟踪): 修复planId可能为空调用后台报错的问题
This commit is contained in:
parent
ba17d9f93d
commit
806772a339
|
@ -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) => {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -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) => {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -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) => {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue