You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
738 B

  1. import http from '@/utils/httpRequest'
  2. /**
  3. * 查询标签变动记录列表
  4. */
  5. export function labelTransactionLogList(data) {
  6. return http({
  7. url: http.adornUrl('/warehouse/labelTransactionLog/list'),
  8. method: 'post',
  9. data: http.adornData(data)
  10. })
  11. }
  12. /**
  13. * 导出标签变动记录
  14. */
  15. export function labelTransactionLogExport(data) {
  16. return http({
  17. url: http.adornUrl('/warehouse/labelTransactionLog/export'),
  18. method: 'post',
  19. data: http.adornData(data),
  20. responseType: 'blob'
  21. })
  22. }
  23. /**
  24. * 批量手动重试
  25. */
  26. export function labelTransactionLogRetry(data) {
  27. return http({
  28. url: http.adornUrl('/warehouse/labelTransactionLog/retry'),
  29. method: 'post',
  30. data: http.adornData(data)
  31. })
  32. }