# getCountryString

获取国家码

# 请求参数

# 接口请求示例

nativeService.getCountryString()

# 返回参数

Prop Type Default Description
-- Promise 获取值之后的回调
-country_code String 国家码

# 接口返回示例

nativeService.getCountryString().then(data => {
  this.countryData.country = data.country_code;
})