1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询报告信息列表
- export function listInformation(query) {
- return request({
- url: '/lims/laboratory/reportInformation/list',
- method: 'get',
- params: query
- })
- }
- // 查询报告信息详细
- export function getInformation(id) {
- return request({
- url: '/lims/laboratory/reportInformation/' + id,
- method: 'get'
- })
- }
- // 新增报告信息
- export function addInformation(data) {
- return request({
- url: '/lims/laboratory/reportInformation',
- method: 'post',
- data: data
- })
- }
- // 修改报告信息
- export function updateInformation(data) {
- return request({
- url: '/lims/laboratory/reportInformation',
- method: 'put',
- data: data
- })
- }
- // 删除报告信息
- export function delInformation(id) {
- return request({
- url: '/lims/laboratory/reportInformation' + id,
- method: 'delete'
- })
- }
|