country.ts 349 B

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