1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import request from '@/utils/request'
|
| let IndexApi = {
|
| /*基础配置*/
| base(data, errorback) {
| return request._post('/operations/index/base', data, errorback);
| },
|
| /*商城首页*/
| getCount(data, errorback) {
| return request._post('/operations/Index/index', data, errorback);
| },
|
|
|
| }
|
| export default IndexApi;
|
|