2019-10-21 13:20:14 +09:00
|
|
|
<div class="list-item">
|
|
|
|
<dl class="item-default">
|
|
|
|
<dt>
|
2019-10-21 15:03:27 +09:00
|
|
|
<!-- <img class="thumbnail" /> -->
|
|
|
|
<ucap-ui-imaage
|
|
|
|
[imageClass]="'thumbnail'"
|
|
|
|
[base]="sessionVerinfo.profileRoot"
|
|
|
|
[path]="imagePath"
|
|
|
|
[default]="defaultPath"
|
|
|
|
></ucap-ui-imaage>
|
2019-10-21 13:20:14 +09:00
|
|
|
</dt>
|
|
|
|
<dd class="info">
|
|
|
|
<div class="detail">
|
|
|
|
<div class="room-name">
|
|
|
|
<div class="name">{{ getRoomName(roomInfo) }}</div>
|
2019-10-21 15:03:27 +09:00
|
|
|
<div class="num" *ngIf="roomInfo.roomType === RoomType.Multi">
|
|
|
|
{{ roomInfo.joinUserCount }}명
|
2019-10-21 13:20:14 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="room-msg">{{ finalEventMessage }}</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="date">{{ roomInfo.finalEventDate }}</div>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
2019-10-21 15:03:27 +09:00
|
|
|
<!-- <span class="noti">1</span> -->
|
|
|
|
<span
|
|
|
|
class="notiBadge"
|
|
|
|
*ngIf="roomInfo.noReadCnt > 0"
|
|
|
|
[matBadgeHidden]="roomInfo.noReadCnt === 0"
|
|
|
|
[matBadge]="roomInfo.noReadCnt"
|
|
|
|
matBadgeOverlap="true"
|
|
|
|
matBadgeColor="accent"
|
|
|
|
matBadgePosition="below after"
|
|
|
|
>
|
|
|
|
</span>
|
2019-10-10 15:50:50 +09:00
|
|
|
</div>
|