12345678910111213141516171819202122232425262728 |
- <wxs src="../../commonWxs/format.wxs" module="format" />
- <view class='my-concern'>
- <view class="concern-center">
- <view class='concern-info' wx:for="{{ fanList }}" wx:key="{{ index }}" bindtap='toUserDetails' data-uid='{{ item.user.uid }}' data-fanId='{{ item.fans.fanId }}'>
- <view class='avatar-box'>
- <image class='avatar-image' src="{{ item.user.avatar }}" />
- <view class="user-profession">{{item.user.profession}}</view>
- </view>
- <view class="avatar-name">
- <text class="nickName">{{ item.user.wechatName }}</text>
- <text class="time">{{ format.formatDate(item.fans.gmtCreated) }}</text>
- </view>
- <view class="avatar-follow" wx:if='{{ item.isEachOther }}'>
- <view class='avatar-img'>
- <image class='avatar-images' src="../../../static/image/concernback.png" />
- </view>
- <view class="follow-status">相互关注</view>
- </view>
- <view class="avatar-follow" wx:elif='{{ item.followBack === item.followBack || item.isEachOther }}'>
- <view class='avatar-img'>
- <image class='avatar-images' src="../../../static/image/concerned.png" />
- </view>
- <view class="follow-status">已关注</view>
- </view>
- </view>
- </view>
- <myPlacerholder class="placerholder" imageShow="{{imageShow}}" line1="{{line1}}" line2="{{line2}}" wx:if="{{fanList.length <= 1}}" />
- </view>
|