FlowBL/src/api/applyregistration/illnessCase/index.ts
2024-08-22 12:01:11 +08:00

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 })
}
}