Blame view

merchant-web-master/src/api/dataSta.js 744 Bytes
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
9
  import request from '@/utils/request'
  // 订单管理查询
  // export function orderGetAll(data) {
  //   return request({
  //     url: '/order/getAll',
  //     method: 'post',
  //     data
  //   })
  // }
3d9acc2b   杨鑫   '最新'
10
11
12
13
14
15
16
17
  export function getAllNotPage(data) {
    return request({
      url: '/order/getAllNotPage',
      method: 'post',
      data
    })
  }
  
3f535f30   杨鑫   '初始'
18
19
20
21
22
23
24
  export function orderGetAll(data) {
    return request({
      url: '/order/getAll',
      method: 'post',
      data
    })
  }
3f535f30   杨鑫   '初始'
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  //计算毛利
  export function calculateGrossProfit(data) {
    return request({
      url: 'order/calculateGrossProfit',
      method: 'post',
      data
    })
  }
  // 销售统计
  export function salesStatistics(data) {
    return request({
      url: 'order/salesStatistics',
      method: 'post',
      data
    })
  }