From 464f01f2e572b2872f265fb5c1ba1d137c5bcb07 Mon Sep 17 00:00:00 2001 From: pengjun <158915633@qq.com> Date: Thu, 22 Aug 2024 16:21:38 +0800 Subject: [PATCH] seo --- .../doctorCheck/PatientRegisterList.vue | 2 +- src/components/follow/FollowList.vue | 32 ++----------------- src/components/follow/follow.vue | 2 +- src/views/charge/charge.vue | 2 +- src/views/customerOrg/patientLis.vue | 2 +- src/views/customerOrg/patientRegister.vue | 3 +- .../customerOrg/patientRegisterRecover.vue | 2 +- .../customerOrg/patientRegisterRefuse.vue | 2 +- src/views/customerOrg/patientRegisterSign.vue | 2 +- src/views/doctorCheck/doctorCheck.vue | 27 +++++++++------- 10 files changed, 26 insertions(+), 50 deletions(-) diff --git a/src/components/doctorCheck/PatientRegisterList.vue b/src/components/doctorCheck/PatientRegisterList.vue index a77f276..c2c903b 100644 --- a/src/components/doctorCheck/PatientRegisterList.vue +++ b/src/components/doctorCheck/PatientRegisterList.vue @@ -316,7 +316,7 @@ export default { //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/components/follow/FollowList.vue b/src/components/follow/FollowList.vue index 247e643..9f1e1f4 100644 --- a/src/components/follow/FollowList.vue +++ b/src/components/follow/FollowList.vue @@ -92,34 +92,6 @@ - - -
@@ -135,10 +107,10 @@ - + - + diff --git a/src/components/follow/follow.vue b/src/components/follow/follow.vue index 22b8c78..c4d22ee 100644 --- a/src/components/follow/follow.vue +++ b/src/components/follow/follow.vue @@ -138,7 +138,7 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/views/charge/charge.vue b/src/views/charge/charge.vue index 0861bfe..f8cdae7 100644 --- a/src/views/charge/charge.vue +++ b/src/views/charge/charge.vue @@ -1169,7 +1169,7 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/views/customerOrg/patientLis.vue b/src/views/customerOrg/patientLis.vue index edbc308..f6737cb 100644 --- a/src/views/customerOrg/patientLis.vue +++ b/src/views/customerOrg/patientLis.vue @@ -146,7 +146,7 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/views/customerOrg/patientRegister.vue b/src/views/customerOrg/patientRegister.vue index a9aa66a..2fbae48 100644 --- a/src/views/customerOrg/patientRegister.vue +++ b/src/views/customerOrg/patientRegister.vue @@ -149,7 +149,8 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + // getapi("/api/app/customerorggroup/getlistinfilter") + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/views/customerOrg/patientRegisterRecover.vue b/src/views/customerOrg/patientRegisterRecover.vue index 6d3b3b3..94256c3 100644 --- a/src/views/customerOrg/patientRegisterRecover.vue +++ b/src/views/customerOrg/patientRegisterRecover.vue @@ -160,7 +160,7 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/views/customerOrg/patientRegisterRefuse.vue b/src/views/customerOrg/patientRegisterRefuse.vue index 7fcd785..4ee43bb 100644 --- a/src/views/customerOrg/patientRegisterRefuse.vue +++ b/src/views/customerOrg/patientRegisterRefuse.vue @@ -147,7 +147,7 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/views/customerOrg/patientRegisterSign.vue b/src/views/customerOrg/patientRegisterSign.vue index c354f09..3b32b19 100644 --- a/src/views/customerOrg/patientRegisterSign.vue +++ b/src/views/customerOrg/patientRegisterSign.vue @@ -154,7 +154,7 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { if (res.code > -1) { this.dict.customerOrgGroupAll = res.data; } diff --git a/src/views/doctorCheck/doctorCheck.vue b/src/views/doctorCheck/doctorCheck.vue index 69c1a5c..f7b01ad 100644 --- a/src/views/doctorCheck/doctorCheck.vue +++ b/src/views/doctorCheck/doctorCheck.vue @@ -16,38 +16,40 @@
-
+
- - + + - + :disabled="LocalConfig.doctorCheck.isQueue != 'Y'"> +
-
+
+ :registerCheckId="dataTransOpts.tableS.register_check.id" />
- + :style="'margin-top: 2px;margin-left: 2px;height:110px;width:' + (window.pageWidth - 200 - 110 - 45 - 2) + 'px;'"> +
+ +
-
- +
+
@@ -62,7 +64,7 @@
+ :show-close="false" :close-on-click-modal="false" :append-to-body="true">
@@ -301,6 +303,7 @@ export default { // this.patientRegister.customerOrgTreeAll = res.data; // tcdate(this.patientRegister.customerOrgTreeAll) // }); + postapi('/api/app/CustomerOrg/GetCustomerOrgByParentId', { parentId: null }) .then(res => { if (res.code > -1) {