country.js 393 字节
import http from './http.js'
let baseUrl = 'nmms-server-export/nmms/country'


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)};