You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.7 KiB
58 lines
1.7 KiB
2 years ago
|
<view class="m-list"
|
||
|
id="root"
|
||
|
hidden="{{ hidden }}">
|
||
|
<view id="wrap" class="wrap a-fade-in-up">
|
||
|
<view class="title">
|
||
|
<view class="row">
|
||
|
<view class="title-hint a-fade-in f-fl">消息接收人列表</view>
|
||
|
<view class="title-ico f-fr a-fade-in" bind:tap="cancel">
|
||
|
<image class="title-ico-close"
|
||
|
mode="aspectFit"
|
||
|
src="/assets/images/common/close.png" />
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view class="wrap2">
|
||
|
<view wx:if="{{ loading }}" class="m-hint">加载中……</view>
|
||
|
|
||
|
<view wx:if="{{unReadList.length > 0}}">
|
||
|
<view class="list-title">
|
||
|
<text>{{unReadList.length}}人未读</text>
|
||
|
</view>
|
||
|
|
||
|
<view>
|
||
|
<view class="item" wx:for="{{unReadList}}">
|
||
|
<view class="item-wrap">
|
||
|
<view class="f-fl avatar">
|
||
|
<image mode="widthFix"
|
||
|
src="{{item.userHeadPhoto}}"></image>
|
||
|
</view>
|
||
|
|
||
|
<view class="f-fl name">{{ item.userName }}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view wx:if="{{readList.length > 0}}">
|
||
|
<view class="list-title">
|
||
|
<text>{{readList.length}}人已读</text>
|
||
|
</view>
|
||
|
|
||
|
<view>
|
||
|
<view class="item" wx:for="{{readList}}">
|
||
|
<view class="item-wrap">
|
||
|
<view class="f-fl avatar">
|
||
|
<image mode="widthFix"
|
||
|
src="{{item.userHeadPhoto}}"></image>
|
||
|
</view>
|
||
|
|
||
|
<view class="f-fl name">{{ item.userName }}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|