seeding_operation_approval.js
1003 字节
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 listSeeding_operation_approval(query) {
return request({
url: '/admin/sc/seeding_operation_approval/list',
method: 'get',
params: query
})
}
// 查询投苗操作审批详细
export function getSeeding_operation_approval(id) {
return request({
url: '/admin/sc/seeding_operation_approval/' + id,
method: 'get'
})
}
// 新增投苗操作审批
export function addSeeding_operation_approval(data) {
return request({
url: '/admin/sc/seeding_operation_approval',
method: 'post',
data: data
})
}
// 修改投苗操作审批
export function updateSeeding_operation_approval(data) {
return request({
url: '/admin/sc/seeding_operation_approval',
method: 'put',
data: data
})
}
// 删除投苗操作审批
export function delSeeding_operation_approval(id) {
return request({
url: '/admin/sc/seeding_operation_approval/' + id,
method: 'delete'
})
}