123456789101112131415161718192021222324252627282930 |
- import request from '@/utils/request'
- // 首页代币价格
- export function prices(data) {
- return request({
- url: '/api/prices',
- method: 'get',
- data
- });
- }
- export function getIndex(data) {
- return request({
- url: '/api/index',
- method: 'get',
- data
- });
- }
- // #ifndef MP
- /**
- * 版本号
- */
- export function getAppVersion(data) {
- return request({
- url: '/api/version',
- method: 'get',
- data
- });
- }
- // #endif
|