mui.init()
mui.plusReady(function() {
var buycontent = "服务内容:"+
"\n" +
"价格:" +
"\n" +
"付费方式:支付宝";
var btnArray = ['否', '是'];
mui.confirm(buycontent, '用户协议', btnArray, function(e) {
if(e.index == 1) {
//在当前页面关闭
plus.webview.close(plus.webview.currentWebview());
mui.openWindow({
url: 'buy_manage.html',
id: 'buy_manage',
preload: true,
show: {
aniShow: 'pop-in'
},
styles: {
popGesture: 'hide'
},
waiting: {
autoShow: false
}
});
} else {
//在当前页面关闭
plus.webview.close(plus.webview.currentWebview());
}
})
});
//在当前页面关闭
plus.webview.close(plus.webview.currentWebview());,
防止前进之后的页面后退到当前页面