wallet.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. import { post, get, postL } from '@/utils/http'
  2. import { trans } from './base'
  3. import { SERVICE_URL } from '@/utils/config'
  4. export default {
  5. apis: {
  6. COUPON: SERVICE_URL + '/api/coupon/pageMyValidCoupon',
  7. WALLET: SERVICE_URL + '/api/wallet/getByType',
  8. BILL: SERVICE_URL + '/api/wallet/bill',
  9. COUPON_TARGET: SERVICE_URL + '/api/coupon/listValidCoupon',
  10. COUPIN_BY_QR: SERVICE_URL + '/api/coupon/getByQR',
  11. COUPON_RECEIVE: SERVICE_URL + '/api/coupon/receive',
  12. COUPON_RECEIVE_ALL: SERVICE_URL + '/api/coupon/batchReceive',
  13. WITHDRAW_PRE: SERVICE_URL + '/api/wallet/withdraw/preInfo',
  14. WITHDRAW: SERVICE_URL + '/api/wallet/withdraw/submit',
  15. WITHDRAW_RECORD: SERVICE_URL + '/api/wallet/withdraw',
  16. RECHARGE: SERVICE_URL + '/api/wallet/recharge/submit',
  17. RECHARGE_RECORD: SERVICE_URL + '/api/wallet/recharge',
  18. NEWUSER_DETAIL: SERVICE_URL + '/api/activity/magicPromotion/detail',
  19. NEWUSER_MYPAGE: SERVICE_URL + '/api/activity/magicPromotion/myPage'
  20. },
  21. async coupons(size = 30) {
  22. const res = await trans(postL(this.apis.COUPON, { size }))
  23. return res.data
  24. },
  25. async info(type, loading = false) {
  26. const res = await trans(get(this.apis.WALLET, { type }, { loading }))
  27. return res.data
  28. },
  29. async bill(current, size, walletType, type) {
  30. const res = await trans(post(this.apis.BILL, { current, size, walletType, type }))
  31. return res.data
  32. },
  33. async targetCoupon(scene, targetObj, loading = false) {
  34. const res = await trans(post(this.apis.COUPON_TARGET, { scene, targetObj }, { loading }))
  35. return res.success && res.data
  36. },
  37. async couponByQr(couponId, loading) {
  38. const res = await trans(get(this.apis.COUPIN_BY_QR, { couponId }, { loading }))
  39. return res.data
  40. },
  41. async receiveCoupon(id) {
  42. const res = await trans(postL(this.apis.COUPON_RECEIVE, { id }))
  43. return res.success
  44. },
  45. async receiveCouponAll(ids) {
  46. const res = await trans(postL(this.apis.COUPON_RECEIVE_ALL, { ids }))
  47. return res.success
  48. },
  49. async withdrawPre(paymentType, walletType = '') {
  50. const res = await trans(get(this.apis.WITHDRAW_PRE, { paymentType, walletType }))
  51. return res.data
  52. },
  53. async withdraw(params) {
  54. const res = await trans(
  55. postL(this.apis.WITHDRAW, params)
  56. )
  57. return res.success
  58. },
  59. async withdrawRecord(current, size, walletType) {
  60. const res = await trans(post(this.apis.WITHDRAW_RECORD, { current, size, walletType }))
  61. return res.data
  62. },
  63. async recharge(amount, paymentType, walletType) {
  64. const res = await trans(
  65. postL(this.apis.RECHARGE, {
  66. amount,
  67. paymentType,
  68. walletType
  69. })
  70. )
  71. return res.data
  72. },
  73. async rechargeRecord(current, size, walletType) {
  74. const res = await trans(post(this.apis.RECHARGE_RECORD, { current, size, walletType }))
  75. return res.data
  76. },
  77. async getPullNewUserDetails() {
  78. const res = await trans(get(this.apis.NEWUSER_DETAIL))
  79. return res.data
  80. },
  81. async getPullNewUserPeoples(current, size) {
  82. const res = await trans(post(this.apis.NEWUSER_MYPAGE, { current, size }))
  83. return res.data
  84. },
  85. async saveBank(params) {
  86. const res = await trans(
  87. post(SERVICE_URL + '/api/wallet/withdraw/saveBank', params)
  88. )
  89. return res.success
  90. },
  91. async getWithdraw() {
  92. const res = await trans(get(SERVICE_URL+'/api/wallet/withdraw'))
  93. return res.data
  94. },
  95. }