uniapp 解决键盘弹出页面内容挤压问题

uniapp 解决键盘弹出页面内容挤压问题_第1张图片
page.json 配置
加 “app-plus”: {
“softinputMode”: “adjustResize”
}

	{
		"path": "pages/jxx/xx",
		"style": {
			"navigationBarTitleText": "贺卡DIY",
			"enablePullDownRefresh": false,
			"app-plus": {
						"softinputMode": "adjustResize"
			}
		}
	},

背景图不要设置成高100%,实时监控窗口高度给背景图高赋值。

<view class="bgbg" :style="{height: screenHeight == 0 ? '100%':screenHeight+'px'}"></view>

created() {
			this.screenHeight = uni.getSystemInfoSync().windowHeight; 
},

ok完美解决。

你可能感兴趣的:(uni-app)