wzy
2021-11-11 3fd5c0a8919c5b31efb61860aeffaf932236e4a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<view class="shopItem" wx:for="{{shopList}}"  wx:key="key">
 
  <view class="head" bindtap="chooseThis" data-index="{{index}}" >
    <image mode="aspectFit" class="shopPhoto" src="{{item.shopImag}}"></image>
    <view class="info">
      <view class="shopName">{{item.shopName}}({{item.shopShortName}})</view>
      <view class="adds">{{item.shopAddr}}</view>
      <view class="adds">距离{{item.distance}}km</view>
    </view>
  </view>
  <view class="footInfo">
    <view class="tel">
      <text class="iconfont icondianhua "></text>
      <text bindtap="call" data-tel="{{item.shopTel}}" >{{item.shopTel}}</text>
    </view>
    <view class="addnav">
      <text class="iconfont iconlocation "></text>
      <text bindtap="openLocation" data-index="{{index}}" >导航去这里</text>
    </view>
  </view>
 
</view>