审查视图

src/api/country.js 393 字节
zhangFan authored
1
import http from './http.js'
朱兆平 authored
2
let baseUrl = 'nmms-server-export/nmms/country'
zhangFan authored
3 4 5 6 7 8 9


export const getCountry = params => { return http.get(`${baseUrl}/getCountryCode`,  params); };

export const getByCountryCodeForName = params => { return http.post(`${baseUrl}/getByCountryCodeForName`,params)};

export const getByCountryCode = params => { return http.post(`${baseUrl}/getByCountryCode`,params)};