Microseer.openLocalPage(object)
打开本地页面
object 参数说明
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
pageName | string | 是 | 页面Key |
data | string | 否 | 页面入参 |
页面key与入参数列举
商品详情页
pageName:GoodDetail
data:{goodsId:""}
飞机票预定页面
pageName:PreBookAirMain
data:{
startCity:'上海',
endCity:'北京',
startCityCode:'00001',
endCityCode:'00002',
startDate:'2019/03/15'
};
eg:
var object = {
pageName: 'GoodDetail',
data: {
goodsId: 265
},
success: function (res) {
}
};
Microseer.openLocalPage(object);