wallet.js 551 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import request from '@/utils/request'
  2. // 资金列表
  3. export function usercoin(data) {
  4. return request({
  5. url: '/api/User/usercoin',
  6. method: 'get',
  7. data
  8. });
  9. }
  10. // 我的总资金
  11. export function getallzhehe(data) {
  12. return request({
  13. url: '/api/User/getallzhehe',
  14. method: 'get',
  15. data
  16. });
  17. }
  18. // 充币列表
  19. export function czcoin(data) {
  20. return request({
  21. url: '/api/user/czcoin',
  22. method: 'get',
  23. data
  24. });
  25. }
  26. // 充币详情
  27. export function czpage(data) {
  28. return request({
  29. url: '/api/user/czpage',
  30. method: 'get',
  31. data
  32. });
  33. }