orderany.js
889 Bytes
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
45
46
47
// import request from './map'
import request from '@/utils/request'
// 订单管理查询
export function orderGetAll (data) {
return request({
url: '/order/getAll',
method: 'post',
data
})
}
// 导出订单模型
export function exportOrderModel (data) {
return request({
url: '/order/exportOrderModel',
method: 'post',
data,
responseType: 'blob'
})
}
// 导入订单数据
export function importOrderData (data) {
return request({
url: '/order/importOrderData',
method: 'post',
data
})
}
// 订单统计
export function orderStatistics (data) {
return request({
url: '/order/orderStatistics',
method: 'post',
data
})
}
// 订单统计商品信息
export function orderStatisticsProductInformation (data) {
return request({
url: '/order/orderStatisticsProductInformation',
method: 'post',
data
})
}