activity.vue 12 KB

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