Showing
1 changed file
with
6 additions
and
4 deletions
| @@ -104,10 +104,12 @@ export struct CardMediaInfo { | @@ -104,10 +104,12 @@ export struct CardMediaInfo { | ||
| 104 | Text('已结束') | 104 | Text('已结束') |
| 105 | .mediaText() | 105 | .mediaText() |
| 106 | } | 106 | } |
| 107 | - Text(' | ') | ||
| 108 | - .mediaText() | ||
| 109 | - Text(`${this.handlerNum(this.joinPeopleNum.toString())}人参加`) | ||
| 110 | - .mediaText() | 107 | + if (!!this.joinPeopleNum) { |
| 108 | + Text(' | ') | ||
| 109 | + .mediaText() | ||
| 110 | + Text(`${this.handlerNum(this.joinPeopleNum.toString())}人参加`) | ||
| 111 | + .mediaText() | ||
| 112 | + } | ||
| 111 | // } else if (this.contentDTO?.liveInfo?.liveState === 'end' && this.contentDTO?.liveInfo | 113 | // } else if (this.contentDTO?.liveInfo?.liveState === 'end' && this.contentDTO?.liveInfo |
| 112 | // ?.replayUri) { | 114 | // ?.replayUri) { |
| 113 | // // Image($r('app.media.card_live')) | 115 | // // Image($r('app.media.card_live')) |
-
Please register or login to post a comment