ticketlist.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. <template>
  2. <view class="pages">
  3. <view class="navbar-box">
  4. <u-navbar title="订单详情" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="transparent"></u-navbar>
  5. </view>
  6. <view class="banner">
  7. <image class="img" :src="staticUrl+'/img/bookticket-banner.png'" alt="">
  8. <view class="content">
  9. <view class="share">
  10. <image class="icon" :src="staticUrl+'/img/share-ico.png'" ></image>
  11. </view>
  12. <view class="name">《伟大转折》</view>
  13. <view class="addr u-flex u-row-between">
  14. <view class="text">演出地址:遵义市《伟大转折》演艺中心</view>
  15. <u-icon name="arrow-right" color="#ffffff" size="36rpx"></u-icon>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="tabs-wrap">
  20. <view class="inner">
  21. <u-tabs
  22. :list="tabsArr"
  23. @click="tabsClick"
  24. lineColor="#ED0000"
  25. lineWidth="82rpx"
  26. :activeStyle="{color: '#2D2D2D',fontWeight: 'bold'}"
  27. itemStyle="width:50%; height: 46px;box-sizing:border-box"
  28. >
  29. </u-tabs>
  30. </view>
  31. </view>
  32. <view class="page-wrap">
  33. <view class="ticket" v-if="tabsIndex==0">
  34. <view class="date-block">
  35. <view class="title">游玩日期</view>
  36. <view class="date-list u-flex">
  37. <view class="date-item" :class="{active:dateIndex==index}" @click="dateClick(index)" v-for="(date,index) in dateList" :key="index">
  38. <view class="name">{{ date.name }}</view>
  39. <view class="date">{{ date.month }} - {{ date.day }}</view>
  40. </view>
  41. <view class="date-item more-date u-flex u-row-center" @click="calendarShow = true">
  42. <view class="text">
  43. <view class="">更多</view>
  44. <view class="">日期</view>
  45. </view>
  46. <u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon>
  47. </view>
  48. </view>
  49. </view>
  50. <view class="date-block session-wrap">
  51. <view class="title">演出场次</view>
  52. <view class="session">
  53. <view class="session-item" :class="{active:sessionIndex==index}" @click="sessionClick(index)" v-for="(date,index) in sessionList" :key="index">
  54. {{ date.session }}
  55. </view>
  56. </view>
  57. </view>
  58. <view class="date-block ticket-type">
  59. <view class="title">门票</view>
  60. <view class="type-item" :class="{active:sessionIndex==index}" v-for="(item,index) in ticketTypeList" :key="index">
  61. <view class="name-price u-flex u-row-between">
  62. <view class="name">{{item.name}}</view>
  63. <view class="prices">¥ {{item.prices}}</view>
  64. </view>
  65. <view class="ishave">
  66. <text class="text">有票</text>
  67. </view>
  68. <view class="bottom u-flex u-row-between">
  69. <view class="left u-flex">
  70. 购票须知
  71. <u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon>
  72. </view>
  73. <view class="btn" @click="book(item)">预定</view>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. <!-- ticket end -->
  79. <view class="details" v-if="tabsIndex==1">
  80. <view class="details-block">
  81. <view class="title">剧情简介</view>
  82. <view class="intro">
  83. 剧情简介剧情简介剧情简介剧情简介剧情简介
  84. </view>
  85. </view>
  86. <view class="details-block actors">
  87. <view class="title u-flex u-row-between">
  88. 演职人员
  89. <view class="right u-flex">
  90. <text>全部20人</text>
  91. <u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon>
  92. </view>
  93. </view>
  94. <view class="actor-list">
  95. <u-scroll-list :indicator="false">
  96. <view class="item" v-for="(item, index) in actorsArr" :key="index">
  97. <image class="img" :src="item.imgUrl"></image>
  98. <view class="text">
  99. <view class="name">{{item.name}}</view>
  100. <view class="role u-line-1">{{item.role}}</view>
  101. </view>
  102. </view>
  103. </u-scroll-list>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. <u-calendar
  109. ref="calendar"
  110. :maxDate="maxDate"
  111. :show="calendarShow"
  112. :closeOnClickOverlay="true"
  113. @close="closeCalendar"
  114. @confirm="confirmCalendar">
  115. </u-calendar>
  116. </view>
  117. </template>
  118. <script>
  119. import { systemInfo } from "@/mixin.js";
  120. // 日历
  121. const d = new Date()
  122. const year = d.getFullYear()
  123. let month = d.getMonth() + 1
  124. month = month < 10 ? `0${month}` : month
  125. const date = d.getDate()
  126. // 日历
  127. export default {
  128. mixins:[systemInfo],
  129. data() {
  130. return {
  131. staticUrl:this.$commonConfig.staticUrl,
  132. tabsArr:[
  133. {name:'票务购买'},
  134. {name:'演出详情'}
  135. ],
  136. tabsIndex:0,
  137. dateList:[],
  138. dateIndex:0,
  139. calendarShow:false,//日历
  140. maxDate:`${year}-${month}-${date + 10}`,
  141. sessionList:[
  142. {session:'10:00-11:00'},
  143. {session:'10:00-11:00'},
  144. {session:'10:00-11:00'},
  145. {session:'10:00-11:00'},
  146. {session:'10:00-11:00'},
  147. ],
  148. sessionIndex:0,
  149. ticketTypeList:[
  150. {name:'成人票',prices:'15'},
  151. {name:'成人票',prices:'15'},
  152. {name:'成人票',prices:'15'},
  153. ],
  154. actorsArr:[
  155. {name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=1'},
  156. {name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=2'},
  157. {name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=3'},
  158. {name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=4'},
  159. ]
  160. }
  161. },
  162. onShow() {
  163. },
  164. onLoad() {
  165. // this.getSystemInfo();
  166. let today = new Date();
  167. this.setDate(today);
  168. },
  169. methods: {
  170. leftClick(e){
  171. let pages = getCurrentPages();
  172. if(pages.length==1){
  173. uni.$u.route('/pages/index/index')
  174. }else{
  175. uni.navigateBack()
  176. };
  177. },
  178. setDate(firstDay){
  179. let today = firstDay;
  180. let tomorrow = new Date();
  181. tomorrow.setDate(today.getDate() + 1);
  182. let afterTomorrow = new Date();
  183. afterTomorrow.setDate(today.getDate() + 2);
  184. this.dateList = [
  185. { year: today.getFullYear(), month: today.getMonth() + 1, day: today.getDate(),name:'今天' },
  186. { year: tomorrow.getFullYear(), month: tomorrow.getMonth() + 1, day: tomorrow.getDate() ,name:'明天'},
  187. { year: afterTomorrow.getFullYear(), month: afterTomorrow.getMonth() + 1, day: afterTomorrow.getDate(),name:'后天' }
  188. ];
  189. },
  190. dateClick(index){
  191. this.dateIndex = index;
  192. },
  193. confirmCalendar(e){
  194. console.log('confirmCalendar',e);
  195. this.setDate( new Date(e) );
  196. this.dateIndex = 0;
  197. console.log('maxDate',this.maxDate);
  198. console.log('dateList',this.dateList);
  199. this.calendarShow = false;
  200. },
  201. closeCalendar(){
  202. this.calendarShow = false;
  203. },
  204. tabsClick(e){
  205. console.log('tabsClick',e);
  206. this.tabsIndex = e.index;
  207. },
  208. sessionClick(index){
  209. this.sessionIndex = index;
  210. },
  211. book(item){
  212. console.log('book',item);
  213. uni.$u.route('pages/bookticket',{
  214. id:item.id
  215. })
  216. }
  217. }
  218. }
  219. </script>
  220. <style lang="scss" scoped>
  221. .banner{
  222. position: relative;
  223. .img{
  224. width: 750rpx;
  225. height: 554rpx;
  226. display: block;
  227. }
  228. .content{
  229. position: absolute;
  230. width: 100%;
  231. box-sizing: border-box;
  232. padding: 0 32rpx;
  233. left: 0;
  234. bottom: 100rpx;
  235. }
  236. .share{
  237. overflow: hidden;
  238. margin-bottom: 100rpx;
  239. .icon{
  240. float: right;
  241. display: block;
  242. width: 32rpx;
  243. height: 32rpx;
  244. padding: 10rpx;
  245. border-radius: 50%;
  246. background-color: rgba(0,0,0,0.4);
  247. }
  248. }
  249. .name{
  250. font-size: 44rpx;
  251. font-weight: 800;
  252. color: #FFFFFF;
  253. line-height: 66rpx;
  254. margin-bottom: 38rpx;
  255. }
  256. .addr{
  257. font-size: 24rpx;
  258. font-weight: 400;
  259. color: #FFFFFF;
  260. line-height: 36rpx;
  261. }
  262. }
  263. .tabs-wrap{
  264. position: relative;
  265. margin-bottom: 54rpx;
  266. &::after{
  267. content: '';
  268. width: 100%;
  269. height: 1px;
  270. background-color: #eee;
  271. position: absolute;
  272. left: 0;
  273. right: 0;
  274. bottom: -46rpx;
  275. }
  276. .inner{
  277. position: relative;
  278. padding-top: 50rpx;
  279. background-color: #FFFFFF;
  280. border-radius: 32rpx 32rpx 0rpx 0rpx;
  281. height: 46rpx;
  282. margin-top: -30px;
  283. }
  284. }
  285. .date-block{
  286. margin-bottom: 64rpx;
  287. }
  288. .title{
  289. font-size: 32rpx;
  290. font-weight: bold;
  291. color: #2D2D2D;
  292. line-height: 48rpx;
  293. margin-bottom: 38rpx;
  294. }
  295. .session{
  296. display: grid;
  297. grid-template-columns: repeat(3, 1fr);
  298. gap: 20rpx;
  299. .session-item{
  300. height: 80rpx;
  301. line-height: 80rpx;
  302. border-radius: 12rpx;
  303. border: 2rpx solid #636363;
  304. text-align: center;
  305. font-size: 24rpx;
  306. font-weight: 400;
  307. color: #636363;
  308. &.active{
  309. color: #ED0000;
  310. border-color: #ED0000;
  311. }
  312. }
  313. }
  314. .ticket-type{
  315. .type-item{
  316. background: #FFFFFF;
  317. box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(180,180,180,0.5);
  318. border-radius: 20rpx;
  319. margin-bottom: 20rpx;
  320. padding: 38rpx 40rpx;
  321. .name-price{
  322. margin-bottom: 26rpx;
  323. }
  324. .name{
  325. font-size: 28rpx;
  326. font-weight: 500;
  327. color: #363636;
  328. }
  329. .prices{
  330. font-size: 36rpx;
  331. font-weight: bold;
  332. color: #ED0000;
  333. }
  334. .ishave{
  335. margin-bottom: 26rpx;
  336. .text{
  337. height: 30rpx;
  338. line-height: 30rpx;
  339. padding: 0 22rpx;
  340. background: #FFC8C8;
  341. border-radius: 20rpx;
  342. font-size: 20rpx;
  343. font-weight: 400;
  344. color: #ED0000;
  345. }
  346. }
  347. .bottom{
  348. font-size: 22rpx;
  349. font-weight: 400;
  350. color: #7F7F7F;
  351. .btn{
  352. height: 60rpx;
  353. line-height: 60rpx;
  354. background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
  355. border-radius: 30rpx;
  356. padding: 0 36rpx;
  357. font-size: 28rpx;
  358. font-weight: 500;
  359. color: #FFFFFF;
  360. }
  361. }
  362. }
  363. }
  364. .details{
  365. .title{}
  366. .details-block{
  367. background: #FFFFFF;
  368. box-shadow: 0rpx 2rpx 12rpx 2rpx rgba(221,221,221,0.5);
  369. border-radius: 20rpx;
  370. margin-bottom: 24rpx;
  371. padding: 36rpx;
  372. &.actors{
  373. .title{
  374. .right{
  375. font-size: 24rpx;
  376. font-weight: 400;
  377. color: #7F7F7F;
  378. }
  379. }
  380. }
  381. }
  382. .intro{
  383. font-size: 26rpx;
  384. font-weight: 400;
  385. color: #4E4E4E;
  386. line-height: 40rpx;
  387. }
  388. .actor-list{
  389. .item{
  390. flex-shrink: 0;
  391. width: 160rpx;
  392. text-align: center;
  393. margin-right: 24rpx;
  394. }
  395. .img{
  396. display: block;
  397. width: 100%;
  398. height: 200rpx;
  399. margin-bottom: 16rpx;
  400. }
  401. .name{
  402. font-size: 28rpx;
  403. font-weight: 500;
  404. color: #2D2D2D;
  405. line-height: 42rpx;
  406. margin-bottom: 4rpx;
  407. }
  408. .role{
  409. font-size: 24rpx;
  410. font-weight: 400;
  411. color: #7F7F7F;
  412. line-height: 36rpx;
  413. }
  414. }
  415. }
  416. </style>