<view class="app">
|
<!-- <view class="bg_wrap"></view> -->
|
<image class="bg_wrap" src="../../static/images/mendian_bg.png" mode="widthFix"></image>
|
<view class="navback" style="padding-top: {{ clientTop }}px;height: {{clientHeight + clientTop}}px;">
|
<van-icon bindtap="navback" name="arrow-left" />
|
</view>
|
<view class="container">
|
<view class="header">
|
<view class="name">{{ info.name }}</view>
|
<view wx:if="{{ info.seqNameList && info.seqNameList.length > 0 }}" class="desc">
|
<block wx:for="{{info.seqNameList}}">
|
<text>{{ item }}</text>
|
<text wx:if="{{ index != info.seqNameList.length - 1 }}">、</text>
|
</block>
|
</view>
|
<view class="addr">{{ info.distanceStr || '--' }}|{{ info.address || '--' }}</view>
|
</view>
|
<view class="main_content">
|
<view class="title">门店导购</view>
|
<scroll-view scroll-y class="list">
|
<view class="item" wx:for="{{ info.usersList }}">
|
<image data-id="{{ item.iamId }}" bindtap="handleDetail" src="{{ item.imgurlFull ? item.imgurlFull : '../../static/images/default_avatar.png' }}" class="avatar"></image>
|
<view data-id="{{ item.iamId }}" bindtap="handleDetail" class="content">
|
<view class="name">{{ item.name }}</view>
|
<view class="desc">导购|{{ item.jobDate || 5}}年经验</view>
|
</view>
|
<view data-phone="{{ item.phone }}" bindtap="callPhone" class="btn">联系TA</view>
|
</view>
|
<view wx:if="{{ info.usersList.length == 0 }}" class="empty_wrap">
|
<image class="default_empty" src="../../static/images/default_empty.png"></image>
|
</view>
|
<view class="empty"></view>
|
</scroll-view>
|
</view>
|
</view>
|
<!-- footer -->
|
<view class="footer" style="padding-bottom: {{bottomLift + 6}}px;">
|
<view bindtap="handleNavigation" class="btn">
|
<image src="../../static/icon/mendian_ic_daohang@2x.png" mode="widthFix"></image>
|
<view>导航</view>
|
</view>
|
<view bindtap="makePhone" class="btn phone">
|
<image src="../../static/icon/call.png" mode="widthFix"></image>
|
<view>门店电话</view>
|
</view>
|
</view>
|
</view>
|