From 683b43789adc24c1abaacc453660dd09de87276d Mon Sep 17 00:00:00 2001
From: lxd <1004405501@qq.com>
Date: Mon, 26 Aug 2024 11:11:03 +0800
Subject: [PATCH] =?UTF-8?q?=E5=8C=BB=E7=94=9F=E7=AE=A1=E7=90=86=E5=92=8C?=
=?UTF-8?q?=E6=A3=80=E6=9F=A5=E9=A1=B9=E7=9B=AE=E7=AE=A1=E7=90=86=E5=A2=9E?=
=?UTF-8?q?=E5=8A=A0=E5=AD=97=E5=85=B8=E9=A1=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/applyregistration/exampartManage/index.ts | 4 ++++
src/views/system/doctor/Form.vue | 15 +++++++++++----
src/views/system/examitems/examitemsForm.vue | 15 +++++++++++++--
3 files changed, 28 insertions(+), 6 deletions(-)
diff --git a/src/api/applyregistration/exampartManage/index.ts b/src/api/applyregistration/exampartManage/index.ts
index c7bddaaf..1a894b65 100644
--- a/src/api/applyregistration/exampartManage/index.ts
+++ b/src/api/applyregistration/exampartManage/index.ts
@@ -24,4 +24,8 @@ export const ExampartManageApi = {
delete: async (id: any) => {
return await request.delete({ url: `/test/exampart/delete?id=` + id })
},
+ getexampartlist: async () => {
+ return await request.get({ url: `/test/exampart/getlist` })
+ },
+
}
diff --git a/src/views/system/doctor/Form.vue b/src/views/system/doctor/Form.vue
index ef420e72..642f14bc 100644
--- a/src/views/system/doctor/Form.vue
+++ b/src/views/system/doctor/Form.vue
@@ -29,7 +29,12 @@
-
+
@@ -90,12 +95,13 @@ import { Api, VO, baseFile } from '@/api/system/doctor'
import { error } from 'console'
import type { UploadProps, UploadUserFile } from 'element-plus'
import { OrgApi } from '@/api/system/org'
-
+import { DepartmentApi } from '@/api/system/department'
//存放base64
const imageBase64 = ref()
//存放要上传的文件名称
const imagefilename = ref()
-
+//科室数据
+const fordepartementData = ref([])
/** 医生管理 表单 */
defineOptions({ name: 'Form' })
//机构数据
@@ -138,7 +144,8 @@ const open = async (type: string, id?: number) => {
resetForm()
// 获取机构字典数据
fororglistData.value=await OrgApi.getOrglist()
-
+ //科室字典
+ fordepartementData.value = await DepartmentApi.getDepartmentList()
// 修改时,设置数据
if (id) {
formLoading.value = true
diff --git a/src/views/system/examitems/examitemsForm.vue b/src/views/system/examitems/examitemsForm.vue
index ec9d94a9..07de925a 100644
--- a/src/views/system/examitems/examitemsForm.vue
+++ b/src/views/system/examitems/examitemsForm.vue
@@ -40,7 +40,14 @@
/>
-
+
+
+
@@ -84,12 +91,14 @@