C端小程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
954 B

  1. <view class='headerbg'>
  2. <image src="{{myspeacialUrl}}" mode='widthFix'></image>
  3. </view>
  4. <view class='con'>
  5. <view class="title">以下为商城会员对应门店的优惠折扣</view>
  6. </view>
  7. <view class='cards clearfix'>
  8. <view class='card' wx:for="{{discountMerchantList}}" wx:key="{{index}}" wx:if="{{item.vipDiscountRate1/1000!=10}}">
  9. <view class='txt01'>
  10. <view class="triangle">
  11. <text><i>></i></text>
  12. </view>
  13. <view class='discount'>
  14. <text style='display:inline-block;'>{{item.vipDiscountRate1/1000}}</text>折</view>
  15. <text class='tit'>{{item.merchantName}}</text>
  16. <view class='clearfix footer'>
  17. <text class='fl'>{{item.buildingName}}{{item.floorName}}</text>
  18. <view class='fr' bindtap='phone' data-merchantLinkPhone='{{item.merchantLinkPhone}}'>
  19. <image class="fr" src='{{teliconUrl}}' mode='widthFix'></image>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>