wallet.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import request from '@/sheep/request';
  2. const PayWalletApi = {
  3. // 获取钱包
  4. getPayWallet() {
  5. return request({
  6. url: '/pay/wallet/get',
  7. method: 'GET',
  8. custom: {
  9. showLoading: false,
  10. auth: true,
  11. },
  12. });
  13. },
  14. // 获得钱包流水分页
  15. getWalletTransactionPage: (params) => {
  16. const queryString = Object.keys(params)
  17. .map((key) => encodeURIComponent(key) + '=' + params[key])
  18. .join('&');
  19. return request({
  20. url: `/pay/wallet-transaction/page?${queryString}`,
  21. method: 'GET',
  22. });
  23. },
  24. // 获得钱包流水统计
  25. getWalletTransactionSummary: (params) => {
  26. const queryString = `createTime=${params.createTime[0]}&createTime=${params.createTime[1]}`;
  27. return request({
  28. url: `/pay/wallet-transaction/get-summary?${queryString}`,
  29. // url: `/pay/wallet-transaction/get-summary`,
  30. method: 'GET',
  31. // params: params
  32. });
  33. },
  34. // 获得钱包充值套餐列表
  35. getWalletRechargePackageList: () => {
  36. return request({
  37. url: '/pay/wallet-recharge-package/list',
  38. method: 'GET',
  39. custom: {
  40. showError: false,
  41. showLoading: false,
  42. },
  43. });
  44. },
  45. // 创建钱包充值记录(发起充值)
  46. createWalletRecharge: (data) => {
  47. return request({
  48. url: '/pay/wallet-recharge/create',
  49. method: 'POST',
  50. data,
  51. });
  52. },
  53. // 获得钱包充值记录分页
  54. getWalletRechargePage: (params) => {
  55. return request({
  56. url: '/pay/wallet-recharge/page',
  57. method: 'GET',
  58. params,
  59. custom: {
  60. showError: false,
  61. showLoading: false,
  62. },
  63. });
  64. },
  65. };
  66. export default PayWalletApi;