-
admin
2024-05-10 1c84aef7b3d88ce9f2ac5d3173f892a1cd727800
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import request from '@/utils/request'
 
// 查询点检保养项目列表
export function listInspectionItems(query) {
  return request({
    url: '/em/inspectionItems/list',
    method: 'get',
    params: query
  })
}
 
// 查询点检保养项目详细
export function getInspectionItems(id) {
  return request({
    url: '/em/inspectionItems/' + id,
    method: 'get'
  })
}
 
// 新增点检保养项目
export function addInspectionItems(data) {
  return request({
    url: '/em/inspectionItems',
    method: 'post',
    data: data
  })
}
 
// 修改点检保养项目
export function updateInspectionItems(data) {
  return request({
    url: '/em/inspectionItems',
    method: 'put',
    data: data
  })
}
 
// 删除点检保养项目
export function delInspectionItems(id) {
  return request({
    url: '/em/inspectionItems/' + id,
    method: 'delete'
  })
}