fix(测试跟踪): 修复测试计划批量执行case未提示选择资源池的缺陷

This commit is contained in:
wxg0103 2023-05-23 15:17:10 +08:00 committed by fit2-zhao
parent 86a27d6701
commit 821ac2e436
1 changed files with 5 additions and 0 deletions

View File

@ -191,6 +191,11 @@ export default {
this.$emit('close');
},
handleRunBatch() {
if (this.runConfig.resourcePoolId == null) {
this.$warning(
this.$t("workspace.env_group.please_select_run_within_resource_pool"));
return;
}
this.$emit("handleRunBatch", this.runConfig);
this.close();
},