Showing
1 changed file
with
3 additions
and
1 deletions
| @@ -102,12 +102,14 @@ export struct TabLiveComponent { | @@ -102,12 +102,14 @@ export struct TabLiveComponent { | ||
| 102 | this.pageModel.hasMore = true; | 102 | this.pageModel.hasMore = true; |
| 103 | } else { | 103 | } else { |
| 104 | this.pageModel.hasMore = false; | 104 | this.pageModel.hasMore = false; |
| 105 | - if (StringUtils.isNotEmpty(this.liveDetailsBean.oldNewsId) | 105 | + if (StringUtils.isEmpty(this.liveDetailsBean.oldNewsId) |
| 106 | && this.liveDetailsBean | 106 | && this.liveDetailsBean |
| 107 | && this.liveDetailsBean.liveInfo.liveState != 'wait') { | 107 | && this.liveDetailsBean.liveInfo.liveState != 'wait') { |
| 108 | let liveRoomItemBeanTemp: LiveRoomItemBean = {} as LiveRoomItemBean | 108 | let liveRoomItemBeanTemp: LiveRoomItemBean = {} as LiveRoomItemBean |
| 109 | liveRoomItemBeanTemp.text = this.liveDetailsBean.newIntroduction | 109 | liveRoomItemBeanTemp.text = this.liveDetailsBean.newIntroduction |
| 110 | liveRoomItemBeanTemp.senderUserName = '人民日报主持人' | 110 | liveRoomItemBeanTemp.senderUserName = '人民日报主持人' |
| 111 | + liveRoomItemBeanTemp.pictureUrls=[] | ||
| 112 | + liveRoomItemBeanTemp.pictureUrls.push(this.liveDetailsBean?.fullColumnImgUrls[0]?.url) | ||
| 111 | this.liveList.push(liveRoomItemBeanTemp) | 113 | this.liveList.push(liveRoomItemBeanTemp) |
| 112 | } | 114 | } |
| 113 | } | 115 | } |
-
Please register or login to post a comment