bookticket.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. <template>
  2. <view class="pages">
  3. <view class="" :style="{height: navHeight+'px' }"></view>
  4. <view class="navbar-box">
  5. <u-navbar title="订单详情" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="transparent"></u-navbar>
  6. </view>
  7. <view class="page-wrap">
  8. <view class="base-info">
  9. <view class="up u-flex">
  10. <image class="img" :src="staticUrl+'/img/bookticket-banner.png'" alt="">
  11. <view class="text">
  12. <view class="name text-item">《伟大转折》-【成人票】</view>
  13. <view class="time text-item">今天 10:00-11:00</view>
  14. <view class="num text-item">成人票 x1</view>
  15. <view class="position text-item">《伟大转折》演艺中心 x1</view>
  16. <view class="addr u-flex u-row-between">
  17. <view class="u-line-1">地址:遵义市《伟大转折》演艺中心</view>
  18. <u-icon name="arrow-right" color="#2D2D2D" size="36rpx"></u-icon>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="down">
  23. <view class="num-wrap u-flex u-row-between">
  24. <view class="title">选购数量</view>
  25. <view class="num">1</view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="block-wrap visitors">
  30. <view class="block-title u-flex">
  31. <view class="name">观影人信息</view>
  32. <!-- <text>用于入园身份验证</text> -->
  33. </view>
  34. <view class="people-list u-flex u-flex-wrap">
  35. <view class="people btn" v-if="visitors.length>0" v-for="(visitor,index) in visitors" :key="index">
  36. {{visitor.name}}
  37. </view>
  38. <view class="btn u-flex u-row-center" @click="visitorShow = true">
  39. <u-icon name="plus-circle" color="#2D2D2D" size="32rpx"></u-icon>
  40. <text class="text">新增/更换</text>
  41. </view>
  42. </view>
  43. <!-- <view class="no-people u-flex" v-if="!visitors.length>0">
  44. <text>游客</text>
  45. <text class="right" @click="visitorShow = true">点击选择游客</text>
  46. </view> -->
  47. <view class="peoples" v-if="visitors.length>0">
  48. <view class="peoples-item u-flex u-row-between" v-for="(visitor,index) in visitors" :key="index">
  49. <view class="left u-flex">
  50. <u-icon @click="delVisitor(visitor)" name="close-circle" color="#2D2D2D" size="32rpx"></u-icon>
  51. <text style="margin-left: 8rpx;">观影人{{ index + 1 }}</text>
  52. <text class="name">{{visitor.name}}</text>
  53. <text class="people-id">{{ visitor.sfz | maskID }}</text>
  54. </view>
  55. <view class="right" @click="editVisitor(visitor)">编辑</view>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="coupon">
  60. <view class="title u-flex u-row-between u-border-bottom">
  61. <text>本单可享优惠</text>
  62. </view>
  63. <view class="single-til u-flex u-row-between">
  64. <view class="text">优惠券</view>
  65. <view class="more-text u-flex">
  66. <text>未使用</text>
  67. <u-icon name="arrow-right" color="#E6E6E6" size="24rpx"></u-icon>
  68. </view>
  69. </view>
  70. <view class="no-coupon">
  71. 您暂无可使用优惠券~
  72. </view>
  73. </view>
  74. <view class="notice">
  75. <view class="title u-flex u-row-between u-border-bottom">
  76. <text>购票须知</text>
  77. </view>
  78. <view class="notice-item">
  79. 1.由于设备故障等不可抗力因素,存在少量场次取消的情况,会
  80. 进行退票退款
  81. </view>
  82. <view class="notice-item">
  83. 2.由于影院系统不稳定等因素,存在出票失败的情况,会进行退款
  84. </view>
  85. <view class="notice-item">
  86. 3.取票码可以在“我的-订单页”中查看
  87. </view>
  88. </view>
  89. </view>
  90. <u-popup :show="visitorShow">
  91. <view class="people-show-content">
  92. <view class="title">
  93. <view class="cancel" @click="visitorShow=false">取消</view>
  94. 选择观影人
  95. </view>
  96. <view class="add-btn u-flex u-row-center" @click="addVisitor">
  97. <image class="img" :src="staticUrl+'/img/car.png'" ></image>
  98. 添加观影人信息
  99. </view>
  100. <view class="list">
  101. <u-checkbox-group
  102. v-model="selectedVisitor"
  103. iconPlacement="left">
  104. <view class="people u-flex u-row-between" v-for="(item,index) in visitorList" :key="index">
  105. <u-checkbox activeColor="#ED0303" :label="item.name" :name="item.id"></u-checkbox>
  106. <u-icon name="edit-pen-fill" color="#7F7F7F" size="32rpx" @click="editVisitor(item)"></u-icon>
  107. </view>
  108. </u-checkbox-group>
  109. </view>
  110. <view class="full-btn" @click="confirmVisitor">确定</view>
  111. </view>
  112. </u-popup>
  113. <view class="page-bottom">
  114. <view class="inner u-flex u-row-between">
  115. <view class="left u-flex">
  116. <text>应付金额:</text>
  117. <view class="total-price">
  118. {{totalPrice}}
  119. </view>
  120. </view>
  121. <view class="right">
  122. <view class="btn active" v-if="totalPrice>0&&cansubmit" @click="submitorder">去结算</view>
  123. <view class="btn" v-else>提交订单</view>
  124. </view>
  125. </view>
  126. </view>
  127. </view>
  128. </template>
  129. <script>
  130. import { systemInfo } from "@/mixin.js";
  131. export default {
  132. mixins:[systemInfo],
  133. data() {
  134. return {
  135. cansubmit:true,
  136. staticUrl:this.$commonConfig.staticUrl,
  137. visitors:[],//游客
  138. visitorShow:false,//游客弹层
  139. visitorList:[
  140. {id:'1',name:'张三',sfz:'522501199012037605'},
  141. {id:'2',name:'李四',sfz:'522501196012037605'},
  142. {id:'3',name:'王五',sfz:'522501202112037605'},
  143. ],//游客列表
  144. selectedVisitor:[],//选中的游客
  145. }
  146. },
  147. computed: {
  148. totalPrice() {
  149. let that = this;
  150. return this.visitors.reduce((total, item) => {
  151. let price = null;
  152. // if(that.vuex_member_info.priceType>1){
  153. // price = item.vipPrice
  154. // }else{
  155. // price = item.salePrice
  156. // }
  157. price = item.levelPrice
  158. total += price * item.quantity;
  159. return total;
  160. }, 0).toFixed(2);
  161. },
  162. },
  163. onShow() {
  164. },
  165. onLoad() {
  166. this.getSystemInfo();
  167. },
  168. methods: {
  169. leftClick(e){
  170. let pages = getCurrentPages();
  171. if(pages.length==1){
  172. uni.$u.route('/pages/index/index')
  173. }else{
  174. uni.navigateBack()
  175. };
  176. },
  177. confirmVisitor(){
  178. let that = this;
  179. // console.log('selectedVisitor',this.selectedVisitor);
  180. this.visitorShow = false;
  181. this.visitors = this.visitorList.filter(obj => that.selectedVisitor.includes(obj.id));
  182. // console.log('this.visitors',this.visitors);
  183. },
  184. delVisitor(visitor){
  185. // console.log('delVisitor',visitor);
  186. this.visitors = this.visitors.filter(obj => obj.id!=visitor.id );
  187. },
  188. addVisitor(){
  189. uni.$u.route('/center/people', {
  190. type: 'addVisitor',
  191. fromPage:'bookticket'
  192. });
  193. },
  194. editVisitor(item){
  195. uni.$u.route('/center/people', {
  196. type: 'editVisitor',
  197. fromPage:'bookticket',
  198. id:item.id
  199. });
  200. },
  201. submitorder(){
  202. this.cansubmit = false;
  203. },
  204. }
  205. }
  206. </script>
  207. <style>
  208. page{
  209. background: linear-gradient(180deg, #ED0000 0%, #F9FBFD 50%,#fff 100%);
  210. background-repeat: no-repeat;
  211. }
  212. </style>
  213. <style lang="scss" scoped>
  214. .base-info{
  215. border-radius: 30rpx;
  216. overflow: hidden;
  217. background: radial-gradient(circle at -26rpx 294rpx, transparent 8%, #fff 4%) left, radial-gradient(circle at calc( 100% + 26rpx ) 294rpx, transparent 8%, #fff 4%) right;
  218. background-size: 50% 100%;
  219. background-repeat: no-repeat;
  220. padding: 34rpx 36rpx;
  221. box-sizing: border-box;
  222. margin: 30rpx 0 40rpx;
  223. .up{
  224. margin-bottom: 36rpx;
  225. .img{
  226. display: block;
  227. width: 172rpx;
  228. height: 230rpx;
  229. border-radius: 20rpx;
  230. margin-right: 32rpx;
  231. }
  232. .text{
  233. font-size: 22rpx;
  234. font-weight: 400;
  235. color: #606060;
  236. line-height: 1;
  237. }
  238. .text-item{
  239. margin-bottom: 18rpx;
  240. }
  241. .name{
  242. font-size: 32rpx;
  243. font-weight: bold;
  244. color: #2D2D2D;
  245. }
  246. .addr{
  247. font-size: 24rpx;
  248. font-weight: 500;
  249. color: #2D2D2D;
  250. }
  251. }
  252. .down{
  253. position: relative;
  254. &:before{
  255. content: '';
  256. width: calc( 100% + 26rpx );
  257. height: 1px;
  258. position: absolute;
  259. left: -13rpx;
  260. top: -2rpx;
  261. border-top: 4rpx dashed #F39FA0;
  262. }
  263. .num-wrap{
  264. padding-top: 36rpx;
  265. }
  266. }
  267. }
  268. .block-wrap{
  269. background: #FFFFFF;
  270. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(221,221,221,0.5);
  271. border-radius: 20rpx;
  272. margin-bottom: 28rpx;
  273. padding: 32rpx 30rpx 34rpx;
  274. .block-title{
  275. // padding-left: 16rpx;
  276. position: relative;
  277. margin-bottom: 22rpx;
  278. font-size: 24rpx;
  279. font-weight: 500;
  280. color: #CACACA;
  281. // &:before{
  282. // content: '';
  283. // width: 6rpx;
  284. // height: 32rpx;
  285. // background: #1677FF;
  286. // border-radius: 4rpx;
  287. // position: absolute;
  288. // left: 0;
  289. // top: 50%;
  290. // margin-top: -16rpx;
  291. // }
  292. .name{
  293. font-size: 32rpx;
  294. font-weight: bold;
  295. color: #2D2D2D;
  296. margin-right: 20rpx;
  297. }
  298. }
  299. .no-people{
  300. font-size: 28rpx;
  301. font-weight: 400;
  302. color: #7F7F7F;
  303. .right{
  304. margin-left: 20rpx;
  305. color: #1677FF;
  306. }
  307. }
  308. .peoples{
  309. font-size: 28rpx;
  310. font-weight: 400;
  311. color: #7F7F7F;
  312. margin-bottom: 24rpx;
  313. .peoples-item{
  314. margin-bottom: 10rpx;
  315. }
  316. .name{
  317. margin-left: 20rpx;
  318. margin-right: 28rpx;
  319. font-size: 28rpx;
  320. font-weight: bold;
  321. color: #363636;
  322. }
  323. .people-id{
  324. font-size: 20rpx;
  325. font-weight: 400;
  326. color: #606060;
  327. }
  328. .right{
  329. font-size: 28rpx;
  330. font-weight: 400;
  331. color: #ED0303;
  332. }
  333. }
  334. }
  335. .people-list{
  336. margin-bottom: 20rpx;
  337. .btn{
  338. width: 200rpx;
  339. height: 60rpx;
  340. line-height: 60rpx;
  341. font-size: 24rpx;
  342. font-weight: 500;
  343. color: #2D2D2D;
  344. background-color: #F1F1F1;
  345. border: 1px solid #F1F1F1;
  346. border-radius: 8rpx;
  347. margin-bottom: 12rpx;
  348. .text{
  349. margin-left: 16rpx;
  350. }
  351. &.people{
  352. margin-right: 16rpx;
  353. text-align: center;
  354. background-color: #FFF2F2;
  355. border-color: #ED0303;
  356. }
  357. }
  358. }
  359. .visitors{
  360. margin-bottom: 20rpx;
  361. }
  362. .people-show-content{
  363. background: #FFFFFF;
  364. border-radius: 40rpx 40rpx 0rpx 0rpx;
  365. padding: 30rpx 40rpx;
  366. .title{
  367. position: relative;
  368. font-size: 32rpx;
  369. font-weight: 500;
  370. color: #606060;
  371. margin-bottom: 46rpx;
  372. text-align: center;
  373. .cancel{
  374. position: absolute;
  375. left: 0;
  376. top: 0;
  377. }
  378. }
  379. .add-btn{
  380. margin-bottom: 28rpx;
  381. background: #E5F0FF;
  382. border-radius: 44rpx;
  383. padding: 26rpx;
  384. font-size: 24rpx;
  385. font-weight: 400;
  386. color: #1677FF;
  387. .img{
  388. width: 28rpx;
  389. height: 36rpx;
  390. margin-right: 36rpx;
  391. }
  392. }
  393. .list{
  394. /deep/ .u-radio-group{
  395. flex-wrap: wrap;
  396. }
  397. /deep/ .u-checkbox-group{
  398. flex-wrap: wrap;
  399. }
  400. overflow-y: auto;
  401. height: 40vh;
  402. .people{
  403. width: 100%;
  404. margin-bottom: 24rpx;
  405. }
  406. }
  407. .btn{}
  408. }
  409. .coupon{
  410. background: #FFFFFF;
  411. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(232,232,232,0.5);
  412. border-radius: 16rpx;
  413. padding: 44rpx 36rpx;
  414. margin-bottom: 24rpx;
  415. .title{
  416. font-size: 28rpx;
  417. font-weight: bold;
  418. color: #2D2D2D;
  419. padding-bottom: 20rpx;
  420. margin-bottom: 26rpx;
  421. border-bottom-style:dashed;
  422. }
  423. .single-til{
  424. margin-bottom: 28rpx;
  425. .text{
  426. font-weight: 400;
  427. }
  428. }
  429. .no-coupon{
  430. height: 116rpx;
  431. line-height: 116rpx;
  432. text-align: center;
  433. background: #F9FAFD;
  434. border-radius: 8rpx;
  435. font-size: 24rpx;
  436. font-weight: 400;
  437. color: #C0C0C0;
  438. }
  439. }
  440. .notice{
  441. background: #FFFFFF;
  442. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(232,232,232,0.5);
  443. border-radius: 16rpx;
  444. padding: 44rpx 36rpx;
  445. margin-bottom: 24rpx;
  446. .title{
  447. font-size: 28rpx;
  448. font-weight: bold;
  449. color: #2D2D2D;
  450. padding-bottom: 20rpx;
  451. margin-bottom: 26rpx;
  452. border-bottom-style:dashed;
  453. }
  454. .notice-item{
  455. font-size: 24rpx;
  456. font-weight: 400;
  457. color: #7F7F7F;
  458. line-height: 36rpx;
  459. margin-bottom: 8rpx;
  460. }
  461. }
  462. .page-bottom{
  463. position: relative;
  464. z-index: 1001;
  465. height: 98rpx;
  466. padding: 24rpx 20rpx 50rpx;
  467. .inner{
  468. position: fixed;
  469. background-color: #fff;
  470. height: 98rpx;
  471. left: 0;
  472. right: 0;
  473. bottom: 0;
  474. padding: 24rpx 20rpx 50rpx;
  475. box-shadow: 0rpx -4rpx 12rpx 0rpx rgba(215,215,215,0.5);
  476. .total-price{
  477. font-size: 40rpx;
  478. font-weight: bold;
  479. color: #ED0000;
  480. }
  481. .btn{
  482. font-size: 28rpx;
  483. height: 80rpx;
  484. line-height: 80rpx;
  485. border-radius: 50rpx;
  486. padding: 0 50rpx;
  487. background-color: #eee;
  488. color: #333;
  489. text-align: center;
  490. &.active{
  491. background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
  492. color: #fff;
  493. }
  494. }
  495. }
  496. }
  497. </style>