activity.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <template>
  2. <view class="box">
  3. <!-- 自定义导航 -->
  4. <view class="zdyNavBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNav">
  7. <view class="zdyNavLeft">
  8. <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback">
  9. </image>
  10. </view>
  11. <view class="zdyNavTitle">活动</view>
  12. <image src="../../static/img/icon_nav_add.png" mode="aspectFit" class="addImg" @click="goAdd"></image>
  13. </view>
  14. </view>
  15. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  16. <view style="height: 44px;"></view>
  17. <view class="tab">
  18. <view class="tabLine" :class="{tabActive:tabIndex==''}" @click="tabClick('')">全部</view>
  19. <view class="tabLine" :class="{tabActive:tabIndex=='未启用'}" @click="tabClick('未启用')">未启用</view>
  20. <view class="tabLine" :class="{tabActive:tabIndex=='未开始'}" @click="tabClick('未开始')">未开始</view>
  21. <view class="tabLine" :class="{tabActive:tabIndex=='进行中'}" @click="tabClick('进行中')">进行中</view>
  22. <view class="tabLine" :class="{tabActive:tabIndex=='已结束'}" @click="tabClick('已结束')">已结束</view>
  23. </view>
  24. <view class="conBox">
  25. <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item.id)">
  26. <image :src="item.Img" mode="" class="itemImg"></image>
  27. <view class="timeBox">
  28. <image v-if="item.state=='进行中'" src="../../static/img/bg_huangse.png" mode="" class="state"></image>
  29. <image v-if="item.state=='未开始'" src="../../static/img/bg_hongse.png" mode="" class="state"></image>
  30. <view class="time" v-if="item.StartTime">{{item.StartTime.slice(0,10)}}-{{item.EndTime.slice(0,10)}}
  31. </view>
  32. </view>
  33. <view class="name">{{item.ActivityName}}</view>
  34. <view class="btnBox">
  35. <view class="btn" style="width: 120rpx;" @click="goEdit(item.ID)">编辑</view>
  36. <view class="btn" @click="">报名详情</view>
  37. <view class="btn" @click="">数据统计</view>
  38. <view class="btn" style="width: 120rpx;" @click="">分享</view>
  39. </view>
  40. </view>
  41. <!-- 上拉 加载更多 -->
  42. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  43. <!-- 无数据空白页 -->
  44. <nodata v-if="itemData.length==0"></nodata>
  45. </view>
  46. </view>
  47. </template>
  48. <script scoped>
  49. import nodata from '../../components/nodata/nodata.vue'
  50. export default {
  51. components: {
  52. nodata,
  53. },
  54. data() {
  55. return {
  56. iStatusBarHeight: '',
  57. page: 1,
  58. itemData: [],
  59. noMoreShow: false,
  60. tabIndex: '',
  61. }
  62. },
  63. onLoad() {
  64. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  65. this.page = 1
  66. this.myOrderCoupon()
  67. },
  68. methods: {
  69. tabClick(state) {
  70. this.tabIndex = state;
  71. this.page = 1;
  72. this.myOrderCoupon()
  73. },
  74. goDetail(id) {
  75. // uni.navigateTo({
  76. // url: 'jkDetail?id=' + id
  77. // })
  78. },
  79. goEdit(id) {
  80. uni.navigateTo({
  81. url: 'eadit?id=' + id
  82. })
  83. },
  84. myOrderCoupon() {
  85. uni.showLoading({
  86. title: '加载中'
  87. })
  88. this.$http('openH5SetTheGuest/getAtivity', {
  89. page: this.page,
  90. limit: 10,
  91. state: this.tabIndex
  92. }, 'GET').then(res => {
  93. uni.hideLoading();
  94. // var list = res.data.Items
  95. var list = res.data.Items
  96. // 处理 undefined和null转为空白字符串
  97. // list.forEach((item, index) => {
  98. // for (const key in item) {
  99. // item[key] = this.$praseStrEmpty(item[key])
  100. // }
  101. // })
  102. if (this.page == 1) {
  103. this.itemData = list
  104. } else {
  105. this.itemData = this.itemData.concat(list)
  106. }
  107. if (list.length < 10) {
  108. this.noMoreShow = true
  109. } else {
  110. this.noMoreShow = false
  111. }
  112. })
  113. },
  114. },
  115. // 下拉刷新 上拉加载更多
  116. onPullDownRefresh() {
  117. this.page = 1
  118. this.myOrderCoupon()
  119. setTimeout(function() {
  120. uni.stopPullDownRefresh();
  121. }, 1000);
  122. },
  123. onReachBottom() {
  124. this.page++;
  125. this.myOrderCoupon()
  126. },
  127. }
  128. </script>
  129. <style scoped lang="less">
  130. .box {
  131. background: #F4F5F7;
  132. min-height: 100vh;
  133. }
  134. .zdyNavBox {
  135. width: 100vw;
  136. background: #FFFFFF;
  137. position: fixed;
  138. top: 0;
  139. left: 0;
  140. z-index: 9999999;
  141. }
  142. .zdyNav {
  143. height: 44px;
  144. display: flex;
  145. justify-content: space-between;
  146. align-items: center;
  147. }
  148. .backImg {
  149. width: 44rpx;
  150. height: 44rpx;
  151. margin-left: 10rpx;
  152. margin-right: 20rpx;
  153. }
  154. .homeImg {
  155. width: 44rpx;
  156. height: 44rpx;
  157. }
  158. .zdyNavLeft {
  159. display: flex;
  160. align-items: center;
  161. }
  162. .zdyNavTitle {
  163. height: 44px;
  164. background: #FFFFFF;
  165. text-align: center;
  166. font-size: 34rpx;
  167. line-height: 44px;
  168. }
  169. .addImg {
  170. width: 36rpx;
  171. height: 36rpx;
  172. margin-right: 20rpx;
  173. }
  174. .tab {
  175. background: #FFFFFF;
  176. display: flex;
  177. justify-content: space-between;
  178. line-height: 87rpx;
  179. position: fixed;
  180. width: calc(100vw - 100rpx);
  181. padding-left: 50rpx;
  182. padding-right: 50rpx;
  183. height: 87rpx;
  184. z-index: 11;
  185. border-top: 1rpx solid #EEEEEE;
  186. }
  187. .tabLine {
  188. font-size: 32rpx;
  189. color: #666666;
  190. text-align: center;
  191. }
  192. .tabActive {
  193. color: #3F90F7;
  194. font-weight: bold;
  195. border-bottom: 4rpx solid #3F90F7;
  196. }
  197. .conBox {
  198. padding-top: 107rpx;
  199. }
  200. .itemHistory {
  201. margin: 0rpx 24rpx 20rpx;
  202. background-color: #FFFFFF;
  203. border-radius: 10rpx;
  204. }
  205. .itemImg {
  206. height: 280rpx;
  207. width: 702rpx;
  208. border-radius: 10rpx 10rpx 0px 0px;
  209. }
  210. .timeBox {
  211. display: flex;
  212. margin-top: -61rpx;
  213. align-items: flex-end;
  214. position: relative;
  215. }
  216. .state {
  217. width: 102rpx;
  218. height: 53rpx;
  219. }
  220. .time {
  221. padding: 5rpx 10rpx;
  222. color: #FFFFFF;
  223. font-size: 24rpx;
  224. background: #000000;
  225. border-radius: 0 10rpx 0 0;
  226. }
  227. .name {
  228. padding: 24rpx 20rpx;
  229. color: #333333;
  230. font-size: 28rpx;
  231. background: #FFFFFF;
  232. border-radius: 0 0 10rpx 10rpx;
  233. border-bottom: 1rpx solid #eeeeee;
  234. }
  235. .btnBox {
  236. padding: 26rpx 20rpx;
  237. border-radius: 0 0 10rpx 10rpx;
  238. display: flex;
  239. justify-content: space-between;
  240. align-items: center;
  241. }
  242. .btn {
  243. font-size: 28rpx;
  244. color: #333333;
  245. width: 160rpx;
  246. height: 60rpx;
  247. border-radius: 30rpx;
  248. border: 1rpx solid #DDDDDD;
  249. text-align: center;
  250. line-height: 60rpx;
  251. }
  252. .noMore {
  253. text-align: center;
  254. line-height: 50rpx;
  255. color: #999999;
  256. font-size: 28rpx;
  257. }
  258. </style>