From f8020e161c20e2326ed6b28f4f4c37560c249977 Mon Sep 17 00:00:00 2001 From: 123456 <17862666717> Date: Fri, 1 Jul 2022 10:32:00 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/plugins/point/icpointnucleicmonitoring.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/modules/plugins/point/icpointnucleicmonitoring.vue b/src/views/modules/plugins/point/icpointnucleicmonitoring.vue index e8425192..00baac8e 100644 --- a/src/views/modules/plugins/point/icpointnucleicmonitoring.vue +++ b/src/views/modules/plugins/point/icpointnucleicmonitoring.vue @@ -238,7 +238,7 @@ import mixinViewModule from "@/mixins/view-module"; import AddOrUpdate from "./icpointnucleicmonitoring-add-or-update"; import icpointNoice from "./icpointNoice"; -import { requestPost } from "@/js/dai/request"; +import { requestPost , requestGet} from "@/js/dai/request"; export default { mixins: [mixinViewModule], data() { @@ -265,6 +265,7 @@ export default { icpointNoice, }, created() { + this.loadTable() this.noticeFun(); this.getFormInfo(); }, From 7d4b575064ba5b92b1dbe018c952bd1740d19b78 Mon Sep 17 00:00:00 2001 From: 123456 <17862666717> Date: Fri, 1 Jul 2022 10:39:00 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E4=BA=8B=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/plugins/point/icpointnucleicmonitoring.vue | 9 +++++---- .../modules/plugins/point/icpointvaccinesinoculation.vue | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/views/modules/plugins/point/icpointnucleicmonitoring.vue b/src/views/modules/plugins/point/icpointnucleicmonitoring.vue index 00baac8e..b4967f8c 100644 --- a/src/views/modules/plugins/point/icpointnucleicmonitoring.vue +++ b/src/views/modules/plugins/point/icpointnucleicmonitoring.vue @@ -4,7 +4,7 @@ {{ $t("query") }} @@ -208,7 +208,7 @@ > @@ -276,6 +276,7 @@ export default { let params = { limit: this.pageSize, page: this.pageNo, + ...this.dataForm }; const { data, code, msg } = await requestGet(url, params); @@ -320,7 +321,7 @@ export default { type: "success", message: "删除成功", }); - this.getDataList(); + this.loadTable(); } else { this.$message.error(msg); } diff --git a/src/views/modules/plugins/point/icpointvaccinesinoculation.vue b/src/views/modules/plugins/point/icpointvaccinesinoculation.vue index 1bb5ea05..a2103249 100644 --- a/src/views/modules/plugins/point/icpointvaccinesinoculation.vue +++ b/src/views/modules/plugins/point/icpointvaccinesinoculation.vue @@ -4,7 +4,7 @@ {{ $t("query") }} @@ -220,7 +220,7 @@ > @@ -285,6 +285,7 @@ export default { let params = { limit: this.pageSize, page: this.pageNo, + ...this.dataForm }; const { data, code, msg } = await requestGet(url, params); @@ -329,7 +330,7 @@ export default { type: "success", message: "删除成功", }); - this.getDataList(); + this.loadTable(); } else { this.$message.error(msg); }