activity.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. <u-empty v-if="activityList.length==0"
  32. mode="list"
  33. icon="http://cdn.uviewui.com/uview/empty/list.png"
  34. marginTop="100"
  35. >
  36. </u-empty>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. onPullDownRefresh() {
  42. this.page=1
  43. this.getList()
  44. setTimeout(function () {
  45. uni.stopPullDownRefresh();
  46. }, 1000);
  47. },
  48. onShow() {
  49. // var is_info=uni.getStorageSync('is_info')
  50. // if (is_info != 2) {
  51. // uni.navigateTo({
  52. // url: '/pages/index/base'
  53. // })
  54. // return
  55. // }
  56. if(uni.getStorageSync('type')){
  57. this.current=uni.getStorageSync('type')
  58. this.page=1
  59. this.getList()
  60. uni.removeStorageSync('type')
  61. }else{
  62. this.page=1
  63. this.getList()
  64. }
  65. },
  66. onLoad() {
  67. },
  68. onReachBottom() {
  69. this.page++
  70. this.getList()
  71. },
  72. data() {
  73. return {
  74. tabList:[{name:'活动进行中',img:'../../static/activity/doing.png'},{name:'活动预告',img:'../../static/activity/yugao.png'},{name:'历史活动',img:'../../static/activity/history.png'}],
  75. current:0,
  76. activityList:[],
  77. }
  78. },
  79. methods: {
  80. getList(){
  81. uni.$u.http.post('/api/Activity/index',{page:this.page,type:this.current+1}).then(res => {
  82. if(this.page==1){
  83. this.activityList=res.data
  84. }else{
  85. this.activityList=[...this.activityList,...res.data]
  86. }
  87. })
  88. },
  89. itemClick(index){
  90. if(this.current!=index){
  91. this.current=index
  92. this.page=1
  93. this.getList()
  94. }
  95. },
  96. toinfo(item){
  97. if (!uni.getStorageSync('token')) {
  98. uni.navigateTo({
  99. url:'/pages/profile/login'
  100. })
  101. return
  102. }
  103. // var is_info=uni.getStorageSync('is_info')
  104. // if (is_info != 2) {
  105. // uni.navigateTo({
  106. // url: '/pages/index/base'
  107. // })
  108. // return
  109. // }
  110. uni.navigateTo({
  111. url:'./activityInfo?id='+item.id
  112. })
  113. }
  114. }
  115. }
  116. </script>
  117. <style lang="scss">
  118. // #ifdef H5
  119. page{
  120. background: url(/static/bg.png) no-repeat;
  121. }
  122. //#endif
  123. .list{
  124. margin: 24rpx 30rpx 0;
  125. .applyItem{
  126. margin-bottom: 20rpx;
  127. position: relative;
  128. width: 690rpx;
  129. height: 420rpx;
  130. background: #FFFFFF;
  131. border-radius: 28rpx;
  132. image{
  133. width: 690rpx;
  134. height: 280rpx;
  135. background: #D8D8D8;
  136. border-radius: 28rpx 28rpx 0px 0px;
  137. }
  138. .tips{
  139. position: absolute;
  140. top: 0;
  141. left: 0;
  142. z-index: 1;
  143. }
  144. .applyItemInfo{
  145. width: 690rpx;
  146. align-items: flex-start;
  147. padding: 20rpx;
  148. font-size: 32rpx;
  149. color: #222222;
  150. box-sizing: border-box;
  151. font-weight: 600;
  152. .applyTime{
  153. font-weight: 400;
  154. margin-top: 12rpx;
  155. font-size: 24rpx;
  156. color: #999999;
  157. }
  158. }
  159. }
  160. }
  161. .top{
  162. padding-top: 60rpx;
  163. .item{
  164. margin-left: 30rpx;
  165. font-size: 32rpx;
  166. color: #777777;
  167. image{
  168. height: 58rpx;
  169. }
  170. }
  171. }
  172. </style>