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