<view>
|
<view class="app_header">
|
<image class="location" src="../../static/icon/location.png" mode="widthFix"></image>
|
<view class="add">{{ address }}</view>
|
<view bindtap="selAddress" class="right">
|
<image src="../../static/icon/ic_dingwei@2x.png" mode="widthFix"></image>
|
<text class="primary">重新定位</text>
|
</view>
|
</view>
|
<view class="main_content">
|
<view class="app_title">AI为您推荐以下门店:</view>
|
<view class="shops">
|
<view class="shop" wx:for="{{ shopList }}">
|
<view class="header">
|
<view class="left">
|
<view class="title" data-id="{{ item.id }}" bindtap="handleDetail">{{ item.name }}</view>
|
<view class="address" data-id="{{ item.id }}" bindtap="handleDetail">
|
<text wx:if="{{ item.distanceStr }}">{{ item.distanceStr }} | {{ item.address || '' }}</text>
|
<text wx:else>--</text>
|
<image src="../../static/icon/arrow_right.png" mode="widthFix"></image>
|
</view>
|
</view>
|
<view class="right">
|
<image data-phone="{{ item.phone }}" bindtap="makePhone" class="phone" src="../../static/icon/phone.png" mode="widthFix"></image>
|
<view>电话</view>
|
</view>
|
</view>
|
<scroll-view scroll-x style="width: 640rpx">
|
<view class="user_list">
|
<view bindtap="userDetail" data-id="{{ item.iamId }}" class="item" wx:for="{{ item.usersList }}" wx:for-item="user">
|
<view class="info">
|
<image class="avatar" src="{{ user.imgurlFull }}" mode="widthFix"></image>
|
<view class="text">
|
<view class="name">{{ user.name }}</view>
|
<view class="ex" wx:if="{{user.jobDate}}">{{ user.jobDate }}年经验</view>
|
</view>
|
</view>
|
<view class="btn">联系TA</view>
|
</view>
|
</view>
|
</scroll-view>
|
</view>
|
</view>
|
</view>
|
</view>
|