FlowBL/src/api/applyregistration/illnessCase/index.ts

22 lines
513 B
TypeScript
Raw Normal View History

2024-07-30 10:54:21 +08:00
import request from '@/config/axios'
/*
*
* IllnessCaseApi
*/
export const IllnessCaseApi = {
2024-08-14 10:14:10 +08:00
/* 测试方法 */
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 })
}
2024-07-30 10:54:21 +08:00
}
/** 防空作用域 **/
console.log(request)