common.js
892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import request from '@/utils/request'
/**
* 考点
* @param params
* @returns {*}
*/
export function getExamSiteList(params) {
return request({
url: '/common/home/getExamSiteList',
method: 'get',
params: params
})
}
/**
* 热门活动
* @param params
* @returns {*}
*/
export function getHotActivity(params) {
return request({
url: 'ztx-match/common/home/getHotActivity',
method: 'get',
params: params
})
}
export function getExamRegionsList() {
return request({
url: '/common/region/webSite/examPoint/regionsList',
method: 'get'
})
}
export function getIndexScheduleList(params) {
return request({
url: '/league/competitionSchedule/getIndexScheduleList',
method: 'get',
params: params
})
}
export function newbilllist(query) {
return request({
url: `/ota/norder/list`,
method: 'get',
params: query
})
}