// webvie页面
onReady() {
// #ifdef APP-PLUS
var currentWebview = this.$scope.$getAppWebview() //此对象相当于html5plus里的plus.webview.currentWebview()。在uni-app里vue页面直接使用plus.webview.currentWebview()无效
setTimeout(function() {
wv = currentWebview.children()[0]
wv.setStyle({
hardwareAccelerated:true, //开启硬件加速
cachemode:'cacheElseNetwork',//优先加载缓存
videoFullscreen:'landscape',//视屏横屏无效
plusrequire:"none"//禁止远程网页使用plus的API
})
}, 1000); //如果是页面初始化调用时,需要延时一下
// #endif
},
// 源码视图
"screenOrientation" : [
//可选,字符串数组类型,应用支持的横竖屏
"portrait-primary", //可选,字符串类型,支持竖屏
"portrait-secondary", //可选,字符串类型,支持反向竖屏
"landscape-primary", //可选,字符串类型,支持横屏
"landscape-secondary" //可选,字符串类型,支持反向横屏
],