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.

40 line
1.8 KiB

  1. <!-- <button class='goback' bindtap='goback'><image src='{{wmhome}}' mode="widthFix"></image></button> -->
  2. <navbar back home text="我的特权" background='#FD832D' color="#fff"></navbar>
  3. <view style="margin-top:{{navigationBarHeight+30}}px!important;" class='codeBox'>
  4. <view class='code' >
  5. <view class="canWrap">
  6. <canvas canvas-id="mycanvas2" style="width: 1200rpx; height: 800rpx;" />
  7. </view>
  8. <image src="{{tempFilePath}}" mode="aspectFit" />
  9. <view class='memCode'><text>会员码:</text><text class="memNum">{{memberId}}</text></view>
  10. <view class='con'>
  11. <view class="title">会员等级为<text class='level'>[{{level}}]</text>对应门店的优惠折扣</view>
  12. </view>
  13. </view>
  14. <view class='cards clearfix'>
  15. <view class='card' wx:for="{{discountMerchantList}}" wx:key="{{index}}" wx:if="{{discountMerchantList.length>0}}">
  16. <view class='txt01'>
  17. <view class="triangle">
  18. <text><i>></i></text>
  19. </view>
  20. <view class='discount'>
  21. <text style='display:inline-block;'>{{item.discount/10}}</text>折</view>
  22. <text class='tit'>{{item.merchantName}}</text>
  23. <view class='clearfix footer'>
  24. <view class='fl' style='margin-top:-30rpx;margin-left:10rpx;'>
  25. <view class='building' wx:for="{{item.shopVoList}}" wx:key="{{index}}" wx:for-item="list">
  26. {{list.buildingName}}{{list.floorName}}
  27. </view>
  28. </view>
  29. <view class='fr' wx:if="{{item.linkLinePhone}}" bindtap='phone' data-merchantLinkPhone='{{item.linkLinePhone}}'>
  30. <image class="fr" src='{{teliconUrl}}' mode='widthFix'></image>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view class='none' wx:if="{{discountMerchantList.length==0}}">
  36. 此等级暂未开放折扣,敬请期待!
  37. </view>
  38. </view>
  39. </view>