全局添加
在uni-app的manifest.json配置文件中,可配置设置项,在里面添加以下代码

{
"app-plus":{
  "softinput" : {
            "mode" : "adjustPan"
        }
  }
}

局部添加
在 pages.json添加

{
			"path" : "pages/home/home",
			"style" : 
			{
				"navigationBarTitleText" : "",
				"enablePullDownRefresh": false,
				"navigationStyle": "custom",
				"app-plus": {
					"softinputMode": "adjustResize",
					"bounce": "none",
					"softinput" : {
					    "mode" : "adjustPan"
					}
				},
				"navigationBarTextStyle": "black"
			}
		},

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部