cover-view渲染文字消失
- 当前 Bug 的表现(可附上截图)
cover-view 渲染列表时文字消失,但是点击事件都在,setData是成功的,就是没有显示文字及样式,并且渲染的速度过慢。
- 预期表现
渲染个数5个以上列表时显示正常的文字以及样式
-
复现路径
-
提供一个最简复现 Demo
cover-view 渲染列表时文字消失,但是点击事件都在,setData是成功的,就是没有显示文字及样式,并且渲染的速度过慢。
渲染个数5个以上列表时显示正常的文字以及样式
复现路径
提供一个最简复现 Demo
你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
<cover-view data-id="{{item.jobId}}" bindtap="goToJob" class="job-item-box" wx:for="{{jobList}}" wx:key="{{index}}" url="/pages/job/jobDetails/jobDetails?jobId={{item.jobId}}">
<cover-view class="job-item">
<cover-view class="title-00-32 job-top">
<cover-view class="job-title">{{item.title}}</cover-view>
<cover-view class="tag">
<block wx:for="{{item.jobTagNative}}" wx:key="{{jobIdx}}" wx:for-item="jobTags" wx:for-index="jobIdx">
<cover-view class="tag-item tagC{{filterLimit.tag('style',jobTags.tagType,item.entryReward)}}">
{{filterLimit.tag('value',jobTags.tagType,item.entryReward,jobTags.tagName)}}
</cover-view>
</block>
</cover-view>
</cover-view>
<cover-view class="money">
<cover-view class="font-weight-700 desc">{{item.wagesMin}}-{{item.wagesMax}}元/月</cover-view>
</cover-view>
<cover-view class="welfare">
<cover-view class="welfare-item-map" wx:for="{{item.postWelfare}}" wx:for-index="idx"
wx:for-item="postWelfare" wx:key="{{idx}}">
<cover-view>{{postWelfare}}</cover-view>
<cover-view class="welfare-divide" >{{idx !== item.postWelfare.length - 1 ? '|' : ''}}</cover-view>
</cover-view>
</cover-view>
<cover-view class="company-address">
<cover-view class="company-detail">
<cover-view class="com-name" style="margin-right:16rpx">{{item.comRecruitName}}</cover-view>
</cover-view>
</cover-view>
</cover-view>
</cover-view>