jifenhint.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <uni-popup ref="WinningRef" :maskClick="false">
  3. <view class="winning-box" :style="{height:showBtn ? '720rpx' : '644rpx'}" v-if="prizeInfo">
  4. <view class="close-winning-icon" @click.stop="onClose()">
  5. <image src="@/static/Lottery/close.png" mode="aspectFit"></image>
  6. </view>
  7. <view class="winning-title">
  8. <image src="@/static/Lottery/Winning-title.png" mode="aspectFit"></image>
  9. </view>
  10. <view class="winning-level">
  11. {{prizeInfo.prizeChinese}}
  12. </view>
  13. <view class="winning-img">
  14. <image :src="prizeInfo.prizeImage" mode="aspectFit"></image>
  15. </view>
  16. <view class="winning-btn">
  17. <text @click.stop="onClose()">知道了</text>
  18. <text v-if="showBtn" @click.stop="setAwardInformation()">填写领奖信息</text>
  19. </view>
  20. </view>
  21. </uni-popup>
  22. </template>
  23. <script>
  24. export default {
  25. props: {
  26. singleExchangePoints: {
  27. type: Number,
  28. default: 0
  29. }
  30. },
  31. data() {
  32. return {
  33. }
  34. },
  35. onLoad() {
  36. },
  37. methods: {
  38. }
  39. }
  40. </script>
  41. <style>
  42. </style>