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.

46 rivejä
1.5 KiB

  1. <view wx:if="{{showPage}}" class='notes'>
  2. <!-- 券的详情页面 -->
  3. <view class='head'>
  4. <view class='titles'>{{cardDetail.title}}</view>
  5. <view class='titles clearfix'>
  6. <text class='fl'>{{cardDetail.expiredTime}}</text>
  7. <text class='fr'>余额:¥{{cardDetail.remainingAmount/100}}</text>
  8. </view>
  9. </view>
  10. <view class='notess'>
  11. <view>
  12. <text class='title'>购买须知</text>
  13. </view>
  14. <view>
  15. <text><text class='spot'></text>{{cardDetail.remark}}</text>
  16. </view>
  17. </view>
  18. <view>
  19. <text class='title'>适用门店:</text>
  20. <view class='posi'>
  21. <view class='posi_logo' wx:for="{{cardDetail.merchantVoList}}" wx:key="index">
  22. <view>
  23. <image src='{{item.merchantImgUrl}}'></image>
  24. </view>
  25. <view>
  26. <text>{{item.merchantName}}</text>
  27. <text>{{item.addr}}{{item.buildingName}}{{item.floorName}}</text>
  28. </view>
  29. <image bindtap='phone' data-merchantLinkPhone='{{item.merchantLinkPhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  30. </view>
  31. </view>
  32. </view>
  33. <view>
  34. <text wx:if="{{data.length>0}}" class="title">交易明细:</text>
  35. <view wx:for="{{data}}" wx:key="{{index}}">
  36. <view class='record clearfix record1'>
  37. <text>{{item.merchantName}}</text>
  38. <text>-{{item.payment/100}}元</text>
  39. </view>
  40. <view class='record clearfix record2'>
  41. <text>{{item.updateDate}}</text>
  42. <text>余额{{item.cardRemainAmount/100}}元</text>
  43. </view>
  44. </view>
  45. </view>
  46. </view>