application.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import request from '@/utils/request'
  2. // 用户提现申请查询
  3. export function applicationGetAll(data) {
  4. return request({
  5. url: '/buyer_withdrawal/getAll',
  6. method: 'post',
  7. data
  8. })
  9. }
  10. // 用户提现申请详情查询
  11. export function applicationGetById(data) {
  12. return request({
  13. url: '/buyer_withdrawal/getById',
  14. method: 'post',
  15. data
  16. })
  17. }
  18. // 用户提现申请处理
  19. export function applicationHandle(data) {
  20. return request({
  21. url: '/buyer_withdrawal/handle',
  22. method: 'post',
  23. data
  24. })
  25. }
  26. // 查询提现手续费管理
  27. export function commissionGetAll(data){
  28. return request({
  29. url:"/buyerWithdrawalConfig/getAll",
  30. method:"post",
  31. data
  32. })
  33. }
  34. // 新增提现手续费管理
  35. export function addCommission(data){
  36. return request({
  37. url:"/buyerWithdrawalConfig/save",
  38. method:"post",
  39. data
  40. })
  41. }
  42. // 删除提现手续费管理
  43. export function deleteCommission(data){
  44. return request({
  45. url:"/buyerWithdrawalConfig/delete",
  46. method:"post",
  47. data
  48. })
  49. }
  50. // 编辑提现手续费管理
  51. export function edidCommission(data){
  52. return request({
  53. url:"/buyerWithdrawalConfig/update",
  54. method:"post",
  55. data
  56. })
  57. }
  58. // 查询当前用户的信息
  59. export function getUserWater(params){
  60. return request({
  61. url:"/buyer_withdrawal/getDistributor",
  62. method:"get",
  63. params
  64. })
  65. }
  66. // 流水记录查询
  67. export function getWaterRecord(params){
  68. return request({
  69. url:"/platformUserCommissionRecord/page",
  70. method:"get",
  71. params
  72. })
  73. }
  74. // 分页查询佣金流水记录(新)
  75. export function getCommissionAll(params){
  76. return request({
  77. url:"/buyerCommissionEntryRecord/getCommissionAll",
  78. method:"get",
  79. params
  80. })
  81. }
  82. // 通联查询
  83. export function getTonglian(data){
  84. return request({
  85. url:"/buyer_withdrawal/getByAllinpay",
  86. method:"post",
  87. data
  88. })
  89. }