Browse Source

核酸检测点、疫苗接种点 PC 管理 优化

master
wanggongfeng 3 years ago
parent
commit
817cbd0200
  1. 2
      src/views/modules/plugins/point/icpointnucleicmonitoring-add-or-update.vue
  2. 2
      src/views/modules/plugins/point/icpointvaccinesinoculation-add-or-update.vue

2
src/views/modules/plugins/point/icpointnucleicmonitoring-add-or-update.vue

@ -398,7 +398,7 @@ export default {
)
.then(({ data: res }) => {
if (res.code !== 0) {
return this.$message.error(res.internalMsg);
return this.$message.error(res.internalMsg ? res.msg : res.internalMsg);
}
this.$message({
message: this.$t("prompt.success"),

2
src/views/modules/plugins/point/icpointvaccinesinoculation-add-or-update.vue

@ -509,7 +509,7 @@ export default {
)
.then(({ data: res }) => {
if (res.code !== 0) {
return this.$message.error(res.internalMsg);
return this.$message.error(res.internalMsg ? res.msg : res.internalMsg);
}
this.$message({
message: this.$t("prompt.success"),

Loading…
Cancel
Save