<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> 
 | 
  
 |