From 346db7a73f9f0730bad8504581debb4c8dceca15 Mon Sep 17 00:00:00 2001 From: pengjun <158915633@qq.com> Date: Tue, 25 Jul 2023 18:33:58 +0800 Subject: [PATCH] sign --- .../doctorCheck/PatientRegisterList.vue | 6 +- .../doctorCheck/RegisterCheckList.vue | 6 +- .../patientRegister/ContactPerson.vue | 385 ------------------ .../PatientRegisterSignList.vue | 299 ++++++++++++++ .../patientRegisterAsbItem.vue | 13 +- .../customerOrg/patientRegisterRecover.vue | 6 +- src/views/customerOrg/patientRegisterSign.vue | 189 +++++++-- 7 files changed, 479 insertions(+), 425 deletions(-) delete mode 100644 src/components/patientRegister/ContactPerson.vue create mode 100644 src/components/patientRegister/PatientRegisterSignList.vue diff --git a/src/components/doctorCheck/PatientRegisterList.vue b/src/components/doctorCheck/PatientRegisterList.vue index ab5dd46..f116c27 100644 --- a/src/components/doctorCheck/PatientRegisterList.vue +++ b/src/components/doctorCheck/PatientRegisterList.vue @@ -1,7 +1,7 @@ - + - + @@ -73,7 +74,7 @@ export default { //自定义计算列 getSummaries(param) { const { columns, data } = param; - const sumCol = [2,4] //需合计的列 + const sumCol = [2,5] //需合计的列 const sums = []; columns.forEach((column, index) => { //显示合计列 diff --git a/src/views/customerOrg/patientRegisterRecover.vue b/src/views/customerOrg/patientRegisterRecover.vue index 54609a6..01cdcdc 100644 --- a/src/views/customerOrg/patientRegisterRecover.vue +++ b/src/views/customerOrg/patientRegisterRecover.vue @@ -18,7 +18,7 @@ - + @@ -31,13 +31,13 @@ import CustomerOrgTreeAll from "../../components/patientRegister/customerOrgTreeAll.vue"; import CustomerOrgEdit from "../../components/patientRegisterSign/customerOrgEdit.vue"; import PatientRegisterAsbItem from "../../components/patientRegister/patientRegisterAsbItem.vue"; -import ContactPerson from "../../components/patientRegister/ContactPerson.vue"; + export default { components: { CustomerOrgTreeAll, CustomerOrgEdit, PatientRegisterAsbItem, - ContactPerson, + }, data() { return {}; diff --git a/src/views/customerOrg/patientRegisterSign.vue b/src/views/customerOrg/patientRegisterSign.vue index 67ba402..8d76f89 100644 --- a/src/views/customerOrg/patientRegisterSign.vue +++ b/src/views/customerOrg/patientRegisterSign.vue @@ -1,26 +1,19 @@