12345678910111213141516171819202122232425262728 |
- import http from '@/util/http'
- export const orderSaleList = params => http({
- url: '/commodity/reportingClub/splitReportingDistributionList',
- method: 'GET',
- params,
- headers: {
- isToken: true
- }
- })
- export const orderSaleDetail = params => http({
- url: '/commodity/reportingClub/splitReportingDistributionFrom',
- method: 'GET',
- params,
- headers: {
- isToken: true
- }
- })
- export const orderSaleSettle = data => http({
- url: '/commodity/reportingClub/updateSplitSettleStatus',
- method: 'POST',
- data,
- headers: {
- isToken: true
- }
- })
|