Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
2024-04-23 16:11:02 +08:00
commit 26c153ea14
2 changed files with 6 additions and 1 deletions

View File

@ -122,7 +122,7 @@
{{ agencyList.nodeType == "DEPARIMENT" ? "科室" : "" }} {{ agencyList.nodeType == "DEPARIMENT" ? "科室" : "" }}
{{ agencyList.nodeType == "PHARNAGY" ? "药店" : "" }} --> {{ agencyList.nodeType == "PHARNAGY" ? "药店" : "" }} -->
{{ agencyList.nodeType == "CANPUS" ? "院区" : "" }} {{ agencyList.nodeType == "CAMPUS" ? "院区" : "" }}
{{ {{
agencyList.nodeType == "HOSPITAL" ? "医院" : "" agencyList.nodeType == "HOSPITAL" ? "医院" : ""
}}</el-descriptions-item }}</el-descriptions-item

View File

@ -725,12 +725,15 @@ export default {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
this.getList(); this.getList();
this.infolists()
}); });
} else { } else {
addDepartmentDisease(this.form).then((response) => { addDepartmentDisease(this.form).then((response) => {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;
this.getList(); this.getList();
this.infolists()
}); });
} }
} }
@ -746,6 +749,8 @@ export default {
}) })
.then(() => { .then(() => {
this.getList(); this.getList();
this.infolists()
this.$modal.msgSuccess("删除成功"); this.$modal.msgSuccess("删除成功");
}) })
.catch(() => {}); .catch(() => {});