import { post, get } from '@/utils/request'; export const countryApi = { // 获取国家列表 Country: (params = {}) => { // 注意:原有this.postAll("Host80", ...)逻辑如需保留需补充实现 return post('/country/get', params, 'Host80'); }, CountryGet: (params = {}) => { return get('/country/get', params); }, };