wangliang_wd

Merge branch 'main' of http://192.168.1.42/developOne/harmonyPool into main

* 'main' of http://192.168.1.42/developOne/harmonyPool:
  fix: 地方精选卡ui修改
  fix |> temp
  fix: 兴趣选择卡ui修改
... ... @@ -78,7 +78,8 @@ export struct CompParser {
}
.margin({
left: 6,
right: (this.compDTO.compStyle === CompStyle.Zh_Single_Row_05 || this.compDTO.compStyle === CompStyle.Zh_Single_Row_02) ? 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
})
}
... ...
... ... @@ -56,7 +56,7 @@ export struct Card5Component {
)
.height(this.loadImg ? '' : 114)
.autoResize(true)
if (!!this.titleShowPolicy || this.titleShowPolicy === null || this.titleShowPolicy == '' ) {
if (!!this.titleShowPolicy || this.titleShowPolicy === null) {
Row()
.borderRadius(
{
... ...
... ... @@ -132,15 +132,18 @@ export struct ZhSingleColumn09 {
.width('100%')
.height('100%')
.borderRadius(3)
Row(){}
.width('100%')
.height('100%')
.backgroundColor('rgba(0, 0, 0, 1)')
.opacity(0.4)
.borderRadius(3)
Text(item.newsTitle)
.width('100%')
.height('100%')
.fontSize(14)
.textAlign(TextAlign.Center)
.fontColor(0xffffff)
.backgroundColor('rgba(0, 0, 0, 1)')
.opacity(0.4)
.borderRadius(3)
Image($r('app.media.icon_selected'))
.width(14)
.height(14)
... ...