activity.vue 6.7 KB

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