父页面:
mui.openWindow({
url: 'szdetail.html',
show: {
aniShow: 'pop-in'
},
extras: { //extras里面的就是参数了
name: that.list[index]
},
waiting: {
autoShow: true, //自动显示等待框,默认为true
}
});
将要跳转的页面:
mui.plusReady(function(){
var self = plus.webview.currentWebview();
VM.list = self.name;//获得参数
});