1.打开项目找到 manifest.json文件 中 选择对应
image.png
2.检查 manifest.json 源码处键值对是否一样
image.png
3.与pages同级添加如图文件
image.png
4.开屏页hybrid文件 下载地址
https://gitee.com/Relief_believe/web-view/blob/master/hybrid.rar
- 找到app.vue
onLaunch(data) {
// #ifdef APP-PLUS
plus.navigator.closeSplashscreen();
var w = plus.webview.open(
'hybrid/html/advertise/advertise.html',
'本地地址', {
top: 0,
bottom: 0,
zindex: 999
},
'fade-in',
500
);
//设置定时器,4s后关闭启动广告页
setTimeout(function() {
plus.webview.close(w);
}, 4000);
// #endif
}
网友评论