FlowBL/src/api/applyregistration/illnessCase/index.ts
2024-08-14 10:14:10 +08:00

22 lines
513 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 })
}
}
/** 防空作用域 **/
console.log(request)