refactor(接口测试): 优化操作,当场景步骤只有一个时隐藏批量操作按钮
--bug=1016630 --user=赵勇 【接口测试】场景步骤批量操作,只剩一个步骤的时候,批量操作框没隐藏 https://www.tapd.cn/55049933/s/1243554
This commit is contained in:
parent
caf7c35bae
commit
fe24f44e64
|
@ -2127,7 +2127,11 @@ export default {
|
|||
this.recursionDelete(item, this.scenarioDefinition);
|
||||
});
|
||||
this.sort();
|
||||
this.forceRerender();
|
||||
if (this.scenarioDefinition.length <= 1) {
|
||||
this.cancelBatchProcessing();
|
||||
} else {
|
||||
this.forceRerender();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue