import { post, get } from '@/utils/request'; export const countryApi = { /** 获取国家列表 */ Country: (params = {}) => post('/country/get', params, 'Host80'), /** 获取国家列表 */ CountryGet: (params = {}) => get('/country/get', params, 'Host80'), };