import request from '@/utils/request' // 订单管理查询 export function orderGetAll(data) { return request({ url: '/order/getAll', method: 'post', data }) } // 订单不分页管理查询 export function getAllNotPage(data) { return request({ url: '/order/getAllNotPage', method: 'post', data }) } //商品销售排行 export function salesRanking(data) { return request({ url: '/order/salesRanking', method: 'post', data }) } //商品评价排行 export function productEvaluationRanking(data) { return request({ url: '/order/productEvaluationRanking', method: 'post', data }) } //物资变动查询 export function cereShopProductInventoryLog(data) { return request({ url: '/cereShopProductInventoryLog/getAll', 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 }) }