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