EP-WachatApp/eaterplanet_ecommerce/components/community-item/index.wxml

18 lines
978 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view bindtap="chooseCommunity" class="community-item i-class" data-val="{{item}}">
<view class="group-img">
<image class="group-head" src="{{item.headImg||item.disUserHeadImg}}" wx:if="{{item.headImg||item.disUserHeadImg}}"></image>
<image class="group-head" src="../../images/head-bitmap.png" wx:else></image>
<text class="rest" wx:if="{{item.rest==1}}">休息中</text>
</view>
<view class="item-center">
<view class="community-title">
<text class='span'>{{item.communityName}}</text>
<text class='em' wx:if="{{!isOld&&item.distance}}" style="color:{{skin.color}}">距离{{item.distance}}</text>
</view>
<view class="group-master">
{{groupInfo.owner_name}}{{item.realName||item.disUserName}}
<image class="right-arrow" src="../../images/community-right-arrow.png"></image>
</view>
<view class="community-address" wx:if="{{hiddenDetails==0}}">{{item.fullAddress||item.communityAddress}}</view>
</view>
</view>