dataSta.js 618 Bytes
import request from '@/utils/request'
// 订单管理查询
// export function orderGetAll(data) {
//   return request({
//     url: '/order/getAll',
//     method: 'post',
//     data
//   })
// }
export function orderGetAll(data) {
  return request({
    url: '/order/getAll',
    method: 'post',
    data
  })
}

//计算毛利
export function calculateGrossProfit(data) {
  return request({
    url: 'order/calculateGrossProfit',
    method: 'post',
    data
  })
}
// 销售统计
export function salesStatistics(data) {
  return request({
    url: 'order/salesStatistics',
    method: 'post',
    data
  })
}