Blame view

merchant-web-master - 副本/src/api/psRanking.js 1.28 KB
b7023175   杨鑫   '最新'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  import request from '@/utils/request'
  // 订单管理查询
  export function orderGetAll(data) {
    return request({
      url: '/order/getAll',
      method: 'post',
      data
    })
  }
  //商品销售排行
  export function salesRanking(data) {
    return request({
      url: '/order/salesRanking',
      method: 'post',
      data
    })
  }
  
a6a3878d   杨鑫   最新绿道
19
20
21
22
23
24
25
26
  // 订单不分页管理查询
  export function getAllNotPage(data) {
    return request({
      url: '/order/getAllNotPage',
      method: 'post',
      data
    })
  }
b7023175   杨鑫   '最新'
27
28
29
30
31
32
33
34
35
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
  //商品评价排行
  export function productEvaluationRanking(data) {
    return request({
      url: '/order/productEvaluationRanking',
      method: 'post',
      data
    })
  }
  
  //物资变动查询
  export function materialChangeInquiry(data) {
    return request({
      url: '/order/materialChangeInquiry',
      method: 'post',
      data
    })
  }
  //收货地统计
  
  export function deliveryAddressStatistics(data) {
    return request({
      url: '/order/deliveryAddressStatistics',
      method: 'post',
      data
    })
  }
  
  //商品消费表
  
  export function commodityConsumption(data) {
    return request({
      url: '/order/commodityConsumption',
      method: 'post',
      data
    })
  }
a6a3878d   杨鑫   最新绿道
63
64
65
66
67
68
69
70
71
  //出入库统计
  
  export function productInventory(data) {
    return request({
      url: '/cereShopProductInventoryLog/queryByPage',
      method: 'post',
      data
    })
  }