import { myRequest } from '../request.js' export default { getProvinceList(data) { return myRequest({ url: '/apply/areas/list', method: 'get', data: data }) }, getCityList(data) { return myRequest({ url: '/apply/areas/cityList', method: 'get', data: data }) }, getExamine(data) { return myRequest({ url: '/course/examine/list', method: 'get', data: data }) }, advertisingHomeLocation(data) { return myRequest({ url: '/app/common/base/advertising/homeLocation', method: 'get', data: data, noToken: true }) }, advertisingList(data) { return myRequest({ url: '/app/common/base/advertising/list', method: 'get', data: data, noToken: true }) }, }