index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. <template>
  2. <view class="pages">
  3. <!-- <view class="" :style="{height: navHeight+'px' }"></view> -->
  4. <view class="banner">
  5. <!-- <image :src="staticUrl+'/img/index-banner.png'" ></image> -->
  6. <u-swiper
  7. :list="bannerList"
  8. height="600rpx"
  9. indicatorMode="dot"
  10. :indicatorStyle="{bottom:'100rpx'}"
  11. keyName="sliderImg"
  12. radius="0"
  13. indicator
  14. circular
  15. @click="bannerClick"
  16. ></u-swiper>
  17. </view>
  18. <!-- 占位 banner -->
  19. <view class="holdbanner" style="height: 600rpx;pointer-events:none"></view>
  20. <!-- 页面滚动banner模糊 -->
  21. <view class="blurbanner" style="height: 600rpx;" :class="{ isblur: isblur }"></view>
  22. <view class="index-bg" :style="{backgroundImage:`url(${indexBg})`}"></view>
  23. <view class="page-wrap">
  24. <view class="star-title u-flex u-row-between">
  25. <view class="left u-flex">
  26. <image class="icon" :src="staticUrl+'/img/title-star.png'" ></image>
  27. <text class="text">演出剧目</text>
  28. </view>
  29. </view>
  30. <swiper class="swiper" :autoplay="false" style="height: 400rpx;margin-bottom: 34rpx" >
  31. <swiper-item :item-id="item.id" v-for="(item,index) in theatreList" :key="index">
  32. <view class="programme-wrap">
  33. <view class="programme">
  34. <image class="img" :src="item.showImg" ></image>
  35. <!-- <image class="img" :src="item.showImg" ></image> -->
  36. <view class="text u-flex u-row-between">
  37. <view class="left">
  38. <view class="name">{{item.name}}</view>
  39. <!-- <view class="addr">演出地点:{{item.address}}</view> -->
  40. </view>
  41. <view class="btn" @click="bookticket(item)">立即预定</view>
  42. </view>
  43. <!-- <view class="share" @click="getPoster(item)">
  44. <image class="icon" :src="staticUrl+'/img/share-ico.png'" ></image>
  45. </view> -->
  46. </view>
  47. </view>
  48. </swiper-item>
  49. </swiper>
  50. </view>
  51. <view class="news-wrap">
  52. <view class="star-title u-flex u-row-between">
  53. <view class="left u-flex">
  54. <image class="icon" :src="staticUrl+'/img/title-star.png'" ></image>
  55. <text class="text">演出资讯</text>
  56. </view>
  57. <view class="right u-flex" @click="$u.route('pages/news')">
  58. <text class="text">更多</text>
  59. <u-icon name="arrow-right" color="#C79191" size="36rpx"></u-icon>
  60. </view>
  61. </view>
  62. <view class="news">
  63. <u-scroll-list :indicator="false">
  64. <view class="item" v-for="(item, index) in newsList" @click="newsClick(item)" :key="index">
  65. <image class="img" :src="item.mainImg" mode="aspectFill"></image>
  66. <view class="text" style="padding-bottom: 10px;">
  67. <view class="name u-line-2">{{item.title}}</view>
  68. <view class="con u-line-1">{{item.infoSnapshot}}</view>
  69. <view class="time u-flex u-row-between">
  70. <view class="left">{{$u.timeFormat(item.onlineTime, 'yyyy-mm-dd')}}</view>
  71. <image class="icon" :src="staticUrl+'/img/arrow-right-ico.png'" ></image>
  72. </view>
  73. </view>
  74. </view>
  75. </u-scroll-list>
  76. </view>
  77. </view>
  78. <!-- content-wrap end -->
  79. <!-- <image class="activity" :src="staticUrl+'/img/activity.png'" ></image> -->
  80. <!-- 分享选择弹出内容 -->
  81. <view class="share-option" :class="{shareShow:shareShow}">
  82. <view class="overlay" v-if="shareShow" @click="shareShow=false"></view>
  83. <button class="share-option-item wx-share" data-name="shareBtn" open-type="share">
  84. 发送给朋友
  85. </button>
  86. <view class="share-option-item" @click="getPoster">生成海报</view>
  87. <view class="share-option-item" @click="shareShow=false">取消</view>
  88. </view>
  89. <u-popup :show="posterShow" @close="posterShow=false" ref="uni-popup">
  90. <view class="poster-wrap u-flex u-col-center">
  91. <view class="poster-inner">
  92. <view class="close-wrap" @click="posterShow=false">
  93. <u-icon name="close-circle" color="#fff" size="56rpx"></u-icon>
  94. </view>
  95. <view class="poster" id="poster" ref="poster" >
  96. <u--image :showLoading="true" :src="posterSrc" width="100%" height="65vh" mode="aspectFit"></u--image>
  97. </view>
  98. <!-- savePoster -->
  99. <view class="poster-btn" @click="saveImage">保存图片</view>
  100. </view>
  101. </view>
  102. </u-popup>
  103. <u-toast ref="uToast"></u-toast>
  104. <!-- <image @click="audioClick" :class="{rotate:musicPlay}" class="audio-btn" :showLoading="false" :src="staticUrl+'/img/music.svg'"></image> -->
  105. <tabbar :tabbarIndexProps='0' />
  106. </view>
  107. </template>
  108. <script>
  109. import { systemInfo } from "@/mixin.js";
  110. import tabbar from "../../components/tabbar.vue";
  111. // const innerAudioContext = uni.createInnerAudioContext();
  112. export default {
  113. onShareAppMessage(res) {
  114. if (res.from === 'button') {// 来自页面内分享按钮
  115. console.log(res.target)
  116. }
  117. return {
  118. title: this.$isDevelop?'剧场票务':'伟大转折演艺',
  119. path: '/pages/index/index'
  120. }
  121. },
  122. onShareTimeline(res) {
  123. if (res.from === 'button') {// 来自页面内分享按钮
  124. console.log(res.target)
  125. }
  126. return {
  127. title: this.$isDevelop?'剧场票务':'伟大转折演艺',
  128. path: '/pages/index/index'
  129. }
  130. },
  131. components:{
  132. tabbar,
  133. // cartfixed
  134. },
  135. mixins:[systemInfo],
  136. data() {
  137. return {
  138. staticUrl:this.$commonConfig.staticUrl,
  139. bannerList: [],
  140. theatreList:[],//剧院信息列表
  141. bannerCurrent: 0,
  142. isblur:false,
  143. newsList:[],//资讯
  144. shareShow:false,
  145. posterShow:false,
  146. posterStyle:{},
  147. posterSrc:'',
  148. musicPlay:true,
  149. indexBg:`${this.$commonConfig.staticUrl}/img/index-bg.png`,
  150. }
  151. },
  152. computed: {
  153. },
  154. onShow() {
  155. // if(innerAudioContext.src){
  156. // this.audioStop();
  157. // this.audioPlay();
  158. // }
  159. },
  160. beforeRouteLeave() {
  161. },
  162. onLoad(page) {
  163. console.log('index page',page);
  164. const scene = decodeURIComponent(page.scene);
  165. if(scene&&scene!='undefined'){
  166. console.log('index scene',scene);
  167. scene&&uni.setStorage({
  168. key:'scene',
  169. data:scene
  170. });
  171. }
  172. this.getSystemInfo();
  173. // console.log('statusBarHeight',this.statusBarHeight);
  174. // console.log('navigationBarHeight',this.navigationBarHeight);
  175. // console.log('windowHeight',this.windowHeight);
  176. // console.log('navHeight',this.navHeight);
  177. // console.log('vuex_member_info=======',this.vuex_member_info);
  178. this.getClientIndex();
  179. //音乐地址
  180. // innerAudioContext.src = this.staticUrl+'/img/audio.mp3';
  181. // innerAudioContext.autoplay = true;//自动播放
  182. // innerAudioContext.loop = true; //循环播放
  183. //音乐播放
  184. // this.audioStop();
  185. // this.audioPlay();
  186. if(this.$isDevelop){
  187. this.indexBg = `${this.$commonConfig.staticUrl}/img/index-bg-dev.png`;
  188. // this.indexBg = 'none'
  189. }
  190. },
  191. onReady() {
  192. },
  193. onUnload() {
  194. // this.audioStop();
  195. },
  196. methods: {
  197. getMemberInfo(){
  198. this.$u.api.memberInfo({id:this.vuex_member_info.id}).then(res=>{
  199. this.memberInfo = res.data;
  200. this.avatar = res.data.avatar;
  201. this.$u.vuex('vuex_member_info', res.data);
  202. // console.log('memberInfo',this.memberInfo);
  203. }).catch(err=>{
  204. // console.log('memberInfo',err.data);
  205. })
  206. },
  207. getHotGoods(){
  208. this.$u.api.topGoodList({pageNum:1,pageSize:20}).then(res=>{
  209. this.hotGoods = res.data.rows;
  210. // console.log('res',res);
  211. }).catch(err=>{
  212. console.log('getHotGoods',err.data);
  213. })
  214. },
  215. getClientIndex(){
  216. this.$u.api.clientIndex().then(res=>{
  217. // console.log('res',res);
  218. this.bannerList = res.data.advList;
  219. this.theatreList = res.data.performList;
  220. this.newsList = res.data.informationList;
  221. }).catch(err=>{
  222. console.log('getClientIndex',err.data);
  223. })
  224. },
  225. goLogin(){
  226. uni.$u.route('/pages/login/login')
  227. },
  228. onPageScroll(e){
  229. if(e.scrollTop>100){
  230. this.isblur = true
  231. }else{
  232. this.isblur = false
  233. }
  234. },
  235. bookticket(item){
  236. // console.log('bookticket',item);
  237. uni.$u.route('pages/ticketlist',{id:item.id})
  238. },
  239. openShare(){
  240. this.shareShow = true;
  241. },
  242. // 海报相关开始
  243. getPoster(item){
  244. this.posterShow = true;
  245. this.shareShow = false;
  246. this.$u.api.performQrcode({performId:item.id}).then(res=>{
  247. this.posterSrc = res.data.imageUrl;
  248. // console.log('getPoster',res.data);
  249. }).catch(err=>{
  250. console.log('getPoster',err);
  251. })
  252. },
  253. saveImage() {
  254. let that = this;
  255. uni.showLoading({
  256. title: '保存中'
  257. });
  258. uni.downloadFile({
  259. url: this.posterSrc,
  260. success(res) {
  261. if (res.statusCode === 200) {
  262. uni.saveImageToPhotosAlbum({
  263. filePath: res.tempFilePath,
  264. success() {
  265. uni.showToast({
  266. title: '保存到相册成功',
  267. icon: 'success'
  268. });
  269. },
  270. fail(err) {
  271. console.log('保存图片失败',err);
  272. if (err.errMsg === 'saveImageToPhotosAlbum:fail auth deny') {
  273. uni.getSetting({
  274. success(res) {
  275. if (!res.authSetting['scope.writePhotosAlbum']) {
  276. uni.showModal({
  277. title: '提示',
  278. content: '您还没有授权访问相册,请前往设置页面打开权限。',
  279. confirmText: '去设置',
  280. success(res) {
  281. if (res.confirm) {
  282. uni.openSetting();
  283. }
  284. }
  285. });
  286. } else {
  287. uni.showToast({
  288. title: '保存图片失败',
  289. icon: 'none'
  290. });
  291. }
  292. }
  293. });
  294. } else {
  295. uni.showToast({
  296. title: '保存图片失败',
  297. icon: 'none'
  298. });
  299. }
  300. },
  301. complete() {
  302. uni.hideLoading();
  303. that.posterShow = false;
  304. }
  305. });
  306. } else {
  307. uni.showToast({
  308. title: '下载图片失败',
  309. icon: 'none'
  310. });
  311. }
  312. },
  313. fail() {
  314. uni.showToast({
  315. title: '下载图片失败',
  316. icon: 'none'
  317. });
  318. }
  319. });
  320. },
  321. // 海报相关结束
  322. newsClick(item){
  323. uni.$u.route('/pages/newsdetails', {
  324. id: item.id,
  325. type:'news'
  326. });
  327. },
  328. bannerClick(e){
  329. return false
  330. let item = this.bannerList[e];
  331. // console.log('bannerClick',this.bannerList[e]);
  332. uni.$u.route('/pages/newsdetails', {
  333. id: item.id,
  334. type:'swiperDetail'
  335. });
  336. },
  337. audioClick(){
  338. console.log('musicPlay',this.musicPlay);
  339. if (this.musicPlay == true) {
  340. this.audioStop();
  341. } else if(this.musicPlay == false){
  342. this.audioPlay();
  343. }
  344. },
  345. audioStop(){
  346. this.musicPlay = false;
  347. innerAudioContext.stop()
  348. },
  349. audioPlay(){
  350. this.musicPlay = true;
  351. innerAudioContext.play()
  352. }
  353. }
  354. }
  355. </script>
  356. <style>
  357. page{
  358. }
  359. </style>
  360. <style lang="scss" scoped>
  361. $pagegap:32rpx;
  362. .banner{
  363. position: fixed;
  364. left: 0;
  365. top: 0;
  366. width: 100%;
  367. }
  368. .blurbanner{
  369. pointer-events: none;
  370. position: fixed;
  371. left: 0;
  372. top: 0;
  373. width: 100%;
  374. transition: all 0.3s;
  375. &.isblur{
  376. backdrop-filter: blur(8px);
  377. }
  378. }
  379. .index-bg{
  380. position: fixed;
  381. display: block;
  382. left: 0;
  383. bottom: 0;
  384. width: 100%;
  385. min-height: calc( 100vh - 600rpx + 50rpx );
  386. background-repeat: no-repeat;
  387. background-position: top center;
  388. background-size: 100% auto;
  389. // background-color: #a00303;
  390. // z-index: -1;
  391. }
  392. .page-wrap{
  393. position: relative;
  394. }
  395. .star-title{
  396. margin-bottom: 22rpx;
  397. .left{
  398. .icon{
  399. width: 28rpx;
  400. height: 28rpx;
  401. margin-right: 8rpx;
  402. }
  403. .text{
  404. font-size: 32rpx;
  405. font-weight: bold;
  406. color: #FFFFFF;
  407. line-height: 48rpx;
  408. background: linear-gradient(128deg, #FFEFBC 0%, #FFD767 100%);
  409. -webkit-background-clip: text;
  410. -webkit-text-fill-color: transparent;
  411. }
  412. }
  413. .right{
  414. padding: 10rpx 32rpx 10rpx 10rpx;
  415. .text{
  416. font-size: 24rpx;
  417. font-weight: 400;
  418. color: #C79191;
  419. }
  420. }
  421. }
  422. .programme-wrap{
  423. // margin-bottom: 64rpx;
  424. .programme{
  425. // background-color: #FFFFFF;
  426. position: relative;
  427. border-radius: 30rpx;
  428. overflow: hidden;
  429. // background: radial-gradient(circle at -26rpx 230rpx, transparent 10%, #fff 4%) left, radial-gradient(circle at calc( 100% + 26rpx ) 232rpx, transparent 10%, #fff 4%) right;
  430. background-color: #fff;
  431. background-size: 50% 100%;
  432. background-repeat: no-repeat;
  433. .img{
  434. width: 100%;
  435. height: 242rpx;
  436. display: block;
  437. }
  438. .text{
  439. position: relative;
  440. // &:before{
  441. // content: '';
  442. // // width: calc( 100% - 32rpx );
  443. // width: 100%;
  444. // height: 1px;
  445. // position: absolute;
  446. // left: 0;
  447. // top: -2rpx;
  448. // border-top: 4rpx dashed #931E0C;
  449. // }
  450. padding: 32rpx 30rpx;
  451. .name{
  452. font-size: 28rpx;
  453. font-weight: bold;
  454. color: #363636;
  455. line-height: 42rpx;
  456. // margin-bottom: 18rpx;
  457. }
  458. .addr{
  459. font-size: 22rpx;
  460. font-weight: 400;
  461. color: #7F7F7F;
  462. line-height: 34rpx;
  463. }
  464. .btn{
  465. height: 51rpx;
  466. line-height: 51rpx;
  467. padding: 0 24rpx;
  468. background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
  469. border-radius: 25rpx;
  470. font-size: 20rpx;
  471. font-weight: 400;
  472. color: #FFFFFF;
  473. }
  474. }
  475. .share{
  476. position: absolute;
  477. right: 16rpx;
  478. top: 16rpx;
  479. padding: 10rpx;
  480. border-radius: 50%;
  481. background-color: rgba(0,0,0,0.4);
  482. .icon{
  483. display: block;
  484. width: 32rpx;
  485. height: 32rpx;
  486. }
  487. }
  488. }
  489. }
  490. .news-wrap{
  491. position: relative;
  492. margin-left: $pagegap;
  493. margin-bottom: 180rpx;
  494. .star-title{
  495. // margin-right: $pagegap;
  496. }
  497. .item{
  498. width: 434rpx;
  499. flex-shrink: 0;
  500. margin-right: 20rpx;
  501. background: #FFFFFF;
  502. box-shadow: 0rpx 2rpx 20rpx 0rpx rgba(59,0,0,0.5);
  503. border-radius: 12rpx;
  504. overflow: hidden;
  505. .img{
  506. display: block;
  507. width: 100%;
  508. height: 174rpx;
  509. }
  510. .text{
  511. padding: 30rpx 20rpx 28rpx;
  512. .name{
  513. font-size: 28rpx;
  514. font-weight: bold;
  515. color: #333333;
  516. margin-bottom: 12rpx;
  517. }
  518. .con{
  519. font-size: 24rpx;
  520. font-weight: 400;
  521. color: #6B6B6B;
  522. // line-height: 22rpx;
  523. margin-bottom: 20rpx;
  524. }
  525. .time{
  526. font-size: 20rpx;
  527. font-weight: 400;
  528. color: #C0C0C0;
  529. line-height: 22rpx;
  530. }
  531. .icon{
  532. display: block;
  533. width: 80rpx;
  534. height: 20rpx;
  535. }
  536. }
  537. }
  538. }
  539. .activity{
  540. display: block;
  541. width: 112rpx;
  542. height: 132rpx;
  543. position: fixed;
  544. right: 16rpx;
  545. bottom: 174rpx;
  546. }
  547. .audio-btn{
  548. width: 30px;
  549. height: 30px;
  550. border-radius: 50%;
  551. position: fixed;
  552. right: 24rpx;
  553. top: 150px;
  554. }
  555. .rotate{
  556. animation: rotate 4s infinite linear;
  557. }
  558. @keyframes rotate {
  559. 0% {
  560. transform: rotate(0deg);
  561. }
  562. 100% {
  563. transform: rotate(360deg);
  564. }
  565. }
  566. </style>