order-sale.js 559 B

12345678910111213141516171819202122232425262728
  1. import http from '@/util/http'
  2. export const orderSaleList = params => http({
  3. url: '/commodity/reportingClub/splitReportingDistributionList',
  4. method: 'GET',
  5. params,
  6. headers: {
  7. isToken: true
  8. }
  9. })
  10. export const orderSaleDetail = params => http({
  11. url: '/commodity/reportingClub/splitReportingDistributionFrom',
  12. method: 'GET',
  13. params,
  14. headers: {
  15. isToken: true
  16. }
  17. })
  18. export const orderSaleSettle = data => http({
  19. url: '/commodity/reportingClub/updateSplitSettleStatus',
  20. method: 'POST',
  21. data,
  22. headers: {
  23. isToken: true
  24. }
  25. })