|
@@ -83,7 +83,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="date-block auditorium">
|
|
|
+ <view class="date-block auditorium generic-block">
|
|
|
<view class="title">演出厅</view>
|
|
|
<view class="date-list u-flex u-flex-wrap">
|
|
|
<view class="date-item" :class="{active:auditoriumIndex==index}" @click="auditoriumClick(index)" v-for="(date,index) in auditoriumList" :key="index">
|
|
@@ -102,30 +102,45 @@
|
|
|
当前日期暂无演出场次,请重新选择
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="date-block ticket-type">
|
|
|
- <view class="title">门票</view>
|
|
|
+ <view class="date-block ticket-type generic-block">
|
|
|
+ <view class="title">票务信息</view>
|
|
|
<view class="empty" v-if="ticketTypeList.length<1">
|
|
|
暂无门票
|
|
|
</view>
|
|
|
- <view class="type-item" :class="{active:sessionIndex==index}" v-for="(item,index) in ticketTypeList" :key="index">
|
|
|
+ <view class="date-list u-flex u-flex-wrap">
|
|
|
+ <view class="date-item" :class="{active:ticketTypeIndex==index}" @click="ticketTypeClick(index)" v-for="(date,index) in ticketTypeList" :key="index">
|
|
|
+ <view class="name">{{ date.goodsName }}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!-- <view class="type-item" :class="{active:sessionIndex==index}" v-for="(item,index) in ticketTypeList" :key="index">
|
|
|
<view class="name-price u-flex u-row-between">
|
|
|
<view class="name">{{item.goodsName}}</view>
|
|
|
<view class="prices">¥ {{item.salePrice}} 起</view>
|
|
|
</view>
|
|
|
- <!-- <view class="ishave">
|
|
|
- <text class="text">{{(item.quantity>0&&sessionList.length>=1)?'有票':'无票'}}</text>
|
|
|
- </view> -->
|
|
|
<view class="bottom u-flex u-row-between">
|
|
|
<view class="left u-flex" v-html="item.goodsSnapshot||''">
|
|
|
- <!-- 购票须知
|
|
|
- <u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon> -->
|
|
|
- <!-- {{item.goodsSnapshot||''}} -->
|
|
|
</view>
|
|
|
<view class="btn" @click="book(item)" v-if="item.quantity!==0&&sessionList.length>=1">预定</view>
|
|
|
<view class="btn disabled" v-else>无票</view>
|
|
|
</view>
|
|
|
+ </view> -->
|
|
|
+ </view>
|
|
|
+ <view class="date-block position-select generic-block">
|
|
|
+ <view class="title u-flex u-row-between">
|
|
|
+ <view class="">类型选择</view>
|
|
|
+ <view v-if="positionData.seatImg" class="" style="font-size: 24rpx;color: #aaa" @click="showSeatImg">票区图</view>
|
|
|
+ </view>
|
|
|
+ <view class="empty" v-if="positionArr.length<1">
|
|
|
+ 没有座位信息
|
|
|
+ </view>
|
|
|
+ <view class="date-list u-flex u-flex-wrap">
|
|
|
+ <view class="date-item" :class="{active:positionIndex==index}" @click="positionClick(index)" v-for="(date,index) in positionArr" :key="index">
|
|
|
+ <view class="name">{{ date.seatTypeName }} <br />¥ {{date.salePrice}}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="book-btn full-btn" v-if="positionArr.length>=1" @click="book()">确定</view>
|
|
|
+ <view class="full-btn gray" v-else>确定</view>
|
|
|
</view>
|
|
|
<!-- ticket end -->
|
|
|
<view class="details" v-if="tabsIndex==1">
|
|
@@ -255,6 +270,11 @@
|
|
|
formerNotice:{},//节目观影须知
|
|
|
performDateList:[],//有票的日期
|
|
|
// firstGet:0,
|
|
|
+ ticketTypeIndex:0,
|
|
|
+ positionData:{},//座位信息接口
|
|
|
+ positionArr:[],
|
|
|
+ positionIndex:0,
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
onShow() {
|
|
@@ -380,13 +400,19 @@
|
|
|
item.performTimeEnd = item.performTimeEnd;
|
|
|
return item
|
|
|
});
|
|
|
- uni.hideLoading();
|
|
|
+ this.sessionIndex = 0;
|
|
|
+ let session = this.sessionList[this.sessionIndex];
|
|
|
+ this.getPositionData();
|
|
|
}).catch(err=>{
|
|
|
console.log('getPoster',err);
|
|
|
})
|
|
|
},
|
|
|
formatter: (day) => {
|
|
|
+ if(!parentThis){
|
|
|
+ return
|
|
|
+ }
|
|
|
day.date = moment(day.date).format("YYYY-MM-DD HH:mm:ss")
|
|
|
+
|
|
|
// console.log('day',day);
|
|
|
// console.log('thisthisthisthisthisthisthisthisthis',parentThis);
|
|
|
// console.log('==================================',day.date.toISOString().split('T')[0]);
|
|
@@ -480,7 +506,47 @@
|
|
|
this.tabsIndex = e.index;
|
|
|
},
|
|
|
sessionClick(index){
|
|
|
+ if(this.sessionIndex==index){
|
|
|
+ // console.log('不变');
|
|
|
+ return
|
|
|
+ }
|
|
|
this.sessionIndex = index;
|
|
|
+ let session = this.sessionList[this.sessionIndex];
|
|
|
+ this.getPositionData();
|
|
|
+ console.log('sessionClick',this.sessionList[this.sessionIndex]);
|
|
|
+ },
|
|
|
+ getPositionData(){
|
|
|
+ let session = this.sessionList[this.sessionIndex]||{};
|
|
|
+ let ticketType = this.ticketTypeList[this.ticketTypeIndex];
|
|
|
+ let params ={
|
|
|
+ performId:this.performId,
|
|
|
+ goodsId:ticketType.id,
|
|
|
+ auditoriumId:this.auditoriumList[this.auditoriumIndex].id,
|
|
|
+ performTimeId:session.id,
|
|
|
+ }
|
|
|
+ this.$u.api.selectRegion(params).then(res=>{
|
|
|
+ // console.log('getPositionData',res.data);
|
|
|
+ this.positionData = res.data;
|
|
|
+ this.positionArr = res.data.regionPriceList||[];
|
|
|
+ uni.hideLoading();
|
|
|
+ }).catch(err=>{
|
|
|
+ uni.hideLoading();
|
|
|
+ console.log('getPositionData',err);
|
|
|
+ })
|
|
|
+ },
|
|
|
+ ticketTypeClick(index){
|
|
|
+ if(this.ticketTypeIndex==index){
|
|
|
+ // console.log('不变');
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.ticketTypeIndex = index;
|
|
|
+ },
|
|
|
+ positionClick(index){
|
|
|
+ if(this.positionIndex==index){
|
|
|
+ // console.log('不变');
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.positionIndex = index;
|
|
|
},
|
|
|
book(item){
|
|
|
// console.log('book',item);
|
|
@@ -490,16 +556,33 @@
|
|
|
let performTimeStart = session.performTimeStart;
|
|
|
let performTimeEnd = session.performTimeEnd;
|
|
|
let dateOBJ = this.dateList[this.dateIndex];
|
|
|
- uni.$u.route('pages/chosenposition',{
|
|
|
- goodsId:item.id,
|
|
|
+ let ticketType = this.ticketTypeList[this.ticketTypeIndex];
|
|
|
+ let seatType = this.positionArr[this.positionIndex];
|
|
|
+ // console.log('ticketType',ticketType);
|
|
|
+
|
|
|
+ let params ={
|
|
|
performId:this.performId,
|
|
|
- performName:this.performInfo.name,
|
|
|
- day:`${dateOBJ.year}-${dateOBJ.month}-${dateOBJ.day}`,
|
|
|
- performTimeStart:session.performTimeStart,
|
|
|
- performTimeEnd:session.performTimeEnd,
|
|
|
+ goodsId:ticketType.id,
|
|
|
+ auditoriumId:this.auditoriumList[this.auditoriumIndex].id,
|
|
|
performTimeId:session.id,
|
|
|
- auditoriumId:this.auditoriumList[this.auditoriumIndex].id
|
|
|
- })
|
|
|
+ seatTypeId:seatType.seatTypeId,
|
|
|
+ salePrice:seatType.salePrice
|
|
|
+ }
|
|
|
+ // console.log('book params',params);
|
|
|
+ uni.$u.route('pages/bookticket',params)
|
|
|
+
|
|
|
+
|
|
|
+ // 调整选择位置类型页面
|
|
|
+ // uni.$u.route('pages/chosenposition',{
|
|
|
+ // goodsId:item.id,
|
|
|
+ // performId:this.performId,
|
|
|
+ // performName:this.performInfo.name,
|
|
|
+ // day:`${dateOBJ.year}-${dateOBJ.month}-${dateOBJ.day}`,
|
|
|
+ // performTimeStart:session.performTimeStart,
|
|
|
+ // performTimeEnd:session.performTimeEnd,
|
|
|
+ // performTimeId:session.id,
|
|
|
+ // auditoriumId:this.auditoriumList[this.auditoriumIndex].id
|
|
|
+ // })
|
|
|
},
|
|
|
openShare(){
|
|
|
if(!this.performInfo.posterImg){
|
|
@@ -676,6 +759,17 @@
|
|
|
console.log('fail');
|
|
|
}
|
|
|
});
|
|
|
+ },
|
|
|
+ showSeatImg(){
|
|
|
+ if(!this.positionData.seatImg){
|
|
|
+ uni.$u.toast('没有图片')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ let urls = [];
|
|
|
+ urls.push(this.positionData.seatImg)
|
|
|
+ uni.previewImage({
|
|
|
+ urls: urls,
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
}
|