index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  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. radius="0"
  12. indicator
  13. circular
  14. ></u-swiper>
  15. </view>
  16. <!-- 占位 banner -->
  17. <view class="holdbanner" style="height: 600rpx;pointer-events:none"></view>
  18. <!-- 页面滚动banner模糊 -->
  19. <view class="blurbanner" style="height: 600rpx;" :class="{ isblur: isblur }"></view>
  20. <view class="index-bg" :style="{backgroundImage:`url(${staticUrl}/img/index-bg.png?a=1)`}"></view>
  21. <view class="page-wrap">
  22. <view class="programme-wrap">
  23. <view class="star-title u-flex u-row-between">
  24. <view class="left u-flex">
  25. <image class="icon" :src="staticUrl+'/img/title-star.png'" ></image>
  26. <text class="text">演出剧目</text>
  27. </view>
  28. </view>
  29. <view class="programme">
  30. <image class="img" :src="staticUrl+'/img/programme-01.png'" ></image>
  31. <view class="text u-flex u-row-between">
  32. <view class="left">
  33. <view class="name">《伟大转折》</view>
  34. <view class="addr">演出地点:遵义市《伟大转折》演艺中心</view>
  35. </view>
  36. <view class="btn" @click="bookticket">立即预定</view>
  37. </view>
  38. <view class="share" @click="openShare">
  39. <image class="icon" :src="staticUrl+'/img/share-ico.png'" ></image>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="news-wrap">
  45. <view class="star-title u-flex u-row-between">
  46. <view class="left u-flex">
  47. <image class="icon" :src="staticUrl+'/img/title-star.png'" ></image>
  48. <text class="text">演出资讯</text>
  49. </view>
  50. <view class="right u-flex">
  51. <text class="text" @click="$u.route('pages/news')">更多</text>
  52. <u-icon name="arrow-right" color="#C79191" size="36rpx"></u-icon>
  53. </view>
  54. </view>
  55. <view class="news">
  56. <u-scroll-list :indicator="false">
  57. <view class="item" v-for="(item, index) in newsList" @click="newsClick(item)" :key="index">
  58. <image class="img" :src="item.imgUrl"></image>
  59. <view class="text">
  60. <view class="name">{{item.name}}</view>
  61. <view class="con u-line-1">{{item.con}}</view>
  62. <view class="time u-flex u-row-between">
  63. <view class="left">{{item.time}}</view>
  64. <image class="icon" :src="staticUrl+'/img/arrow-right-ico.png'" ></image>
  65. </view>
  66. </view>
  67. </view>
  68. </u-scroll-list>
  69. </view>
  70. </view>
  71. <!-- content-wrap end -->
  72. <image class="activity" :src="staticUrl+'/img/activity.png'" ></image>
  73. <!-- 分享选择弹出内容 -->
  74. <view class="share-option" :class="{shareShow:shareShow}">
  75. <view class="overlay" v-if="shareShow" @click="shareShow=false"></view>
  76. <button class="share-option-item wx-share" data-name="shareBtn" open-type="share">
  77. 发送给朋友
  78. </button>
  79. <view class="share-option-item" @click="getPoster">生成海报</view>
  80. <view class="share-option-item" @click="shareShow=false">取消</view>
  81. </view>
  82. <u-popup :show="posterShow" @close="posterShow=false" ref="uni-popup">
  83. <view class="poster-wrap u-flex u-col-center">
  84. <view class="poster-inner">
  85. <view class="close-wrap" @click="posterShow=false">
  86. <u-icon name="close-circle" color="#fff" size="56rpx"></u-icon>
  87. </view>
  88. <view class="poster" id="poster" ref="poster" >
  89. <u--image :showLoading="true" :src="posterSrc" width="100%" height="65vh" mode="aspectFit"></u--image>
  90. </view>
  91. <!-- savePoster -->
  92. <view class="poster-btn" @click="saveImage">保存图片</view>
  93. </view>
  94. </view>
  95. </u-popup>
  96. <u-toast ref="uToast"></u-toast>
  97. <tabbar :tabbarIndexProps='0' />
  98. </view>
  99. </template>
  100. <script>
  101. import { systemInfo } from "@/mixin.js";
  102. import tabbar from "../../components/tabbar.vue";
  103. export default {
  104. components:{
  105. tabbar,
  106. // cartfixed
  107. },
  108. mixins:[systemInfo],
  109. data() {
  110. return {
  111. staticUrl:this.$commonConfig.staticUrl,
  112. bannerList: [
  113. 'https://unsplash.it/750/600?id=1',
  114. 'https://unsplash.it/750/600?id=2'
  115. ],
  116. bannerCurrent: 0,
  117. isblur:false,
  118. newsList:[
  119. {name:'资讯标题',con:'11月12日,以“打造特色红色文化...',time:'2023-11-12',imgUrl:'https://unsplash.it/474/170?id=1'},
  120. {name:'资讯标题',con:'11月12日,以“打造特色红色文化...',time:'2023-11-12',imgUrl:'https://unsplash.it/474/170?id=2'},
  121. {name:'资讯标题',con:'11月12日,以“打造特色红色文化...',time:'2023-11-12',imgUrl:'https://unsplash.it/474/170?id=3'},
  122. ],
  123. shareShow:false,
  124. posterShow:false,
  125. posterStyle:{},
  126. posterSrc:''
  127. }
  128. },
  129. computed: {
  130. },
  131. onShow() {
  132. },
  133. beforeRouteLeave() {
  134. },
  135. onLoad(query) {
  136. this.getSystemInfo();
  137. // console.log('statusBarHeight',this.statusBarHeight);
  138. // console.log('navigationBarHeight',this.navigationBarHeight);
  139. // console.log('windowHeight',this.windowHeight);
  140. // console.log('navHeight',this.navHeight);
  141. // console.log('vuex_member_info=======',this.vuex_member_info);
  142. },
  143. onReady() {
  144. },
  145. onUnload() {
  146. },
  147. methods: {
  148. getMemberInfo(){
  149. this.$u.api.memberInfo({id:this.vuex_member_info.id}).then(res=>{
  150. this.memberInfo = res.data;
  151. this.avatar = res.data.avatar;
  152. this.$u.vuex('vuex_member_info', res.data);
  153. // console.log('memberInfo',this.memberInfo);
  154. }).catch(err=>{
  155. // console.log('memberInfo',err.data);
  156. })
  157. },
  158. getHotGoods(){
  159. this.$u.api.topGoodList({pageNum:1,pageSize:20}).then(res=>{
  160. this.hotGoods = res.data.rows;
  161. console.log('res',res);
  162. }).catch(err=>{
  163. console.log('getHotGoods',err.data);
  164. })
  165. },
  166. goLogin(){
  167. uni.$u.route('/pages/login/login')
  168. },
  169. onPageScroll(e){
  170. if(e.scrollTop>100){
  171. this.isblur = true
  172. }else{
  173. this.isblur = false
  174. }
  175. },
  176. bookticket(){
  177. uni.$u.route('pages/ticketlist')
  178. },
  179. openShare(){
  180. this.shareShow = true;
  181. },
  182. // 海报相关开始
  183. getPoster(){
  184. this.posterShow = true;
  185. this.shareShow = false;
  186. this.$u.api.getPoster({goodsId:this.id}).then(res=>{
  187. this.posterSrc = res.data.imageUrl;
  188. // console.log('getPoster',res.data);
  189. }).catch(err=>{
  190. console.log('getPoster',err);
  191. })
  192. },
  193. saveImage() {
  194. let that = this;
  195. uni.showLoading({
  196. title: '保存中'
  197. });
  198. uni.downloadFile({
  199. url: this.posterSrc,
  200. success(res) {
  201. if (res.statusCode === 200) {
  202. uni.saveImageToPhotosAlbum({
  203. filePath: res.tempFilePath,
  204. success() {
  205. uni.showToast({
  206. title: '保存到相册成功',
  207. icon: 'success'
  208. });
  209. },
  210. fail(err) {
  211. console.log('保存图片失败',err);
  212. if (err.errMsg === 'saveImageToPhotosAlbum:fail auth deny') {
  213. uni.getSetting({
  214. success(res) {
  215. if (!res.authSetting['scope.writePhotosAlbum']) {
  216. uni.showModal({
  217. title: '提示',
  218. content: '您还没有授权访问相册,请前往设置页面打开权限。',
  219. confirmText: '去设置',
  220. success(res) {
  221. if (res.confirm) {
  222. uni.openSetting();
  223. }
  224. }
  225. });
  226. } else {
  227. uni.showToast({
  228. title: '保存图片失败',
  229. icon: 'none'
  230. });
  231. }
  232. }
  233. });
  234. } else {
  235. uni.showToast({
  236. title: '保存图片失败',
  237. icon: 'none'
  238. });
  239. }
  240. },
  241. complete() {
  242. uni.hideLoading();
  243. that.posterShow = false;
  244. }
  245. });
  246. } else {
  247. uni.showToast({
  248. title: '下载图片失败',
  249. icon: 'none'
  250. });
  251. }
  252. },
  253. fail() {
  254. uni.showToast({
  255. title: '下载图片失败',
  256. icon: 'none'
  257. });
  258. }
  259. });
  260. },
  261. // 海报相关结束
  262. newsClick(item){
  263. uni.$u.route('/pages/newsdetails', {
  264. id: item.id,
  265. type:'news'
  266. });
  267. }
  268. }
  269. }
  270. </script>
  271. <style>
  272. page{
  273. }
  274. </style>
  275. <style lang="scss" scoped>
  276. $pagegap:32rpx;
  277. .banner{
  278. position: fixed;
  279. left: 0;
  280. top: 0;
  281. width: 100%;
  282. }
  283. .blurbanner{
  284. pointer-events: none;
  285. position: fixed;
  286. left: 0;
  287. top: 0;
  288. width: 100%;
  289. transition: all 0.3s;
  290. &.isblur{
  291. backdrop-filter: blur(8px);
  292. }
  293. }
  294. .index-bg{
  295. position: fixed;
  296. display: block;
  297. left: 0;
  298. bottom: 0;
  299. width: 100%;
  300. min-height: calc( 100vh - 600rpx + 50rpx );
  301. background-repeat: no-repeat;
  302. background-position: top center;
  303. background-size: 100% auto;
  304. // z-index: -1;
  305. }
  306. .page-wrap{
  307. position: relative;
  308. }
  309. .star-title{
  310. margin-bottom: 32rpx;
  311. .left{
  312. .icon{
  313. width: 28rpx;
  314. height: 28rpx;
  315. margin-right: 8rpx;
  316. }
  317. .text{
  318. font-size: 32rpx;
  319. font-weight: bold;
  320. color: #FFFFFF;
  321. line-height: 48rpx;
  322. background: linear-gradient(128deg, #FFEFBC 0%, #FFD767 100%);
  323. -webkit-background-clip: text;
  324. -webkit-text-fill-color: transparent;
  325. }
  326. }
  327. .right{
  328. .text{
  329. font-size: 24rpx;
  330. font-weight: 400;
  331. color: #C79191;
  332. }
  333. }
  334. }
  335. .programme-wrap{
  336. margin-bottom: 64rpx;
  337. .programme{
  338. // background-color: #FFFFFF;
  339. position: relative;
  340. border-radius: 30rpx;
  341. overflow: hidden;
  342. 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;
  343. background-size: 50% 100%;
  344. background-repeat: no-repeat;
  345. .img{
  346. width: 100%;
  347. height: 242rpx;
  348. display: block;
  349. }
  350. .text{
  351. position: relative;
  352. &:before{
  353. content: '';
  354. width: calc( 100% - 26rpx );
  355. height: 1px;
  356. position: absolute;
  357. left: 26rpx;
  358. top: -2rpx;
  359. border-top: 4rpx dashed #931E0C;
  360. }
  361. padding: 32rpx 30rpx;
  362. .name{
  363. font-size: 28rpx;
  364. font-weight: bold;
  365. color: #363636;
  366. line-height: 42rpx;
  367. margin-bottom: 18rpx;
  368. }
  369. .addr{
  370. font-size: 22rpx;
  371. font-weight: 400;
  372. color: #7F7F7F;
  373. line-height: 34rpx;
  374. }
  375. .btn{
  376. height: 51rpx;
  377. line-height: 51rpx;
  378. padding: 0 24rpx;
  379. background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
  380. border-radius: 25rpx;
  381. font-size: 20rpx;
  382. font-weight: 400;
  383. color: #FFFFFF;
  384. }
  385. }
  386. .share{
  387. position: absolute;
  388. right: 16rpx;
  389. top: 16rpx;
  390. padding: 10rpx;
  391. border-radius: 50%;
  392. background-color: rgba(0,0,0,0.4);
  393. .icon{
  394. display: block;
  395. width: 32rpx;
  396. height: 32rpx;
  397. }
  398. }
  399. }
  400. }
  401. .news-wrap{
  402. position: relative;
  403. margin-left: $pagegap;
  404. margin-bottom: 180rpx;
  405. .star-title{
  406. margin-right: $pagegap;
  407. }
  408. .item{
  409. width: 434rpx;
  410. flex-shrink: 0;
  411. margin-right: 20rpx;
  412. background: #FFFFFF;
  413. box-shadow: 0rpx 2rpx 20rpx 0rpx rgba(59,0,0,0.5);
  414. border-radius: 12rpx;
  415. overflow: hidden;
  416. .img{
  417. display: block;
  418. width: 100%;
  419. height: 174rpx;
  420. }
  421. .text{
  422. padding: 30rpx 20rpx 22rpx;
  423. .name{
  424. font-size: 28rpx;
  425. font-weight: bold;
  426. color: #333333;
  427. line-height: 22rpx;
  428. margin-bottom: 12rpx;
  429. }
  430. .con{
  431. font-size: 24rpx;
  432. font-weight: 400;
  433. color: #6B6B6B;
  434. line-height: 22rpx;
  435. margin-bottom: 20rpx;
  436. }
  437. .time{
  438. font-size: 20rpx;
  439. font-weight: 400;
  440. color: #C0C0C0;
  441. line-height: 22rpx;
  442. }
  443. .icon{
  444. display: block;
  445. width: 80rpx;
  446. height: 20rpx;
  447. }
  448. }
  449. }
  450. }
  451. .activity{
  452. display: block;
  453. width: 112rpx;
  454. height: 132rpx;
  455. position: fixed;
  456. right: 16rpx;
  457. bottom: 174rpx;
  458. }
  459. </style>