recordPrize.wxml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!--pages/luckDraw/recordPrize.wxml-->
  2. <view class="personal">
  3. <!-- 中奖记录 -->
  4. <view class="luck-draw-theme" catchtap="turnPrize">
  5. <button class="luck-draw-cz" wx:if="{{!isLogin}}" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">请登录</button>
  6. <!-- 奖品 -->
  7. <view class="luck-draw-content" wx:for="{{userDrawItemList}}" wx:key="index" data-id="{{item.id}}">
  8. <view class="luck-draw-words">
  9. <view class="luck-draw-discount1">
  10. <image class="luck-draw-zkz5" src="{{item.fullGoodsSmallImage}}" />
  11. </view>
  12. <view class="luck-draw-discount2">
  13. <view class="luck-draw-zkz1">{{item.goodsName?item.goodsName:'未设置名称'}}</view>
  14. <view class="luck-draw-zkz3">{{item.createTime}}</view>
  15. </view>
  16. <view class="coupon-jump" wx:if="{{item.isHit == 1}}">
  17. <view class="coupon-right-usenow2">
  18. <navigator class="btn_exchange" target="miniProgram" app-id="wxd92a2d29f8022f40" path="pages/index/index" open-type='navigate'>
  19. </navigator>
  20. </view>
  21. </view>
  22. </view>
  23. <!-- <view class="luck-draw-words1" wx:if="{{item.isHit != 1}}">
  24. <view class="luck-draw-discount12">
  25. <image class="luck-draw-zkz52" src="{{item.fullGoodsSmallImage}}" />
  26. </view>
  27. <view class="luck-draw-discount2">
  28. <view class="luck-draw-zkz1"><text decode="true">很遗憾!您没中奖&gt;&lt;</text></view>
  29. <view class="luck-draw-zkz3">{{item.createTime}}</view>
  30. </view>
  31. </view> -->
  32. </view>
  33. <view class="no_result" wx:if="{{noResult}}">———— 抱歉,您暂无抽奖记录 ————</view>
  34. <view class="no_result" wx:if="{{noMore}}">———— 更多抽奖 | 敬请期待 ————</view>
  35. </view>
  36. </view>
  37. <!-- 底部导航 -->
  38. <!-- <tab-bar /> -->