feed_stock_out_detail.js
953 字节
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 listFeed_stock_out_detail(query) {
return request({
url: '/admin/wl/feed_stock_out_detail/list',
method: 'get',
params: query
})
}
// 查询饲料出库明细详细
export function getFeed_stock_out_detail(id) {
return request({
url: '/admin/wl/feed_stock_out_detail/' + id,
method: 'get'
})
}
// 新增饲料出库明细
export function addFeed_stock_out_detail(data) {
return request({
url: '/admin/wl/feed_stock_out_detail',
method: 'post',
data: data
})
}
// 修改饲料出库明细
export function updateFeed_stock_out_detail(data) {
return request({
url: '/admin/wl/feed_stock_out_detail',
method: 'put',
data: data
})
}
// 删除饲料出库明细
export function delFeed_stock_out_detail(id) {
return request({
url: '/admin/wl/feed_stock_out_detail/' + id,
method: 'delete'
})
}