|
@@ -176,9 +176,11 @@
|
|
|
<!-- 分享选择弹出内容 -->
|
|
|
<view class="share-option" :class="{shareShow:shareShow}">
|
|
|
<view class="overlay" v-if="shareShow" @click="shareShow=false"></view>
|
|
|
+ <!-- #ifdef MP-WEIXIN -->
|
|
|
<button class="share-option-item wx-share" data-name="shareBtn" open-type="share">
|
|
|
发送给朋友
|
|
|
</button>
|
|
|
+ <!-- #endif -->
|
|
|
<view class="share-option-item" @click="getPoster">生成海报</view>
|
|
|
<view class="share-option-item" @click="shareShow=false">取消</view>
|
|
|
</view>
|
|
@@ -331,6 +333,8 @@
|
|
|
uni.showLoading();
|
|
|
let auditoriumId= this.auditoriumList[this.auditoriumIndex]?.id;
|
|
|
if(!auditoriumId){return}
|
|
|
+ console.log('this.dateList',this.dateList);
|
|
|
+ console.log('this.dateIndex',this.dateIndex);
|
|
|
let dateOBJ = this.dateList[this.dateIndex];
|
|
|
let param = {
|
|
|
auditoriumId:auditoriumId,//演艺厅ID(演艺厅列表)
|
|
@@ -368,7 +372,9 @@
|
|
|
return day
|
|
|
},
|
|
|
setDate(firstDay,isSelect){
|
|
|
+ console.log('this.performDateList',this.performDateList);
|
|
|
if(this.performDateList[0]?.performDate&&!isSelect){
|
|
|
+ console.log('111111');
|
|
|
// firstDay = new Date(this.performDateList[0].performDate);
|
|
|
const uniquePerformDateList = Array.from(new Set(this.performDateList.map(JSON.stringify))).map(JSON.parse);//去重
|
|
|
// console.log('uniquePerformDateList',uniquePerformDateList);
|
|
@@ -379,12 +385,13 @@
|
|
|
// console.log('setDate day',day);
|
|
|
return { year:day[0],month:String(day[1]),day:String(day[2]), fullDay:`${day[0]}-${String(day[1])}-${String(day[2])}`}
|
|
|
});
|
|
|
- // console.log('this.firstGet',this.firstGet);
|
|
|
+ console.log('this.dateList',this.dateList);
|
|
|
+ this.dateIndex = 0;
|
|
|
this.getTimes();
|
|
|
//
|
|
|
return
|
|
|
}
|
|
|
- // console.log('this.dateListthis.dateListthis.dateListthis.dateList',this.dateList);
|
|
|
+ console.log('this.dateListthis.dateListthis.dateListthis.dateList',this.dateList);
|
|
|
// 前端写演出日期(今天,明天,后天)
|
|
|
let today = firstDay;
|
|
|
let tomorrow = new Date();
|
|
@@ -875,7 +882,7 @@
|
|
|
}
|
|
|
}
|
|
|
.canvas{
|
|
|
- position: absolute;
|
|
|
+ position: fixed;
|
|
|
left: -99999px;
|
|
|
}
|
|
|
</style>
|