activity.vue 10 KB

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