- 当前 Bug 的表现(可附上截图)
cover-view内容在加了postion属性后不显示,在模拟器和真机上都不显示。
<cover-view>Hello World</cover-view>
CSS代码:
position: absolute;
top: 100rpx;
left: 100rpx;
此时在模拟器和真机上都不显示;
当加入z-index: 1000;
此时在模拟器上会显示,但在真机上依然不显示。
- 预期表现
覆盖在map组件上显示
- 复现路径
- 提供一个最简复现 Demo
<cover-view>Hello World</cover-view>
<map></map>
真机仍然不显示啊
不能在里面加view吗
这样
<cover-view>
<view>Hello World</view>
</cover-view>
不能的,cover-view里只能嵌套cover-view
控制台应该已经给了你提示的?
收到
你好,问题未复现。请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
抱歉已经解决了哈,是我自己笨了哈哈哈,把cover-view放到map里就成功了。
把cover-view 写在map里
原来是这样哈哈,谢谢!
<map id="testmap" class="map_size" longitude="{{longitude}}" latitude="{{latitude}}" scale="{{scale}}" setting="{{setting}}" bindupdated="bindupdated" bindregionchange="regionchange" bindmarkertap="markertap" show-location="true" markers="{{markers}}" polyline="{{polyline}}"
scale="{{scale}}">
<cover-view class="cross" hidden="{{!creating}}"></cover-view>
</map>