luckList.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <template>
  2. <view class="content">
  3. <view class="tabToptyh">
  4. <view class="tabToplieyh" @click="getList(0)" :class="{'tablineActyh':chooseTab==0}">未兑奖</view>
  5. <view class="tabToplieyh" @click="getList(1)" :class="{'tablineActyh':chooseTab==1}">已兑奖</view>
  6. </view>
  7. <view class="newluckLinebox">
  8. <view class="coupon-item newluckLine" style="flex-direction: column;padding: 15px 10px;box-sizing: border-box;height: auto"
  9. v-for="item in list">
  10. <view class=" newluckLineActName">{{item.ActName}}</view>
  11. <view class="luckDrawBpttom">
  12. <view class="luckDrawBtime">抽奖时间: {{item.DrawTime}}</view>
  13. <view class="luckDrawBdengji">{{item.PrizeName}}/{{item.PrizeValue}}</view>
  14. </view>
  15. <view class="luckDrawBtimedj" v-if="item.TakeTime">
  16. 兑奖时间: {{item.TakeTime}}
  17. </view>
  18. </view>
  19. </view>
  20. <nodata v-show="list.length==0&&loading"></nodata>
  21. </view>
  22. </template>
  23. <script>
  24. import nodata from '@/components/nodata/nodata.vue'
  25. export default {
  26. components: {
  27. nodata
  28. },
  29. data() {
  30. return {
  31. list:[],
  32. chooseTab: 0,
  33. page: 1,
  34. limit: 9,
  35. loading:false,
  36. }
  37. },
  38. onLoad(opt) {
  39. this.getList(0);
  40. },
  41. onShow() {
  42. },
  43. methods: {
  44. getList(num) {
  45. this.chooseTab=num;
  46. uni.showLoading({
  47. title: '加载中'
  48. });
  49. this.loading=false
  50. this.$http('open/miniapp/marketingLuckDraw/listLuckyDrawCustomerDetailPage', {
  51. page: this.page,
  52. limit: this.limit,
  53. prizeState: 1,
  54. takeState: num
  55. }, 'POST').then(res => {
  56. uni.hideLoading();
  57. this.loading = true;
  58. var list = res.data.records;
  59. if (this.page == 1) {
  60. this.list = list
  61. } else {
  62. this.list = this.items.concat(list)
  63. }
  64. })
  65. },
  66. },
  67. onPullDownRefresh() {
  68. this.getData()
  69. setTimeout(function() {
  70. uni.stopPullDownRefresh();
  71. }, 1000);
  72. },
  73. }
  74. </script>
  75. <style scoped>
  76. .content{
  77. min-height: 100vh;
  78. background: rgb(247, 247, 247);
  79. }
  80. .coupon-item{
  81. position: relative;
  82. margin: 24rpx 0;
  83. background:rgba(255,255,255,1);
  84. border-radius:10rpx;
  85. display: flex;
  86. }
  87. .tabToptyh{
  88. display: flex;
  89. justify-content: space-around;
  90. height: 93rpx;
  91. background: #ffffff;
  92. border-bottom: 1px solid #EEEEEE;
  93. }
  94. .tabToplieyh{
  95. line-height: 90rpx;
  96. color: #3C3C3C;
  97. font-size: 30rpx;
  98. font-weight: 400;
  99. }
  100. .newluckLineActName{
  101. text-overflow: -o-ellipsis-lastline;
  102. overflow: hidden;
  103. text-overflow: ellipsis;
  104. display: -webkit-box;
  105. -webkit-line-clamp: 2;
  106. line-clamp: 2;
  107. -webkit-box-orient: vertical;
  108. font-size: 28rpx !important;
  109. font-weight: 500 !important;
  110. }
  111. .luckDrawBpttom{
  112. display: flex;
  113. justify-content: space-between;
  114. }
  115. .luckDrawBtime{
  116. color: #666666;
  117. font-size: 24rpx;
  118. }
  119. .luckDrawBdengji{
  120. color: #FF7D30;
  121. font-size: 24rpx;
  122. }
  123. .luckDrawBtimedj{
  124. color: #666666;
  125. font-size: 24rpx;
  126. padding-top: 16rpx;
  127. }
  128. .luckDrawBpttom{
  129. padding-top: 22rpx;
  130. }
  131. .newluckLinebox{
  132. flex: 1;
  133. overflow-y: auto;
  134. padding: 12rpx 24rpx;
  135. }
  136. .tablineActyh{
  137. color: #FF7D30;
  138. border-bottom: 5rpx solid #FF7D30;
  139. }
  140. </style>