陈剑华

fix: 18384 搜索结果页-点击展开更多相似_未展开状态,卡片上方分割线不对

... ... @@ -33,11 +33,6 @@ export struct MoreComponent {
} else {
Column() {
Divider()
.width('100%')
.color($r('app.color.color_F5F5F5'))
.strokeWidth(5)
Row() {
Text('点击展开更多相似')
.fontSize(16)
... ...
... ... @@ -291,6 +291,12 @@ export struct SearchResultContentComponent {
Divider().strokeWidth(5).color('#f5f5f5').padding({ left: 0, right: 0 })
}
} else {
if(this.data.get(index + 1).sameContentListSize > 0) {
Divider()
.width('100%')
.color($r('app.color.color_F5F5F5'))
.strokeWidth(4)
}
CardParser({compDTO:new CompDTO, contentDTO: item })
}
if (index != this.data.totalCount() - 1) {
... ...