C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
982 B

  1. <view class='applyshop'>适用门店</view>
  2. <view class='posi' style='overflow:{{hidden}};height:{{height}}'>
  3. <view class='posi_logo' wx:for="{{merchantVoList}}" wx:key="index">
  4. <view bindtap='gotoDetail' data-id='{{item.id}}'>
  5. <image src='{{item.merchantImgUrl}}'></image>
  6. </view>
  7. <view bindtap='gotoDetail' data-id='{{item.id}}'>
  8. <view class='name'>{{item.merchantName}}</view>
  9. <view class='shopVoList'>
  10. <view wx:for="{{item.shopVoList}}" wx:key="index" wx:for-item="itemName">
  11. <text>{{itemName.buildingName}}{{itemName.floorName}}--{{itemName.shopNumber}}</text>
  12. <text class='douhao' wx:if="{{item.shopVoList.length>1}}">,</text>
  13. </view>
  14. </view>
  15. </view>
  16. <image wx:if="{{item.linkLinePhone}}" bindtap='phone' data-merchantLinkPhone='{{item.linkLinePhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  17. </view>
  18. </view>
  19. <view class='bottom' bindtap='more' wx:if="{{showMore}}">{{more}}</view>