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