From 80efb562272eb23adbfa4dcffb8d3fb222124a61 Mon Sep 17 00:00:00 2001
From: pengjun <158915633@qq.com>
Date: Mon, 2 Feb 2026 19:53:17 +0800
Subject: [PATCH] seo
---
.../PatientRegisterMedicalList.vue | 737 ++++++++++++++++++
.../PatientRegisterRefuseList.vue | 8 +-
src/router/index.js | 6 +
.../customerOrg/patientRegisterMedical.vue | 150 ++++
4 files changed, 897 insertions(+), 4 deletions(-)
create mode 100644 src/components/patientRegister/PatientRegisterMedicalList.vue
create mode 100644 src/views/customerOrg/patientRegisterMedical.vue
diff --git a/src/components/patientRegister/PatientRegisterMedicalList.vue b/src/components/patientRegister/PatientRegisterMedicalList.vue
new file mode 100644
index 0000000..4de066b
--- /dev/null
+++ b/src/components/patientRegister/PatientRegisterMedicalList.vue
@@ -0,0 +1,737 @@
+
+
+
+
+
+
+
+
+
+ {{ dddw(dict.completeFlag, "id", scope.row.completeFlag, "displayName") }}
+
+
+
+
+
+ {{ scope.row.isLock == "Y" ? "是" : "否" }}
+
+
+
+
+
+ {{ scope.row.customerOrgParentName ? scope.row.customerOrgParentName : scope.row.customerOrgName }}
+
+
+
+
+
+
+ {{ scope.row.customerOrgParentName ? scope.row.customerOrgName : "" }}
+
+
+
+
+
+
+
+ {{ dddw(dict.sex, "id", scope.row.sexId, "displayName") }}
+
+
+
+
+
+
+
+
+
+
+ {{ dddw(dict.medicalPackage, "id", scope.row.medicalPackageId, "displayName") }}
+
+
+ {{ dddw(dict.customerOrgGroupAll, "id", scope.row.customerOrgGroupId, "displayName") }}
+
+
+
+
+
+
+ {{ dddw(dict.nation, "id", scope.row.nationId, "displayName") }}
+
+
+
+
+
+
+
+ {{ lmoment(scope.row.birthDate, "yyyy-MM-DD") }}
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ dddw(dict.maritalStatus, "id", scope.row.maritalStatusId, "displayName") }}
+
+
+
+
+
+
+ {{ dddw(dict.medicalType, "id", scope.row.medicalTypeId, "displayName") }}
+
+
+
+
+
+
+ {{ dddw(dict.personnelType, "id", scope.row.personnelTypeId, "displayName") }}
+
+
+
+
+
+
+
+
+ {{ scope.row.isVip == "Y" ? "是" : "否" }}
+
+
+
+
+
+ {{ lmoment(scope.row.creationTime, "yyyy-MM-DD") }}
+
+
+
+
+ {{ scope.row.isUpload == "Y" ? "是" : "否" }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/patientRegister/PatientRegisterRefuseList.vue b/src/components/patientRegister/PatientRegisterRefuseList.vue
index 7c9c6e8..a85ef04 100644
--- a/src/components/patientRegister/PatientRegisterRefuseList.vue
+++ b/src/components/patientRegister/PatientRegisterRefuseList.vue
@@ -140,7 +140,7 @@
-
@@ -193,6 +193,7 @@ export default {
data() {
return {
tableData: [], //列表数据
+ registerCheckDatas:[],
multipleSelection: [], //选中的数据列表
quick: {
id: "",
@@ -268,7 +269,7 @@ export default {
//挂载完成
mounted() {
this.tableData = []
- this.doctorCheck.RegisterCheckList = []
+ this.registerCheckDatas = []
},
computed: {
...mapState([
@@ -276,7 +277,6 @@ export default {
"dict",
"patientRegister",
"customerOrg",
- "doctorCheck",
]),
},
methods: {
@@ -335,7 +335,7 @@ export default {
.then((res) => {
console.log("registerCheckList", res.data);
if (res.code != -1) {
- this.doctorCheck.RegisterCheckList = res.data;
+ this.registerCheckDatas = res.data;
}
})
.catch((err) => {
diff --git a/src/router/index.js b/src/router/index.js
index 24de3d0..2fc7a95 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -476,6 +476,12 @@ const routes = [{
component: () =>
import ("../views/customerOrg/patientRegisterRefuse.vue"),
},
+ {
+ path: "/patientRegisterMedical",
+ name: "体检中心调整",
+ component: () =>
+ import ("../views/customerOrg/patientRegisterMedical.vue"),
+ },
{
path: "/charge",
name: "体检收费",
diff --git a/src/views/customerOrg/patientRegisterMedical.vue b/src/views/customerOrg/patientRegisterMedical.vue
new file mode 100644
index 0000000..2c17a7e
--- /dev/null
+++ b/src/views/customerOrg/patientRegisterMedical.vue
@@ -0,0 +1,150 @@
+
+
+
+
+