陈剑华

fix: 20109 大专题卡-专题标题名称应最多展示2行,超过2行省略展示

... ... @@ -101,7 +101,11 @@ export struct Card10Component {
.fontSize($r('app.float.font_size_18'))
.fontWeight(FontWeight.Normal)
.lineHeight(25)
.maxLines(this.contentDTO.appStyle === CompStyle.Card_09 ? 2 : 1)
.maxLines(
router.getState().name === 'MyCollectionListPage'
? this.contentDTO.appStyle === CompStyle.Card_09 ? 2 : 1
: 2
)
.textOverflow({ overflow: TextOverflow.Ellipsis })
.margin({ bottom: 8 })
.onClick((event: ClickEvent) => {
... ...