12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
|
|
//报告单设置界面
|
||
|
|
// @ts-ignore
|
||
|
|
import request from '@/utils/request'
|
||
|
|
|
||
|
|
//新增数据
|
||
|
|
export function addReportService(LabReportInstr: Object){
|
||
|
|
return request({
|
||
|
|
url: '/labReportinstr/add',
|
||
|
|
method: 'post',
|
||
|
|
data: LabReportInstr
|
||
|
|
})
|
||
|
|
}
|