exchangeRecord.axml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <view>
  2. <scroll-view class="scroll" a:if="{{list.length>0}}" scroll-y="{{true}}" onScrollToLower="onScrollToLower" style="padding:20rpx">
  3. <view a:for="{{list}}" style="padding:20rpx;box-shadow: 0rpx 0rpx 10rpx #ccc;margin-bottom:20rpx">
  4. <view class="flex-box-ce" style="border-bottom:1px solid #f1f1f1;padding-bottom:20rpx">
  5. <text class="flex-1 font-flex-word" style="padding-right:20rpx;">商品明细</text>
  6. <text class="yellow" style="width:100rpx">待发放</text>
  7. </view>
  8. <view class="flex-box-ce" style="padding:20rpx 0">
  9. <image src="../../../image/money.jpg" style="width:200rpx;height:200rpx;border-radius: 10rpx;" />
  10. <view class="flex-box-v flex-1" style="height:200rpx;padding-top:20rpx;padding-left:20rpx;">
  11. <view style="margin-bottom:30rpx"> 单价:20功勋点</view>
  12. <view class="fontColorF" style="margin-bottom:30rpx"> 数量:1</view>
  13. <view > 总价:20功勋点</view>
  14. </view>
  15. <image src="../../../image/money.jpg" style="width:70rpx;height:70rpx" catchTap="showText"/>
  16. </view>
  17. <view class="fontColorF" style="font-size:28rpx">发布于 2015-12-23 14:14</view>
  18. </view>
  19. </scroll-view>
  20. <no-data a:if="{{list.length==0}}" />
  21. <view a:if="{{isBh}}" class="windows" content="还没有积分事件">
  22. <view class="windows-box">
  23. <view class="windows-title">兑换码</view>
  24. <view class="flex-box-ce flex-center-center" style="margin-bottom:20rpx;">
  25. <text style="padding-right:20rpx;font-size:36rpx">285 5451 654</text>
  26. <button size="mini" open-type="share" catchTap="handleCopy">复制</button>
  27. </view>
  28. <view style="text-align:center;padding:20rpx 0;">
  29. <image src="../../../image/money.jpg" style="width:260rpx;height:260rpx;border-radius: 10rpx" />
  30. </view>
  31. <view class="windows-content">提供兑换码或二维码给奖品兑换负责人即可</view>
  32. <view class="windows-btn flex-box flex-v-ce">
  33. <view class="flex-1" catchTap="showText">我知道了</view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>