19 lines
467 B
TypeScript
19 lines
467 B
TypeScript
import request from '@/config/axios'
|
|
|
|
/*
|
|
* 李传洋
|
|
* IllnessCaseApi
|
|
*/
|
|
export const IllnessCaseApi = {
|
|
/* 测试方法 */
|
|
getDeviceList: async () => {
|
|
return await request.get({ url: `/test/device/getlist` })
|
|
},
|
|
getExamitemsList: async () => {
|
|
return await request.get({ url: `/examitems/examitems/getlist` })
|
|
},
|
|
getPage: async (params: any) => {
|
|
return await request.get({ url: `/tblist/patientexamlist/pageIllnessCase`, params })
|
|
}
|
|
}
|