activity.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view>
  3. <image src="../../static/bg.png" mode="" class="bg"></image>
  4. <view class="top u-flex">
  5. <view class="item" v-for="(item,index) in tabList" @click="itemClick(index)" :key="index">
  6. <text v-show="current!=index">{{item.name}}</text>
  7. <image :style="{'width':current==0?'190rpx':'154rpx'}" v-show="current==index" :src="item.img" mode=""></image>
  8. </view>
  9. </view>
  10. <view class="list">
  11. <view class="applyItem u-flex u-flex-col" v-for="(item,index) in activityList" :key="index" @click="toinfo(item)">
  12. <view class="tips">
  13. <image src="../../static/activity/bmz@2x.png" mode="" v-show="item.status==2" style="width: 108rpx;height: 40rpx;"></image>
  14. <image src="../../static/activity/doing@2x.png" mode="" v-show="item.status==5" style="width: 108rpx;height: 40rpx;"></image>
  15. <image src="../../static/activity/end@2x.png" mode="" v-show="item.status==4" style="width: 128rpx;height: 40rpx;"></image>
  16. <image src="../../static/activity/fill@2x.png" mode="" v-show="item.status==3" style="width: 128rpx;height: 40rpx;"></image>
  17. <image src="../../static/activity/1.png" mode="" v-show="item.status==6" style="width: 128rpx;height: 40rpx;"></image>
  18. <image src="../../static/activity/2.png" mode="" v-show="item.status==1" style="width: 128rpx;height: 40rpx;"></image>
  19. </view>
  20. <image :src="item.show_image" mode=""></image>
  21. <view class="applyItemInfo u-flex-col;">
  22. <view class="">
  23. {{item.title}}
  24. </view>
  25. <view class="applyTime">
  26. 报名时间:{{item.sig_statime}}-{{item.sig_endtime}}
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. onPullDownRefresh() {
  36. this.page=1
  37. this.getList()
  38. setTimeout(function () {
  39. uni.stopPullDownRefresh();
  40. }, 1000);
  41. },
  42. onLoad() {
  43. this.getList()
  44. },
  45. onReachBottom() {
  46. this.page++
  47. this.getList()
  48. },
  49. data() {
  50. return {
  51. tabList:[{name:'活动进行中',img:'../../static/activity/doing.png'},{name:'活动预告',img:'../../static/activity/yugao.png'},{name:'历史活动',img:'../../static/activity/history.png'}],
  52. current:0,
  53. activityList:[],
  54. }
  55. },
  56. methods: {
  57. getList(){
  58. uni.$u.http.post('/api/Activity/index',{page:this.page,type:this.current+1}).then(res => {
  59. if(this.page==1){
  60. this.activityList=res.data
  61. }else{
  62. this.activityList=[...this.activityList,...res.data]
  63. }
  64. })
  65. },
  66. itemClick(index){
  67. if(this.current!=index){
  68. this.current=index
  69. this.page=1
  70. this.getList()
  71. }
  72. },
  73. toinfo(item){
  74. uni.navigateTo({
  75. url:'./activityInfo?id='+item.id
  76. })
  77. }
  78. }
  79. }
  80. </script>
  81. <style lang="scss">
  82. .list{
  83. margin: 24rpx 30rpx 0;
  84. .applyItem{
  85. margin-bottom: 20rpx;
  86. position: relative;
  87. width: 690rpx;
  88. height: 420rpx;
  89. background: #FFFFFF;
  90. border-radius: 28rpx;
  91. image{
  92. width: 690rpx;
  93. height: 280rpx;
  94. background: #D8D8D8;
  95. border-radius: 28rpx 28rpx 0px 0px;
  96. }
  97. .tips{
  98. position: absolute;
  99. top: 0;
  100. left: 0;
  101. z-index: 1;
  102. }
  103. .applyItemInfo{
  104. width: 690rpx;
  105. align-items: flex-start;
  106. padding: 20rpx;
  107. font-size: 32rpx;
  108. color: #222222;
  109. box-sizing: border-box;
  110. font-weight: 600;
  111. .applyTime{
  112. font-weight: 400;
  113. margin-top: 12rpx;
  114. font-size: 24rpx;
  115. color: #999999;
  116. }
  117. }
  118. }
  119. }
  120. .top{
  121. padding-top: 60rpx;
  122. .item{
  123. margin-left: 30rpx;
  124. font-size: 32rpx;
  125. color: #777777;
  126. image{
  127. height: 58rpx;
  128. }
  129. }
  130. }
  131. </style>