mp-cell标签使用wx:if 后分割线异常
[图片] 如图第三项少了(border-top)分割线
查看mp-cells源码发现是这样添加添加weui-cell_wxss的。在mp-cell使用wx:if后,firstItem并不是第一个mp-cell。
../cell/cell': {
type: 'descendant',
linked(target) {
if (!this.data.firstItem) {
this.data.firstItem = target
}
if (target !== this.data.firstItem) {
target.setOuterClass('weui-cell_wxss')
}
}
}