voucherOperation.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import request from '@/utils/request'
  2. // 分页查询平台代金券
  3. export function getAllPlatformVoucher(data) {
  4. return request({
  5. url: '/platformVoucher/getAll',
  6. method: 'post',
  7. data
  8. })
  9. }
  10. // 充值代金券统计
  11. export function getByUserOrderShopVoucher(params) {
  12. return request({
  13. url: '/shopVoucherEntryRecord/getByUserOrderVoucher',
  14. method: 'get',
  15. params
  16. })
  17. }
  18. // 兑换代金券统计
  19. export function getShopTotalShopVoucher(data) {
  20. return request({
  21. url: '/shopVoucherEntryRecord/shopTotal',
  22. method: 'post',
  23. data
  24. })
  25. }
  26. // 充值代金券转赠
  27. export function updateTransferRechargeShopVoucher(data) {
  28. return request({
  29. url: '/shopVoucherEntryRecord/getByUserOrderVoucher',
  30. method: 'post',
  31. data
  32. })
  33. }
  34. // 兑换代金券转赠
  35. export function updateTransferExchangeShopVoucher(data) {
  36. return request({
  37. url: '/shopVoucherEntryRecord/transfer',
  38. method: 'post',
  39. data
  40. })
  41. }
  42. // 商家充值代金券:商家转用户转账操作
  43. export function orderShopToUserTransferVoucher(params) {
  44. return request({
  45. url: '/shopVoucherEntryRecord/orderShopToUserTransfer',
  46. method: 'get',
  47. params
  48. })
  49. }
  50. // 商家兑换代金券:商家转用户转账操作
  51. export function shopToUserTransferVoucher(params) {
  52. return request({
  53. url: '/shopVoucherEntryRecord/shopToUserTransfer',
  54. method: 'get',
  55. params
  56. })
  57. }
  58. // 代金券购买提交订单
  59. export function submitShopVoucherEntryRecord(data) {
  60. return request({
  61. url: '/shopVoucherEntryRecord/submitVoucher',
  62. method: 'post',
  63. data
  64. })
  65. }