21 lines
624 B
TypeScript
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 })
|
|
}
|
|
}
|