FlowVue/src/api/applyregistration/reportPrintStatistics/index.ts
2024-09-24 12:23:57 +08:00

21 lines
624 B
TypeScript

import request from '@/config/axios'
/*
* 李传洋
* ReportPrintStatisticsApi
*/
export const ReportPrintStatisticsApi = {
getOrg: async (orgID: any) => {
return await request.get({ url: `/org/org/getone?orgID=` + orgID })
},
getDeviceList: async () => {
return await request.get({ url: `/system/device/getlist` })
},
getPage: async (params: any) => {
return await request.get({ url: `/tblist/patientexamlist/pageReportPrintStatistics`, params })
},
updateExamItemName: async (params: any) => {
return await request.put({ url: `/tblist/patientexamlist/updateExamItemName`, params })
}
}