settlementManagement.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import request from '@/utils/request'
  2. // 货主提现列表
  3. export function getListwithdrawal(data) {
  4. return request({
  5. url: '/hyCargoOwnerCapitalInfo/selectWithdrawal',
  6. method: 'get',
  7. params: data,
  8. })
  9. }
  10. // 货主银行流水列表
  11. export function getListaccountstatement(data) {
  12. return request({
  13. url: '/hyCargoOwnerCapitalInfo/selectBankFlow',
  14. method: 'get',
  15. params: data,
  16. })
  17. }
  18. // 司机运费结算列表
  19. export function getListdriverfreight(data) {
  20. return request({
  21. url: '/hyFreightSettlementInfo/selectFreightSettlement',
  22. method: 'get',
  23. params: data,
  24. })
  25. }
  26. // 垫付还款结算列表
  27. export function getListpadsettleaccounts(data) {
  28. return request({
  29. url: '/repaymentInfo/selectAdvanceRepayment',
  30. method: 'get',
  31. params: data,
  32. })
  33. }
  34. // 统计报表利润图表
  35. export function getListselectProfit(data) {
  36. return request({
  37. url: '/freightInfo/selectProfit',
  38. method: 'get',
  39. params: data,
  40. })
  41. }
  42. // 统计报表利润柱状图
  43. export function getListexpenses(data) {
  44. return request({
  45. url: '/freightInfo/selectSettledExpenses',
  46. method: 'get',
  47. params: data,
  48. })
  49. }
  50. // 货主提现批量审核
  51. export function batchAduit(data) {
  52. return request({
  53. url: '/hyCargoOwnerCapitalInfo/api/examineList',
  54. method: 'post',
  55. data: data,
  56. })
  57. }
  58. // 司机运费结算暂缓支付
  59. export function deferpay(data) {
  60. return request({
  61. url: '/hyFreightSettlementInfo/api/deferredPayment',
  62. method: 'post',
  63. data: data,
  64. })
  65. }
  66. // 司机运费结算批量付款
  67. export function batchpay(data) {
  68. return request({
  69. url: '/hyFreightSettlementInfo/api/paymentList',
  70. method: 'post',
  71. data: data,
  72. })
  73. }