|
@@ -60,7 +60,7 @@
|
|
|
<view class="title">演出场次</view>
|
|
|
<view class="session">
|
|
|
<view class="session-item" :class="{active:sessionIndex==index}" @click="sessionClick(index)" v-for="(date,index) in sessionList" :key="index">
|
|
|
- {{ $u.timeFormat(date.performTimeStart, 'hh:MM') }} - {{ $u.timeFormat(date.performTimeEnd, 'hh:MM') }}
|
|
|
+ {{ date.performTimeStart}} - {{date.performTimeEnd}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="empty" v-if="auditoriumList.length>=1&&sessionList.length<1">
|
|
@@ -82,9 +82,8 @@
|
|
|
<!-- 购票须知
|
|
|
<u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon> -->
|
|
|
</view>
|
|
|
- <view class="btn" @click="book(item)">预定</view>
|
|
|
<view class="btn" @click="book(item)" v-if="item.quantity>0&&sessionList.length>=1">预定</view>
|
|
|
- <view class="btn disabled" v-else>暂无余票</view>
|
|
|
+ <view class="btn disabled" v-else>无票</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -155,6 +154,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
+ <canvas canvas-id="canvas" class="canvas" style="width: 670px; height: 900px;"></canvas>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -227,14 +227,14 @@
|
|
|
this.auditoriumList = res.data.theatreList[0].auditoriumList;
|
|
|
this.ticketTypeList = res.data.goodsList;
|
|
|
this.getTimes()
|
|
|
- console.log('auditoriumList',this.auditoriumList);
|
|
|
+ // console.log('auditoriumList',this.auditoriumList);
|
|
|
}).catch(err=>{
|
|
|
console.log('getPoster',err);
|
|
|
})
|
|
|
},
|
|
|
getPerformInfo(){
|
|
|
this.$u.api.performInfo({id:this.performId}).then(res=>{
|
|
|
- console.log('getPerformInfo',res.data);
|
|
|
+ // console.log('getPerformInfo',res.data);
|
|
|
this.performInfo = res.data;
|
|
|
this.actorsArr = res.data.performerList;
|
|
|
}).catch(err=>{
|
|
@@ -243,7 +243,7 @@
|
|
|
},
|
|
|
getPerformerNotice(){
|
|
|
this.$u.api.performerNotice({performId:this.performId}).then(res=>{
|
|
|
- console.log('getPerformerNotice',res.data);
|
|
|
+ // console.log('getPerformerNotice',res.data);
|
|
|
this.formerNotice = res.data.performNotice;
|
|
|
}).catch(err=>{
|
|
|
console.log('getPerformerNotice',err);
|
|
@@ -260,8 +260,12 @@
|
|
|
};
|
|
|
// console.log('param',param);
|
|
|
this.$u.api.getAuditoriumTimes(param).then(res=>{
|
|
|
- console.log('getTimes',res.data);
|
|
|
- this.sessionList = res.data.list;
|
|
|
+ // console.log('getTimes',res.data);
|
|
|
+ this.sessionList = res.data.list.map(item=>{
|
|
|
+ item.performTimeStart = item.performTimeStart;
|
|
|
+ item.performTimeEnd = item.performTimeEnd;
|
|
|
+ return item
|
|
|
+ });
|
|
|
}).catch(err=>{
|
|
|
console.log('getPoster',err);
|
|
|
})
|
|
@@ -290,30 +294,30 @@
|
|
|
this.auditoriumIndex = index;
|
|
|
},
|
|
|
confirmCalendar(e){
|
|
|
- console.log('confirmCalendar',e);
|
|
|
+ // console.log('confirmCalendar',e);
|
|
|
this.setDate( new Date(e) );
|
|
|
this.dateIndex = 0;
|
|
|
- console.log('maxDate',this.maxDate);
|
|
|
- console.log('dateList',this.dateList);
|
|
|
+ // console.log('maxDate',this.maxDate);
|
|
|
+ // console.log('dateList',this.dateList);
|
|
|
this.calendarShow = false;
|
|
|
},
|
|
|
closeCalendar(){
|
|
|
this.calendarShow = false;
|
|
|
},
|
|
|
tabsClick(e){
|
|
|
- console.log('tabsClick',e);
|
|
|
+ // console.log('tabsClick',e);
|
|
|
this.tabsIndex = e.index;
|
|
|
},
|
|
|
sessionClick(index){
|
|
|
this.sessionIndex = index;
|
|
|
},
|
|
|
book(item){
|
|
|
- console.log('book',item);
|
|
|
- console.log('performInfo',this.performInfo);
|
|
|
+ // console.log('book',item);
|
|
|
+ // console.log('performInfo',this.performInfo);
|
|
|
let session = this.sessionList[this.sessionIndex];
|
|
|
- console.log('session',session);
|
|
|
- let performTimeStart = this.$u.timeFormat(session.performTimeStart, 'hh:MM');
|
|
|
- let performTimeEnd = this.$u.timeFormat(session.performTimeEnd, 'hh:MM');
|
|
|
+ // console.log('session',session);
|
|
|
+ let performTimeStart = session.performTimeStart;
|
|
|
+ let performTimeEnd = session.performTimeEnd;
|
|
|
let dateOBJ = this.dateList[this.dateIndex];
|
|
|
uni.$u.route('pages/chosenposition',{
|
|
|
goodsId:item.id,
|
|
@@ -322,21 +326,68 @@
|
|
|
day:`${dateOBJ.year}-${dateOBJ.month}-${dateOBJ.day}`,
|
|
|
performTimeStart:session.performTimeStart,
|
|
|
performTimeEnd:session.performTimeEnd,
|
|
|
+ performTimeId:session.id,
|
|
|
+ auditoriumId:this.auditoriumList[this.auditoriumIndex].id
|
|
|
})
|
|
|
},
|
|
|
openShare(){
|
|
|
this.shareShow = true;
|
|
|
+ // 前端生成海报开始
|
|
|
+ let that = this;
|
|
|
+ const ctx = uni.createCanvasContext('canvas', this);
|
|
|
+ // 加载海报背景图
|
|
|
+ uni.getImageInfo({
|
|
|
+ src: this.performInfo.posterImg,
|
|
|
+ success: res1 => {
|
|
|
+ const img1 = res1.path;
|
|
|
+
|
|
|
+ // 加载海报二维码
|
|
|
+ uni.getImageInfo({
|
|
|
+ src: this.performInfo.appletQrcode,
|
|
|
+ success: res2 => {
|
|
|
+ const img2 = res2.path;
|
|
|
+
|
|
|
+ // 绘制海报背景图
|
|
|
+ ctx.drawImage(img1, 0, 0, 670, 900);
|
|
|
+
|
|
|
+ // 绘制海报二维码
|
|
|
+ ctx.drawImage(img2, 468, 724, 188, 166);
|
|
|
+
|
|
|
+ // 绘制完成后导出图片并显示
|
|
|
+ ctx.draw(false, () => {
|
|
|
+ uni.canvasToTempFilePath({
|
|
|
+ canvasId: 'canvas',
|
|
|
+ success: res3 => {
|
|
|
+ this.posterSrc = res3.tempFilePath;
|
|
|
+ },
|
|
|
+ fail: err => {
|
|
|
+ console.error(err);
|
|
|
+ },
|
|
|
+ }, this);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ fail: err2 => {
|
|
|
+ console.error(err2);
|
|
|
+ },
|
|
|
+ });
|
|
|
+ },
|
|
|
+ fail: err1 => {
|
|
|
+ console.error(err1);
|
|
|
+ },
|
|
|
+ });
|
|
|
+ // 前端生成海报结束
|
|
|
},
|
|
|
// 海报相关开始
|
|
|
getPoster(item){
|
|
|
this.posterShow = true;
|
|
|
this.shareShow = false;
|
|
|
- this.$u.api.performQrcode({performId:this.performId}).then(res=>{
|
|
|
- this.posterSrc = res.data.imageUrl;
|
|
|
- // console.log('getPoster',res.data);
|
|
|
- }).catch(err=>{
|
|
|
- console.log('getPoster',err);
|
|
|
- })
|
|
|
+ // 后端生成海报
|
|
|
+ // this.$u.api.performQrcode({performId:this.performId}).then(res=>{
|
|
|
+ // this.posterSrc = res.data.imageUrl;
|
|
|
+ // // console.log('getPoster',res.data);
|
|
|
+ // }).catch(err=>{
|
|
|
+ // console.log('getPoster',err);
|
|
|
+ // })
|
|
|
},
|
|
|
saveImage() {
|
|
|
let that = this;
|
|
@@ -629,4 +680,8 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+.canvas{
|
|
|
+ position: absolute;
|
|
|
+ left: -99999px;
|
|
|
+}
|
|
|
</style>
|