Microseer.navigationCityList(object)
打开城市列表页面
object 参数说明
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
level | string | 否 | 搜索粒度 (机票/火车票)2 (酒店)3 |
success | function | 是 | 接口调用成功的回调函数 |
success 回调参数说明
属性名 | 类型 | 说明 |
---|---|---|
name | string | 城市名 |
code | string | 城市编码 |
eg:
var object = {
level:'2',
success: function (res) {
alert(res.name);
}
};
Microseer.navigationCityList(object);