activity.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  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 v-if="iOSInfo.indexOf('Q021')!=-1||!iOSInfo" src="../../static/img/icon_nav_add.png" mode="aspectFit" class="addImg" @click="goAdd"></image>
  13. <view v-else style="width: 50px;"></view>
  14. </view>
  15. </view>
  16. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  17. <view style="height: 44px;"></view>
  18. <view class="tab">
  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 class="tabLine" :class="{tabActive:tabIndex=='已结束'}" @click="tabClick('已结束')">已结束</view>
  24. </view>
  25. <view class="conBox">
  26. <view class="itemHistory" v-for="(item,index) in itemData" :key="index">
  27. <image :src="item.Img" mode="" class="itemImg" @click="goDetail(item.ID)"></image>
  28. <view class="timeBox">
  29. <image v-if="item.state=='进行中'" src="../../static/img/bg_huangse.png" mode="" class="state"></image>
  30. <image v-if="item.state=='未开始'" src="../../static/img/bg_hongse.png" mode="" class="state"></image>
  31. <image v-if="item.state=='未启用'" src="../../static/img/bg_weiqiyong.png" mode="" class="state">
  32. </image>
  33. <image v-if="item.state=='已结束'" src="../../static/img/bg_jieshu.png" mode="" class="state"></image>
  34. <view class="time" v-if="item.StartTime">{{item.StartTime.slice(0,10)}}-{{item.EndTime.slice(0,10)}}
  35. </view>
  36. </view>
  37. <view class="name">{{item.ActivityName}}</view>
  38. <view class="btns">
  39. <view class="btnBox">
  40. <view v-if="iOSInfo.indexOf('Q022')!=-1 || iOSInfo.indexOf('Q023')!=-1 || iOSInfo.indexOf('Q024')!=-1||!iOSInfo" class="moreBox">
  41. <view class="btn" style="width: 120rpx;" @click="changeMore(item)">更多</view>
  42. <view class="moreBtn" v-if="item.showMoreBtn==true">
  43. <view v-if="iOSInfo.indexOf('Q022')!=-1||!iOSInfo" class="more" @click="goEdit(item.ID)">
  44. <image src="../../static/img/icon_bianji.png" mode="" class="btnImg"></image>
  45. <view class="btn2">编辑</view>
  46. </view>
  47. <view v-if="(iOSInfo.indexOf('Q023')!=-1||!iOSInfo) && item.state=='未启用'" class="more" @click="open(item)">
  48. <image src="../../static/img/icon_tingyong.png" mode="" class="btnImg"></image>
  49. <view class="btn2">启用</view>
  50. </view>
  51. <view v-if="(iOSInfo.indexOf('Q024')!=-1||!iOSInfo) && item.state=='进行中'" class="more" @click="stop(item)" v-else>
  52. <image src="../../static/img/icon_tingyong.png" mode="" class="btnImg"></image>
  53. <view class="btn2">停用</view>
  54. </view>
  55. </view>
  56. </view>
  57. <view v-if="iOSInfo.indexOf('Q025')!=-1||!iOSInfo" class="btn" @click="goSign(item)">报名详情</view>
  58. <view v-if="iOSInfo.indexOf('Q028')!=-1||!iOSInfo" class="btn" @click="goStatis(item)">数据统计</view>
  59. <view class="btn" style="width: 120rpx;" @click="goshare(item)" >分享</view>
  60. </view>
  61. </view>
  62. </view>
  63. <!-- 上拉 加载更多 -->
  64. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  65. <!-- 无数据空白页 -->
  66. <nodata v-if="itemData.length==0"></nodata>
  67. </view>
  68. </view>
  69. </template>
  70. <script scoped>
  71. import nodata from '../../components/nodata/nodata.vue'
  72. export default {
  73. components: {
  74. nodata,
  75. },
  76. data() {
  77. return {
  78. iStatusBarHeight: '',
  79. page: 1,
  80. itemData: [],
  81. noMoreShow: false,
  82. tabIndex: '',
  83. type:'',
  84. iOSInfo:'',
  85. }
  86. },
  87. // onBackPress(options){
  88. // if (options.from === 'navigateBack') {
  89. // return false
  90. // }
  91. // console.log(options)
  92. // console.log("返回")
  93. // return true;
  94. // },
  95. onLoad(opt) {
  96. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  97. this.page = 1
  98. this.myOrderCoupon();
  99. this.type=opt.type
  100. var qxnum=uni.getStorageSync("quanxian");
  101. if(qxnum==1){
  102. this.iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
  103. }else if(qxnum==2){
  104. window.getAndroid=this.getAndroid;
  105. }
  106. },
  107. methods: {
  108. getAndroid(e){
  109. this.iOSInfo=e
  110. },
  111. goAdd(){
  112. uni.navigateTo({
  113. url:'choice?type=2'
  114. })
  115. },
  116. goshare(item){
  117. //app交互
  118. var standalone = window.navigator.standalone
  119. var userAgent = window.navigator.userAgent.toLowerCase()
  120. var safari = /safari/.test(userAgent)
  121. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  122. var android = /android/.test(userAgent)
  123. if (ios) {
  124. if ( true) {//!standalone&& !safari
  125. window.webkit.messageHandlers.goShare.postMessage(item)
  126. }
  127. } else if (android) {
  128. window.android.share(JSON.stringify(item))
  129. }
  130. },
  131. goback(){
  132. if(this.type==2){
  133. uni.navigateBack()
  134. }else{
  135. //app交互
  136. var standalone = window.navigator.standalone
  137. var userAgent = window.navigator.userAgent.toLowerCase()
  138. var safari = /safari/.test(userAgent)
  139. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  140. var android = /android/.test(userAgent)
  141. if (ios) {
  142. if ( true) {//!standalone&& !safari
  143. window.webkit.messageHandlers.goMyNav.postMessage(null)
  144. }
  145. } else if (android) {
  146. window.android.postMessage()
  147. }
  148. }
  149. },
  150. open(item) {
  151. var that = this;
  152. uni.showLoading({
  153. title: '加载中'
  154. });
  155. that.$http('openH5SetTheGuest/updateActivityState', {
  156. id: item.ID,
  157. clState: 2
  158. }, 'POST').then(res => {
  159. uni.showToast({
  160. title: '成功',
  161. icon: 'none',
  162. duration: 3000
  163. });
  164. that.page = 1;
  165. that.myOrderCoupon()
  166. })
  167. },
  168. stop(item) {
  169. var that = this;
  170. uni.showModal({
  171. title: '提示',
  172. content: '停用后,用户将不可见此活动',
  173. success: function(res) {
  174. if (res.confirm) {
  175. uni.showLoading({
  176. title: '加载中'
  177. });
  178. that.$http('openH5SetTheGuest/updateAtivitySate', {
  179. id: item.ID,
  180. clState: 1
  181. }, 'POST').then(res => {
  182. uni.showToast({
  183. title: '成功',
  184. icon: 'none',
  185. duration: 3000
  186. });
  187. that.page = 1;
  188. that.myOrderCoupon()
  189. })
  190. } else if (res.cancel) {
  191. }
  192. }
  193. });
  194. },
  195. changeMore(item) {
  196. item.showMoreBtn = !item.showMoreBtn
  197. },
  198. tabClick(state) {
  199. this.tabIndex = state;
  200. this.page = 1;
  201. this.myOrderCoupon()
  202. },
  203. goDetail(id) {
  204. uni.navigateTo({
  205. url: 'activityDetail?id=' + id
  206. })
  207. },
  208. goEdit(id) {
  209. uni.navigateTo({
  210. url: 'eadit?id=' + id
  211. })
  212. },
  213. goSign(item) {
  214. uni.navigateTo({
  215. url: 'signJkDetail?activity=' + JSON.stringify(item)
  216. })
  217. },
  218. goStatis(item) {
  219. uni.navigateTo({
  220. url: 'statistics?activity=' + JSON.stringify(item)
  221. })
  222. },
  223. myOrderCoupon() {
  224. uni.showLoading({
  225. title: '加载中'
  226. })
  227. this.$http('openH5SetTheGuest/getActivity', {
  228. page: this.page,
  229. limit: 10,
  230. state: this.tabIndex
  231. }, 'GET').then(res => {
  232. uni.hideLoading();
  233. // var list = res.data.Items
  234. var list = res.data.Items
  235. list.forEach((item, index) => {
  236. item.showMoreBtn = false
  237. })
  238. if (this.page == 1) {
  239. this.itemData = list
  240. } else {
  241. this.itemData = this.itemData.concat(list)
  242. }
  243. if (list.length < 10) {
  244. this.noMoreShow = true
  245. } else {
  246. this.noMoreShow = false
  247. }
  248. })
  249. },
  250. },
  251. // 下拉刷新 上拉加载更多
  252. onPullDownRefresh() {
  253. this.page = 1
  254. this.myOrderCoupon()
  255. setTimeout(function() {
  256. uni.stopPullDownRefresh();
  257. }, 1000);
  258. },
  259. onReachBottom() {
  260. this.page++;
  261. this.myOrderCoupon()
  262. },
  263. }
  264. </script>
  265. <style scoped lang="less">
  266. .box {
  267. background: #F4F5F7;
  268. min-height: 100vh;
  269. }
  270. .zdyNavBox {
  271. width: 100vw;
  272. background: #FFFFFF;
  273. position: fixed;
  274. top: 0;
  275. left: 0;
  276. z-index: 9999999;
  277. }
  278. .zdyNav {
  279. height: 44px;
  280. display: flex;
  281. justify-content: space-between;
  282. align-items: center;
  283. }
  284. .backImg {
  285. width: 44rpx;
  286. height: 44rpx;
  287. margin-left: 10rpx;
  288. margin-right: 20rpx;
  289. }
  290. .homeImg {
  291. width: 44rpx;
  292. height: 44rpx;
  293. }
  294. .zdyNavLeft {
  295. display: flex;
  296. align-items: center;
  297. }
  298. .zdyNavTitle {
  299. height: 44px;
  300. background: #FFFFFF;
  301. text-align: center;
  302. font-size: 34rpx;
  303. line-height: 44px;
  304. }
  305. .addImg {
  306. width: 36rpx;
  307. height: 36rpx;
  308. margin-right: 20rpx;
  309. }
  310. .tab {
  311. background: #FFFFFF;
  312. display: flex;
  313. justify-content: space-between;
  314. line-height: 87rpx;
  315. position: fixed;
  316. width: calc(100vw - 100rpx);
  317. padding-left: 50rpx;
  318. padding-right: 50rpx;
  319. height: 87rpx;
  320. z-index: 11;
  321. border-top: 1rpx solid #EEEEEE;
  322. }
  323. .tabLine {
  324. font-size: 32rpx;
  325. color: #666666;
  326. text-align: center;
  327. }
  328. .tabActive {
  329. color: #3F90F7;
  330. font-weight: bold;
  331. border-bottom: 4rpx solid #3F90F7;
  332. }
  333. .conBox {
  334. padding-top: 107rpx;
  335. }
  336. .itemHistory {
  337. margin: 0rpx 24rpx 20rpx;
  338. background-color: #FFFFFF;
  339. border-radius: 10rpx;
  340. }
  341. .itemImg {
  342. height: 280rpx;
  343. width: 702rpx;
  344. border-radius: 10rpx 10rpx 0px 0px;
  345. display: block;
  346. }
  347. .timeBox {
  348. display: flex;
  349. margin-top: -52rpx;
  350. align-items: flex-end;
  351. position: relative;
  352. }
  353. .state {
  354. width: 102rpx;
  355. height: 53rpx;
  356. }
  357. .time {
  358. padding: 5rpx 10rpx;
  359. color: #FFFFFF;
  360. font-size: 24rpx;
  361. background: rgba(0, 0, 0, 0.5);
  362. margin-left: -8rpx;
  363. border-radius: 0 10rpx 0 0;
  364. }
  365. .name {
  366. padding: 24rpx 20rpx;
  367. color: #333333;
  368. font-size: 28rpx;
  369. background: #FFFFFF;
  370. border-radius: 0 0 10rpx 10rpx;
  371. border-bottom: 1rpx solid #eeeeee;
  372. }
  373. .btns {
  374. position: relative;
  375. }
  376. .btnBox {
  377. padding: 26rpx 20rpx;
  378. border-radius: 0 0 10rpx 10rpx;
  379. display: flex;
  380. justify-content: flex-end;
  381. align-items: center;
  382. }
  383. .moreBtn {
  384. background-image: url("../../static/img/bg_more.png");
  385. background-size: 100% 100%;
  386. width: 196rpx;
  387. height: 234rpx;
  388. position: absolute;
  389. z-index: 999;
  390. top: 84rpx;
  391. }
  392. .more {
  393. display: flex;
  394. align-items: center;
  395. padding: 32rpx 46rpx 0;
  396. }
  397. .btnImg {
  398. width: 32rpx;
  399. height: 32rpx;
  400. margin-right: 15rpx;
  401. }
  402. .btn {
  403. font-size: 28rpx;
  404. color: #333333;
  405. width: 160rpx;
  406. height: 60rpx;
  407. border-radius: 30rpx;
  408. border: 1rpx solid #DDDDDD;
  409. text-align: center;
  410. line-height: 60rpx;
  411. margin-left: 17rpx;
  412. }
  413. .btn2 {
  414. font-size: 28rpx;
  415. color: #333333;
  416. height: 60rpx;
  417. border-radius: 30rpx;
  418. text-align: center;
  419. line-height: 60rpx;
  420. }
  421. .noMore {
  422. text-align: center;
  423. line-height: 50rpx;
  424. color: #999999;
  425. font-size: 28rpx;
  426. }
  427. </style>