coupon.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import request from '@/sheep/request';
  2. const CouponApi = {
  3. // 获得优惠劵模板列表
  4. getCouponTemplateListByIds: (ids) => {
  5. return request({
  6. url: '/promotion/coupon-template/list-by-ids',
  7. method: 'GET',
  8. params: { ids },
  9. custom: {
  10. showLoading: false, // 不展示 Loading,避免领取优惠劵时,不成功提示
  11. showError: false,
  12. },
  13. });
  14. },
  15. // 获得优惠劵模版列表
  16. getCouponTemplateList: (spuId, productScope, count) => {
  17. return request({
  18. url: '/promotion/coupon-template/list',
  19. method: 'GET',
  20. params: { spuId, productScope, count },
  21. });
  22. },
  23. // 获得优惠劵模版分页
  24. getCouponTemplatePage: (params) => {
  25. return request({
  26. url: '/promotion/coupon-template/page',
  27. method: 'GET',
  28. params,
  29. });
  30. },
  31. // 获得优惠劵模版
  32. getCouponTemplate: (id) => {
  33. return request({
  34. url: '/promotion/coupon-template/get',
  35. method: 'GET',
  36. params: { id },
  37. });
  38. },
  39. // 我的优惠劵列表
  40. getCouponPage: (params) => {
  41. return request({
  42. url: '/promotion/coupon/page',
  43. method: 'GET',
  44. params,
  45. });
  46. },
  47. // 领取优惠券
  48. takeCoupon: (templateId) => {
  49. return request({
  50. url: '/promotion/coupon/take',
  51. method: 'POST',
  52. data: { templateId },
  53. custom: {
  54. auth: true,
  55. showLoading: true,
  56. loadingMsg: '领取中',
  57. showSuccess: true,
  58. successMsg: '领取成功',
  59. },
  60. });
  61. },
  62. // 获得优惠劵
  63. getCoupon: (id) => {
  64. return request({
  65. url: '/promotion/coupon/get',
  66. method: 'GET',
  67. params: { id },
  68. });
  69. },
  70. // 获得未使用的优惠劵数量
  71. getUnusedCouponCount: () => {
  72. return request({
  73. url: '/promotion/coupon/get-unused-count',
  74. method: 'GET',
  75. custom: {
  76. showLoading: false,
  77. auth: true,
  78. },
  79. });
  80. },
  81. // 获得匹配指定商品的优惠劵列表
  82. getMatchCouponList: (price, spuIds, skuIds, categoryIds) => {
  83. return request({
  84. url: '/promotion/coupon/match-list',
  85. method: 'GET',
  86. params: {
  87. price,
  88. spuIds: spuIds.join(','),
  89. skuIds: skuIds.join(','),
  90. categoryIds: categoryIds.join(','),
  91. },
  92. custom: {
  93. showError: false,
  94. showLoading: false, // 避免影响 settlementOrder 结算的结果
  95. },
  96. });
  97. }
  98. };
  99. export default CouponApi;