增加同步接口以及功能

This commit is contained in:
Euni4U 2025-03-11 14:52:07 +08:00
parent ec21ddbaf8
commit 851b555172
3 changed files with 520 additions and 289 deletions

View File

@ -18,6 +18,7 @@ export interface PatientitemsVO {
itemStatus: string // 0未检 1已检 2放弃 3挂起择日检(待查)
createTime: Date // 创建时间
positive: string // 是否阳性 1阳性
analyse: string // 检查结果分析
inspectdoctor: string // 检查医生
inspecttime: Date // 检查时间
groupname: string // 模块名称
@ -70,4 +71,9 @@ export const PatientitemsApi = {
exportPatientitems: async (params) => {
return await request.download({ url: `/Inspect/patientitems/export-excel`, params })
},
//同步患者数据和检查项
createPatientapiInfo: async () => {
return await request.get({ url: `/Inspect/patientitems/apiPatientInfo` })
}
}

View File

@ -108,7 +108,7 @@ const getImageUrls = async () => {
'ultrasound': ['ultrasound', 'us', '超声', '彩超', 'b超', 'doppler'],
'ecg': ['ecg', 'ekg', '心电图', 'electrocardiogram'],
'blood': ['blood', 'cbc', '血常规', '血液', 'bloodtest'],
'urine': ['urine', 'ua', '尿常规', '尿液', 'urinalysis']
'urine': ['urine', 'ua', '尿常规', '尿液', 'urinalysis','RT','rt']
}
//

File diff suppressed because it is too large Load Diff