activity.vue 9.5 KB

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