WishMeLz

生活其实很有趣

uniapp 取消web-view全屏

取消全屏, 设置导航栏.

垃圾编辑器粘贴代码格式全乱不整理了. 自己copy过去格式化

onReady() {
			// #ifdef APP-PLUS
			uni.setNavigationBarColor({
			    frontColor: '#000000',
			    backgroundColor: '#ffffff'
			  })
			var lh = plus.navigator.getStatusbarHeight();
			var currentWebview = this.$scope
				.$getAppWebview()
			setTimeout(function() {
				let self = this;
				uni.getSystemInfo({
					success: function(res) {
						// console.log(res.screenHeight); //屏幕高度  注意这里获得的高度宽度都是px 
						// console.log(res.windowWidth); //可使用窗口宽度
						// console.log(res.windowHeight); //可使用窗口高度
						// console.log(res.screenWidth); //屏幕宽度
						wv = currentWebview.children()[0]
						wv.setStyle({
							top: lh,
							height:res.screenHeight - lh
						}) 
					}
				});
			}, 1000); 
			// #endif
		}