feat(测试计划): 测试计划新增批量开启/关闭定时任务功能
This commit is contained in:
parent
9289719449
commit
3e89e84bd2
|
@ -458,7 +458,7 @@ export default {
|
||||||
if (this.stageOption.length > 0) {
|
if (this.stageOption.length > 0) {
|
||||||
this.stageFilters = this.stageOption;
|
this.stageFilters = this.stageOption;
|
||||||
this.stageFilters.forEach((stage) => {
|
this.stageFilters.forEach((stage) => {
|
||||||
if (stage.system != null && stage.system) {
|
if (stage.system !== null && stage.system) {
|
||||||
stage.text = this.$t(stage.text);
|
stage.text = this.$t(stage.text);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -561,7 +561,7 @@ export default {
|
||||||
let size = 0;
|
let size = 0;
|
||||||
let row = this.$refs.testPlanLitTable.selectRows.size;
|
let row = this.$refs.testPlanLitTable.selectRows.size;
|
||||||
this.$refs.testPlanLitTable.selectRows.forEach((item) => {
|
this.$refs.testPlanLitTable.selectRows.forEach((item) => {
|
||||||
if (item.scheduleStatus != null && item.scheduleStatus != 'NOTSET') {
|
if (item.scheduleStatus !== null && item.scheduleStatus !== 'NOTSET') {
|
||||||
param.push(item.scheduleId);
|
param.push(item.scheduleId);
|
||||||
size++;
|
size++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue