C端小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

25 řádky
943 B

  1. <view class='headerbg'>
  2. <image src="./../../assets/img/myspeacial.jpg" 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}}">
  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='./../../assets/img/telicon.png' mode='widthFix'></image>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>