39 lines
834 B
TypeScript
39 lines
834 B
TypeScript
//报告单设置界面
|
|
// @ts-ignore
|
|
import request from '@/utils/request'
|
|
|
|
//新增数据
|
|
export function addReportService(LabReportInstr: Object){
|
|
return request({
|
|
url: '/labReportinstr/add',
|
|
method: 'post',
|
|
data: LabReportInstr
|
|
})
|
|
}
|
|
|
|
//查询数据
|
|
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
|
|
})
|
|
} |