From 0ca81a9c25f6e16a955b600bcd58178633e8333c Mon Sep 17 00:00:00 2001 From: lxd <1004405501@qq.com> Date: Wed, 17 Jul 2024 21:01:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=B6=85=E5=A3=B0=E7=9B=B8?= =?UTF-8?q?=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/tblist/patientexamlist/index.ts | 5 + src/api/ultrasoniccom/index.ts | 10 + src/views/tblist/patientexamlist/index.vue | 26 +- src/views/ultrasoniccom/ultrasonicForm.vue | 388 +++++++++++++++++++++ 4 files changed, 428 insertions(+), 1 deletion(-) create mode 100644 src/api/ultrasoniccom/index.ts create mode 100644 src/views/ultrasoniccom/ultrasonicForm.vue diff --git a/src/api/tblist/patientexamlist/index.ts b/src/api/tblist/patientexamlist/index.ts index 7f64472b..8347a3b1 100644 --- a/src/api/tblist/patientexamlist/index.ts +++ b/src/api/tblist/patientexamlist/index.ts @@ -25,6 +25,11 @@ export interface PatientexamlistVO { reviewDoctor: string // 审核医生 reviewDate: Date // 审核日期:年月日时分秒 thumbnailImgUrl: string // 缩略图oss url, httP:oss url + examItemCode: string // + regId: string // 登记单号 + diagFlag: string // 阴性阳性标记 + deviceName: string // 影像设备名称 + } // PACS检查列表 API diff --git a/src/api/ultrasoniccom/index.ts b/src/api/ultrasoniccom/index.ts new file mode 100644 index 00000000..24acc835 --- /dev/null +++ b/src/api/ultrasoniccom/index.ts @@ -0,0 +1,10 @@ +import request from '@/config/axios' +// 超声组件 API +export const ultrasoniccomApi = { + // 查询模版表数据 + getreporttemplatelist: async (orgID: string,type:string,isprivate:string) => { + return await request.get({ url: `/ultrasoniccom/ultrasonic/reporttemplatetlist?orgID=${orgID}&&type=${type}&&isprivate=${isprivate}` }) + }, + + +} diff --git a/src/views/tblist/patientexamlist/index.vue b/src/views/tblist/patientexamlist/index.vue index 9386880e..93f77ece 100644 --- a/src/views/tblist/patientexamlist/index.vue +++ b/src/views/tblist/patientexamlist/index.vue @@ -266,7 +266,7 @@ - + + + \ No newline at end of file