2025-06-06 15:07:26 +08:00

31 lines
1.7 KiB
Plaintext

<view class="container" bind:tap="headerEnterClick2" data-id="{{item.community_id}}" data-name="{{item.name}}">
<image class="left_logo" src="{{picUrl}}{{item.pic}}" mode="aspectFill"/>
<view class="right {{isLast && 'no_bottom'}}">
<view class="header">
<view class="title">{{item.name}}</view>
<view class="distance" wx:if="{{item.distance}}">{{item.distance}}</view>
</view>
<view class="center">物业公司:{{item.shop.shop_name}}</view>
<view class="address">
<image class="address_icon" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Group_50.png" mode=""/>
<view class="text-container">
<text>{{item.addr}}</text>
</view>
</view>
<view class="bottom">
<view class="bottom_left">
<view class="btn" catch:tap="handleOptionClick">
<image class="btn_icon" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Send.png" mode="aspectFill"/>
导航
</view>
<view class="btn mobile" catch:tap="headlePhoneClick">
<image class="btn_icon" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Phone-telephone.png" mode=""/>
电话
</view>
</view>
<view class="bottom_right" catch:tap="headerEnterClick" wx:if="{{joinType == 1}}">前往预定</view>
<view class="bottom_right" catch:tap="headerEnterClick" wx:if="{{joinType == 2}}">进入小区</view>
<view class="bottom_right" catch:tap="chooseClick" wx:if="{{joinType == 3}}" data-id="{{item.community_id}}" data-name="{{item.name}}">选择小区</view>
</view>
</view>
</view>