perf: endpoint弹框样式调整及字段校验

1.endpoint弹框,校验未完成
2.module弹框bug修复
This commit is contained in:
chenjinsong
2019-12-31 19:02:58 +08:00
parent 65a2e31304
commit 2d0132e8c7
8 changed files with 317 additions and 298 deletions

View File

@@ -438,7 +438,10 @@
computed: {
currentProjectChange() {
return this.$store.state.currentProject;
}
},
moduleListReloadWatch() {
return this.$store.state.moduleListChange;
},
},
watch: {
currentProjectChange(n, o) {
@@ -457,6 +460,9 @@
this.endpointTableData = [];
this.metricsTableData = [];
}
},
moduleListReloadWatch(n, o) {
this.getModuleList(this.currentProject.id);
}
}
}