lis8.0-vue3/src/api/liswork/xtwh/ReportSettingApi.ts

39 lines
834 B
TypeScript
Raw Normal View History

2025-10-29 18:08:16 +08:00
//报告单设置界面
// @ts-ignore
import request from '@/utils/request'
//新增数据
export function addReportService(LabReportInstr: Object){
return request({
url: '/labReportinstr/add',
method: 'post',
data: LabReportInstr
})
2025-10-30 18:15:17 +08:00
}
//查询数据
export function queryReportService(LabReportInstr: Object){
return request({
url: '/labReportinstr/query',
method: 'get',
params: LabReportInstr
})
}
//修改数据
export function updateReportService(LabReportInstr: Object){
return request({
url: '/labReportinstr/update',
method: 'post',
data: LabReportInstr
})
}
//删除数据
export function deleteReportService(LabReportInstr: Object){
return request({
url: '/labReportinstr/del',
method: 'get',
params: LabReportInstr
})
2025-10-29 18:08:16 +08:00
}