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
杨鑫
'初始'
|
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
|
})
}
// 导入订单数据
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
})
}
|