index.js 421 B

123456789101112131415161718192021222324252627282930
  1. import request from '@/utils/request'
  2. // 首页代币价格
  3. export function prices(data) {
  4. return request({
  5. url: '/api/prices',
  6. method: 'get',
  7. data
  8. });
  9. }
  10. export function getIndex(data) {
  11. return request({
  12. url: '/api/index',
  13. method: 'get',
  14. data
  15. });
  16. }
  17. // #ifndef MP
  18. /**
  19. * 版本号
  20. */
  21. export function getAppVersion(data) {
  22. return request({
  23. url: '/api/version',
  24. method: 'get',
  25. data
  26. });
  27. }
  28. // #endif