activity.vue 9.3 KB

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