fix(接口测试): 修复编辑环境信息未更新的缺陷
--bug=1031139 --user=王孝刚 【接口测试】case-运行环境配置修改通用配置参数-返回test运行环境配置查看-未更新 https://www.tapd.cn/55049933/s/1423466
This commit is contained in:
parent
4059568c67
commit
f6c4c989cc
|
@ -190,14 +190,15 @@ export default {
|
||||||
this.$refs.environmentItems.itemSelected(this.environments.length - 1, newEnvironment);
|
this.$refs.environmentItems.itemSelected(this.environments.length - 1, newEnvironment);
|
||||||
},
|
},
|
||||||
environmentSelected(environment) {
|
environmentSelected(environment) {
|
||||||
this.$refs.environmentEdit.clearValidate();
|
if (this.$refs.environmentEdit) {
|
||||||
|
this.$refs.environmentEdit.clearValidate();
|
||||||
|
}
|
||||||
this.getEnvironment(environment);
|
this.getEnvironment(environment);
|
||||||
},
|
},
|
||||||
getEnvironments() {
|
getEnvironments() {
|
||||||
if (this.projectId) {
|
if (this.projectId) {
|
||||||
this.result = getEnvironmentByProjectId(this.projectId).then(response => {
|
this.result = getEnvironmentByProjectId(this.projectId).then(response => {
|
||||||
this.environments = response.data;
|
this.environments = response.data;
|
||||||
this.currentEnvironment.id = null;
|
|
||||||
if (this.environments.length > 0) {
|
if (this.environments.length > 0) {
|
||||||
if (this.selectEnvironmentId) {
|
if (this.selectEnvironmentId) {
|
||||||
const index = this.environments.findIndex(e => e.id === this.selectEnvironmentId);
|
const index = this.environments.findIndex(e => e.id === this.selectEnvironmentId);
|
||||||
|
@ -228,6 +229,7 @@ export default {
|
||||||
},
|
},
|
||||||
save() {
|
save() {
|
||||||
this.$refs.environmentEdit.save();
|
this.$refs.environmentEdit.save();
|
||||||
|
this.currentEnvironment = null;
|
||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
this.$emit('close');
|
this.$emit('close');
|
||||||
|
@ -235,6 +237,7 @@ export default {
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
}
|
}
|
||||||
this.$refs.environmentEdit.clearValidate();
|
this.$refs.environmentEdit.clearValidate();
|
||||||
|
this.currentEnvironment = null;
|
||||||
removeGoBackListener(this.close);
|
removeGoBackListener(this.close);
|
||||||
this.isCopy = false;
|
this.isCopy = false;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue