- 当前 Bug 的表现(可附上截图)
iphone8p微信7.0.4版本无法操作小程序的功能
如图所示位置无法点开
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
用的是taro 写的,出问题的页面按钮的代码如下:
<View class=“index-map-container”>
<Button
className=“btn”
plain=“true”
open-type=“getUserInfo”
lang=“zh_CN”
onGetuserinfo={this.handleMenu}
/>
<MarkerInfoWindow />
{!!isShow && <SiderMenu />}
{/* {!!showMarkerInfo && } */}
</View>
看了页面的结构发现按钮里面有个cover-view,然后它没有高度没有继承父级,手动加上后就能点击按钮了
之前这里用css 给了
button wx-cover-view {
width: 100% !important;
height: 100% !important;
}
现在不能用标签选择器就不知道怎么处理了