wallet_list.js 641 B

12345678910111213141516171819202122232425262728293031323334
  1. import request from '@/utils/request'
  2. //钱包列表(非返利钱包)
  3. export function getWalletList(params) {
  4. return request({
  5. url: '/wallet/list',
  6. method: 'get',
  7. params
  8. })
  9. }
  10. //产品类别列表
  11. export function getProductCategory(params) {
  12. return request({
  13. url: '/product-category/list',
  14. method: 'get',
  15. params
  16. })
  17. }
  18. //绑定品类
  19. export function getWalletBiandMain(params) {
  20. return request({
  21. url: '/wallet/bindMain',
  22. method: 'post',
  23. params
  24. })
  25. }
  26. //现金钱包详情
  27. export function getWalletDetail(params) {
  28. return request({
  29. url: '/wallet/detail',
  30. method: 'get',
  31. params
  32. })
  33. }