activity.vue 12 KB

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