fix(UI自动化): 修复关联UI用例切换项目时环境没有更新的问题
This commit is contained in:
parent
6e016a36ee
commit
2cbcb79f14
|
@ -175,6 +175,9 @@ export default {
|
|||
},
|
||||
radioChange(val) {
|
||||
this.$emit("update:environmentType", val);
|
||||
},
|
||||
close(){
|
||||
this.visible = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -281,6 +281,9 @@ export default {
|
|||
});
|
||||
});
|
||||
},
|
||||
closeEnv(){
|
||||
this.$refs.envPopover.close();
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -87,6 +87,8 @@ export default {
|
|||
},
|
||||
setProject(projectId) {
|
||||
this.projectId = projectId;
|
||||
this.$refs.apiScenarioList.closeEnv();
|
||||
this.$refs.apiScenarioList.initProjectIds();
|
||||
},
|
||||
|
||||
refresh(data) {
|
||||
|
|
Loading…
Reference in New Issue