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 @@ + + + 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 @@ + + +