From 6164920fb25324056e99501b51fe52c13ef4c36f Mon Sep 17 00:00:00 2001
From: lichuanyang <1176537920@qq.com>
Date: Tue, 30 Jul 2024 10:54:21 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=8B=A5=E5=B9=B2=E5=8A=9F?=
=?UTF-8?q?=E8=83=BD=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../applyregistration/deviceManage/index.ts | 13 +
.../diagnosisTemplate/index.ts | 13 +
.../applyregistration/illnessCase/index.ts | 13 +
.../reportPrintStatistics/index.ts | 13 +
.../reservationInfo/index.ts | 51 +++
.../deviceManage/DeviceManageForm.vue | 169 ++++++++
.../applyregistration/deviceManage/index.vue | 150 +++++++
.../DiagnosisTemplateForm.vue | 141 +++++++
.../diagnosisTemplate/index.vue | 151 +++++++
.../applyregistration/illnessCase/index.vue | 249 +++++++++++
.../reportPrintStatistics/index.vue | 393 ++++++++++++++++++
.../reservationInfo/index.vue | 362 ++++++++++++++++
12 files changed, 1718 insertions(+)
create mode 100644 src/api/applyregistration/deviceManage/index.ts
create mode 100644 src/api/applyregistration/diagnosisTemplate/index.ts
create mode 100644 src/api/applyregistration/illnessCase/index.ts
create mode 100644 src/api/applyregistration/reportPrintStatistics/index.ts
create mode 100644 src/api/applyregistration/reservationInfo/index.ts
create mode 100644 src/views/applyregistration/deviceManage/DeviceManageForm.vue
create mode 100644 src/views/applyregistration/deviceManage/index.vue
create mode 100644 src/views/applyregistration/diagnosisTemplate/DiagnosisTemplateForm.vue
create mode 100644 src/views/applyregistration/diagnosisTemplate/index.vue
create mode 100644 src/views/applyregistration/illnessCase/index.vue
create mode 100644 src/views/applyregistration/reportPrintStatistics/index.vue
create mode 100644 src/views/applyregistration/reservationInfo/index.vue
diff --git a/src/api/applyregistration/deviceManage/index.ts b/src/api/applyregistration/deviceManage/index.ts
new file mode 100644
index 00000000..427bc161
--- /dev/null
+++ b/src/api/applyregistration/deviceManage/index.ts
@@ -0,0 +1,13 @@
+import request from '@/config/axios'
+
+/*
+ * 李传洋
+ * DeviceManageApi
+ */
+export const DeviceManageApi = {
+
+}
+
+
+/** 防空作用域 **/
+console.log(request)
\ No newline at end of file
diff --git a/src/api/applyregistration/diagnosisTemplate/index.ts b/src/api/applyregistration/diagnosisTemplate/index.ts
new file mode 100644
index 00000000..a7cd4916
--- /dev/null
+++ b/src/api/applyregistration/diagnosisTemplate/index.ts
@@ -0,0 +1,13 @@
+import request from '@/config/axios'
+
+/*
+ * 李传洋
+ * DiagnosisTemplateApi
+ */
+export const DiagnosisTemplateApi = {
+
+}
+
+
+/** 防空作用域 **/
+console.log(request)
\ No newline at end of file
diff --git a/src/api/applyregistration/illnessCase/index.ts b/src/api/applyregistration/illnessCase/index.ts
new file mode 100644
index 00000000..86c11b5e
--- /dev/null
+++ b/src/api/applyregistration/illnessCase/index.ts
@@ -0,0 +1,13 @@
+import request from '@/config/axios'
+
+/*
+ * 李传洋
+ * IllnessCaseApi
+ */
+export const IllnessCaseApi = {
+
+}
+
+
+/** 防空作用域 **/
+console.log(request)
\ No newline at end of file
diff --git a/src/api/applyregistration/reportPrintStatistics/index.ts b/src/api/applyregistration/reportPrintStatistics/index.ts
new file mode 100644
index 00000000..0b28f4ac
--- /dev/null
+++ b/src/api/applyregistration/reportPrintStatistics/index.ts
@@ -0,0 +1,13 @@
+import request from '@/config/axios'
+
+/*
+ * 李传洋
+ * ReportPrintStatisticsApi
+ */
+export const ReportPrintStatisticsApi = {
+
+}
+
+
+/** 防空作用域 **/
+console.log(request)
\ No newline at end of file
diff --git a/src/api/applyregistration/reservationInfo/index.ts b/src/api/applyregistration/reservationInfo/index.ts
new file mode 100644
index 00000000..87ddeec0
--- /dev/null
+++ b/src/api/applyregistration/reservationInfo/index.ts
@@ -0,0 +1,51 @@
+import request from '@/config/axios'
+
+/*
+ * 李传洋
+ * ReservationInfoApi
+ */
+export const ReservationInfoApi = {
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /* 参考代码 */
+ // 查询医生管理分页
+ getPage: async (params: any) => {
+ return await request.get({ url: `/doctor//page`, params })
+ },
+
+ // 查询医生管理详情
+ get: async (id: number) => {
+ return await request.get({ url: `/doctor//get?id=` + id })
+ },
+
+ // 新增医生管理
+ create: async (data: any) => {
+ return await request.post({ url: `/doctor//create`, data })
+ },
+
+ // 修改医生管理
+ update: async (data: any) => {
+ return await request.put({ url: `/doctor//update`, data })
+ },
+
+ // 删除医生管理
+ delete: async (id: number) => {
+ return await request.delete({ url: `/doctor//delete?id=` + id })
+ },
+
+ // 导出医生管理 Excel
+ export: async (params) => {
+ return await request.download({ url: `/doctor//export-excel`, params })
+ },
+}
diff --git a/src/views/applyregistration/deviceManage/DeviceManageForm.vue b/src/views/applyregistration/deviceManage/DeviceManageForm.vue
new file mode 100644
index 00000000..110a6f81
--- /dev/null
+++ b/src/views/applyregistration/deviceManage/DeviceManageForm.vue
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/applyregistration/deviceManage/index.vue b/src/views/applyregistration/deviceManage/index.vue
new file mode 100644
index 00000000..5d09fac1
--- /dev/null
+++ b/src/views/applyregistration/deviceManage/index.vue
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 新增
+
+
+
+
+
+
+
+
+
+ aaaa
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/applyregistration/diagnosisTemplate/DiagnosisTemplateForm.vue b/src/views/applyregistration/diagnosisTemplate/DiagnosisTemplateForm.vue
new file mode 100644
index 00000000..c835906f
--- /dev/null
+++ b/src/views/applyregistration/diagnosisTemplate/DiagnosisTemplateForm.vue
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/applyregistration/diagnosisTemplate/index.vue b/src/views/applyregistration/diagnosisTemplate/index.vue
new file mode 100644
index 00000000..a5f2ca89
--- /dev/null
+++ b/src/views/applyregistration/diagnosisTemplate/index.vue
@@ -0,0 +1,151 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 全部
+ 公共
+ 私有
+
+
+
+
+
+
+
+ 搜索
+
+
+ 新增
+
+
+
+
+
+
+
+
+
+ aaaa
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/applyregistration/illnessCase/index.vue b/src/views/applyregistration/illnessCase/index.vue
new file mode 100644
index 00000000..7e699b21
--- /dev/null
+++ b/src/views/applyregistration/illnessCase/index.vue
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 全部
+ 门诊
+ 住院
+ 体检
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 全部
+ 正常
+ 阳性
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+
+
+
+
+
+
+
+
+
+ aaaa
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/applyregistration/reportPrintStatistics/index.vue b/src/views/applyregistration/reportPrintStatistics/index.vue
new file mode 100644
index 00000000..f728d7f4
--- /dev/null
+++ b/src/views/applyregistration/reportPrintStatistics/index.vue
@@ -0,0 +1,393 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 打印
+
+
+
+
+
+
+ aaaa
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 报告单
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/applyregistration/reservationInfo/index.vue b/src/views/applyregistration/reservationInfo/index.vue
new file mode 100644
index 00000000..0047a4b9
--- /dev/null
+++ b/src/views/applyregistration/reservationInfo/index.vue
@@ -0,0 +1,362 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 岁
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 新增
+
+
+ 保存
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 重置
+
+
+ 新增
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file