3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
|
// import request from './map'
import request from '@/utils/request'
// 订单管理查询
export function orderGetAll(data) {
return request({
url: '/order/getAll',
method: 'post',
data
})
}
|
3d9acc2b
杨鑫
'最新'
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// 不分页订单查询
export function getAllNotPage(data) {
return request({
url: '/order/getAllNotPage',
method: 'post',
data
})
}
// 订单支付趋势
export function orderIndex(data) {
return request({
url: '/order/index',
method: 'post',
data
})
}
|
3f535f30
杨鑫
'初始'
|
28
29
30
31
32
33
|
//导出订单模型
export function exportOrderModel(data) {
return request({
url: '/order/exportOrderModel',
method: 'post',
|
e5b57447
杨鑫
'分包问卷'
|
34
35
|
data,
responseType: 'blob'
|
3f535f30
杨鑫
'初始'
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
})
}
// 导入订单数据
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
})
}
|
8dca79c8
杨鑫
1
|
66
67
68
69
70
71
72
73
|
// 统计列表
export function salesRanking(data) {
return request({
url: '/order/salesRanking',
method: 'post',
data
})
}
|