activity.vue 12 KB

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