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
| import request from '@/utils/request'
|
| // 系统设置,设备SOP查询
| export function DeviceSopSearch(data) {
| return request({
| url: 'SopManageMent/DeviceSopSearch',
| method: 'get',
| params: data
| })
| }
|
| // 系统设置,设备SOP新增
| export function DeviceSopAddSeave(data) {
| return request({
| url: 'SopManageMent/DeviceSopAddSeave',
| method: 'post',
| data
| })
| }
|
| // 系统设置,设备SOP删除
| export function DeviceSopDeleteSeave(data) {
| return request({
| url: 'SopManageMent/DeviceSopDeleteSeave',
| method: 'post',
| params: data
| })
| }
|
|