index.wxml 978 B

123456789101112131415161718
  1. <view bindtap="chooseCommunity" class="community-item i-class" data-val="{{item}}">
  2. <view class="group-img">
  3. <image class="group-head" src="{{item.headImg||item.disUserHeadImg}}" wx:if="{{item.headImg||item.disUserHeadImg}}"></image>
  4. <image class="group-head" src="../../images/head-bitmap.png" wx:else></image>
  5. <text class="rest" wx:if="{{item.rest==1}}">休息中</text>
  6. </view>
  7. <view class="item-center">
  8. <view class="community-title">
  9. <text class='span'>{{item.communityName}}</text>
  10. <text class='em' wx:if="{{!isOld&&item.distance}}" style="color:{{skin.color}}">距离{{item.distance}}</text>
  11. </view>
  12. <view class="group-master">
  13. {{groupInfo.owner_name}}:{{item.realName||item.disUserName}}
  14. <image class="right-arrow" src="../../images/community-right-arrow.png"></image>
  15. </view>
  16. <view class="community-address" wx:if="{{hiddenDetails==0}}">{{item.fullAddress||item.communityAddress}}</view>
  17. </view>
  18. </view>