| 1234567891011121314151617181920212223242526 |
- import request from '@/router/axios';
- //利润分析
- export const getProfitList = (current, size,params) => {
- return request({
- url: '/api/blade-purchase-sales/order/listOrderStatisticAnalysis',
- method: 'get',
- params: {
- ...params,
- current,
- size
- }
- })
- }
- //提成统计
- export const getCommission = (current, size,params) => {
- return request({
- url: '/api/blade-deliver-goods/deliveryReport/commission',
- method: 'post',
- data: {
- ...params,
- current,
- size
- }
- })
- }
|