设置:adjust-position="true"也不行
如果subNVues的style的height不设置(默认100%)那么就能正常,但是这样就会覆盖该页面所有位置,同时cursor-spacing也是失效的(cursor-spacing是华为meta30pro失效,iphone6正常)
pages.json
局部代码
{
"path": "pages/component/input/input",
"style": {
"navigationBarTitleText": "input",
"app-plus": {
"softinputNavBar": "none",
"subNVues": [{
"id": "chat-input",
"path": "pages/component/input/subNVue/sub",
"style": {
"position": "dock",
"dock": "bottom",
"width": "100%",
"height": "50px",
"background": "transparent"
}
}]
}
}
},
sub.nvue
<template>
<view class="subNVue-wrap">
<view class="input-box">
<input class="uni-input" :adjust-position="true" placeholder="demo subNVue" />
</view>
</view>
</template>
<script>
</script>
<style>
.subNVue-wrap {
padding: 10rpx;
background-color: #0066CC;
}
.input-box {
background-color: #09BB07;
}
.uni-input {
background-color: #fff;
}
</style>
就使用uniapp演示修改一下就可以看到
Hbx 2.6.1.20200226
3 个回复
bzliukai - 公司承接uni-app外包开发,商务VX:bzliukai,商务QQ:526288196
同样的问题。
聊天窗口页,pages.json配置了subNVues
结果 底部 textarea 获取焦点 键盘无法弹出
@DCloud_heavensoft
大图APP - 金刚狼前端
解决了吗
大图APP - 金刚狼前端
解决了吗