activity.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  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">
  31. </image>
  32. <image v-if="item.state=='已结束'" src="../../static/img/bg_jieshu.png" mode="" class="state"></image>
  33. <view class="time" v-if="item.StartTime">{{item.StartTime.slice(0,10)}}-{{item.EndTime.slice(0,10)}}
  34. </view>
  35. </view>
  36. <view class="name">{{item.ActivityName}}</view>
  37. <view class="btns">
  38. <view class="btnBox">
  39. <view class="btn" style="width: 120rpx;" @click="changeMore(item)">更多</view>
  40. <view class="btn" @click="goSign(item)">报名详情</view>
  41. <view class="btn" @click="goStatis(item)">数据统计</view>
  42. <view class="btn" style="width: 120rpx;" @click="">分享</view>
  43. </view>
  44. <view class="moreBtn" v-if="item.showMoreBtn==true">
  45. <view class="more" @click="goEdit(item.ID)">
  46. <image src="../../static/img/icon_bianji.png" mode="" class="btnImg"></image>
  47. <view class="btn2">编辑</view>
  48. </view>
  49. <view class="more" @click="stop(item)">
  50. <image src="../../static/img/icon_tingyong.png" mode="" class="btnImg"></image>
  51. <view class="btn2">停用</view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <!-- 上拉 加载更多 -->
  57. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  58. <!-- 无数据空白页 -->
  59. <nodata v-if="itemData.length==0"></nodata>
  60. </view>
  61. </view>
  62. </template>
  63. <script scoped>
  64. import nodata from '../../components/nodata/nodata.vue'
  65. export default {
  66. components: {
  67. nodata,
  68. },
  69. data() {
  70. return {
  71. iStatusBarHeight: '',
  72. page: 1,
  73. itemData: [],
  74. noMoreShow: false,
  75. tabIndex: '',
  76. }
  77. },
  78. onLoad() {
  79. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  80. this.page = 1
  81. this.myOrderCoupon()
  82. },
  83. methods: {
  84. stop(item) {
  85. var that = this;
  86. uni.showModal({
  87. title: '提示',
  88. content: '停用后,用户将不可见此活动',
  89. success: function(res) {
  90. if (res.confirm) {
  91. uni.showLoading({
  92. title: '加载中'
  93. });
  94. that.$http('openH5SetTheGuest/updateAtivitySate', {
  95. id: item.ID,
  96. clState: 1
  97. }, 'POST').then(res => {
  98. uni.showToast({
  99. title: '成功',
  100. icon: 'none',
  101. duration: 3000
  102. });
  103. that.page = 1;
  104. that.myOrderCoupon()
  105. })
  106. } else if (res.cancel) {
  107. }
  108. }
  109. });
  110. },
  111. changeMore(item) {
  112. item.showMoreBtn = !item.showMoreBtn
  113. },
  114. tabClick(state) {
  115. this.tabIndex = state;
  116. this.page = 1;
  117. this.myOrderCoupon()
  118. },
  119. goDetail(id) {
  120. // uni.navigateTo({
  121. // url: 'jkDetail?id=' + id
  122. // })
  123. },
  124. goEdit(id) {
  125. uni.navigateTo({
  126. url: 'eadit?id=' + id
  127. })
  128. },
  129. goSign(item) {
  130. uni.navigateTo({
  131. url: 'signJkDetail?activity=' + JSON.stringify(item)
  132. })
  133. },
  134. goStatis(item){
  135. uni.navigateTo({
  136. url: 'statistics?activity=' + JSON.stringify(item)
  137. })
  138. },
  139. myOrderCoupon() {
  140. uni.showLoading({
  141. title: '加载中'
  142. })
  143. this.$http('openH5SetTheGuest/getAtivity', {
  144. page: this.page,
  145. limit: 10,
  146. state: this.tabIndex
  147. }, 'GET').then(res => {
  148. uni.hideLoading();
  149. // var list = res.data.Items
  150. var list = res.data.Items
  151. list.forEach((item, index) => {
  152. item.showMoreBtn = false
  153. })
  154. if (this.page == 1) {
  155. this.itemData = list
  156. } else {
  157. this.itemData = this.itemData.concat(list)
  158. }
  159. if (list.length < 10) {
  160. this.noMoreShow = true
  161. } else {
  162. this.noMoreShow = false
  163. }
  164. })
  165. },
  166. },
  167. // 下拉刷新 上拉加载更多
  168. onPullDownRefresh() {
  169. this.page = 1
  170. this.myOrderCoupon()
  171. setTimeout(function() {
  172. uni.stopPullDownRefresh();
  173. }, 1000);
  174. },
  175. onReachBottom() {
  176. this.page++;
  177. this.myOrderCoupon()
  178. },
  179. }
  180. </script>
  181. <style scoped lang="less">
  182. .box {
  183. background: #F4F5F7;
  184. min-height: 100vh;
  185. }
  186. .zdyNavBox {
  187. width: 100vw;
  188. background: #FFFFFF;
  189. position: fixed;
  190. top: 0;
  191. left: 0;
  192. z-index: 9999999;
  193. }
  194. .zdyNav {
  195. height: 44px;
  196. display: flex;
  197. justify-content: space-between;
  198. align-items: center;
  199. }
  200. .backImg {
  201. width: 44rpx;
  202. height: 44rpx;
  203. margin-left: 10rpx;
  204. margin-right: 20rpx;
  205. }
  206. .homeImg {
  207. width: 44rpx;
  208. height: 44rpx;
  209. }
  210. .zdyNavLeft {
  211. display: flex;
  212. align-items: center;
  213. }
  214. .zdyNavTitle {
  215. height: 44px;
  216. background: #FFFFFF;
  217. text-align: center;
  218. font-size: 34rpx;
  219. line-height: 44px;
  220. }
  221. .addImg {
  222. width: 36rpx;
  223. height: 36rpx;
  224. margin-right: 20rpx;
  225. }
  226. .tab {
  227. background: #FFFFFF;
  228. display: flex;
  229. justify-content: space-between;
  230. line-height: 87rpx;
  231. position: fixed;
  232. width: calc(100vw - 100rpx);
  233. padding-left: 50rpx;
  234. padding-right: 50rpx;
  235. height: 87rpx;
  236. z-index: 11;
  237. border-top: 1rpx solid #EEEEEE;
  238. }
  239. .tabLine {
  240. font-size: 32rpx;
  241. color: #666666;
  242. text-align: center;
  243. }
  244. .tabActive {
  245. color: #3F90F7;
  246. font-weight: bold;
  247. border-bottom: 4rpx solid #3F90F7;
  248. }
  249. .conBox {
  250. padding-top: 107rpx;
  251. }
  252. .itemHistory {
  253. margin: 0rpx 24rpx 20rpx;
  254. background-color: #FFFFFF;
  255. border-radius: 10rpx;
  256. }
  257. .itemImg {
  258. height: 280rpx;
  259. width: 702rpx;
  260. border-radius: 10rpx 10rpx 0px 0px;
  261. }
  262. .timeBox {
  263. display: flex;
  264. margin-top: -61rpx;
  265. align-items: flex-end;
  266. position: relative;
  267. }
  268. .state {
  269. width: 102rpx;
  270. height: 53rpx;
  271. }
  272. .time {
  273. padding: 5rpx 10rpx;
  274. color: #FFFFFF;
  275. font-size: 24rpx;
  276. background: #000000;
  277. border-radius: 0 10rpx 0 0;
  278. }
  279. .name {
  280. padding: 24rpx 20rpx;
  281. color: #333333;
  282. font-size: 28rpx;
  283. background: #FFFFFF;
  284. border-radius: 0 0 10rpx 10rpx;
  285. border-bottom: 1rpx solid #eeeeee;
  286. }
  287. .btns {
  288. position: relative;
  289. }
  290. .btnBox {
  291. padding: 26rpx 20rpx;
  292. border-radius: 0 0 10rpx 10rpx;
  293. display: flex;
  294. justify-content: space-between;
  295. align-items: center;
  296. }
  297. .moreBtn {
  298. background-image: url("../../static/img/bg_more.png");
  299. background-size: 100% 100%;
  300. width: 196rpx;
  301. height: 234rpx;
  302. position: absolute;
  303. z-index: 999;
  304. top: 84rpx;
  305. }
  306. .more {
  307. display: flex;
  308. align-items: center;
  309. padding: 32rpx 46rpx 0;
  310. }
  311. .btnImg {
  312. width: 32rpx;
  313. height: 32rpx;
  314. margin-right: 15rpx;
  315. }
  316. .btn {
  317. font-size: 28rpx;
  318. color: #333333;
  319. width: 160rpx;
  320. height: 60rpx;
  321. border-radius: 30rpx;
  322. border: 1rpx solid #DDDDDD;
  323. text-align: center;
  324. line-height: 60rpx;
  325. }
  326. .btn2 {
  327. font-size: 28rpx;
  328. color: #333333;
  329. height: 60rpx;
  330. border-radius: 30rpx;
  331. text-align: center;
  332. line-height: 60rpx;
  333. }
  334. .noMore {
  335. text-align: center;
  336. line-height: 50rpx;
  337. color: #999999;
  338. font-size: 28rpx;
  339. }
  340. </style>