k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<view>
  <!-- <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 class="desc">全屋定制、整体厨房、木门墙板、卫阳定制</view> -->
      <view class="addr">2.4|{{ info.address || '--' }}</view>
    </view>
    <view class="main_content">
      <view class="title">门店导购</view>
      <view class="list">
        <view class="item" data-id="{{ item.iamId }}" bindtap="handleDetail" wx:for="{{ info.usersList }}">
          <image src="{{ item.imgurlFull ? item.imgurlFull : '../../static/images/default_avatar.png' }}" class="avatar"></image>
          <view class="content">
            <view class="name">{{ item.name }}</view>
            <view class="desc">导购|{{ info.jobDate || '-'}}年经验</view>
          </view>
          <view class="btn">联系TA</view>
        </view>
      </view>
    </view>
  </view>
  <!-- footer -->
  <view class="footer" style="bottom: {{bottomLift}}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>