陈剑华

fix: 20641 人民号关注列表,左右两侧的边距太小

... ... @@ -65,11 +65,6 @@ export struct CardParser {
// Text(this.contentDTO.newsTitle)
this.contentBuilder(this.contentDTO);
}
.margin({
left: this.compDTO.compStyle === CompStyle.Zh_Single_Row_04 ? 0 : 6,
right: (this.compDTO.compStyle === CompStyle.Zh_Single_Row_05 || this.compDTO.compStyle === CompStyle.Zh_Single_Row_02 ||
this.compDTO.compStyle === CompStyle.Zh_Single_Row_04) ? 0 : 6
})
}
@Builder
... ...
... ... @@ -266,6 +266,9 @@ export struct PeopleShipMainComponent {
ListItem() {
Column(){
CardParser({ compDTO: new CompDTO, contentDTO: item })
.margin({
left: 6, right: 6
})
// Divider().strokeWidth(1).color('#f5f5f5').padding({ left: 16, right: 16 })
}.width('100%')
... ...