|
@@ -13,7 +13,7 @@
|
|
|
placeholder="演出厅"
|
|
|
clearable
|
|
|
style="width: 100%"
|
|
|
- @change="changeTime"
|
|
|
+ @change="changeTime($event)"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="dict in merchantTheatreAuditoriumListS"
|
|
@@ -28,7 +28,7 @@
|
|
|
type="date"
|
|
|
placeholder="选择演出时间"
|
|
|
v-model="queryParams.performDate"
|
|
|
- @change="changeTime"
|
|
|
+ @change="changeTime($event)"
|
|
|
value-format="yyyy-MM-dd"
|
|
|
></el-date-picker>
|
|
|
</el-form-item>
|
|
@@ -38,7 +38,7 @@
|
|
|
placeholder="场次"
|
|
|
clearable
|
|
|
style="width: 100%"
|
|
|
- @change="changeTime"
|
|
|
+ @change="changeTime($event,true)"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="dict in merchantPerformTimeListS"
|
|
@@ -54,7 +54,7 @@
|
|
|
placeholder="票务类型"
|
|
|
clearable
|
|
|
style="width: 100%"
|
|
|
- @change="changeTime"
|
|
|
+ @change="changeTime($event,true)"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="dict in goodsPageListS"
|
|
@@ -79,9 +79,9 @@
|
|
|
</div>
|
|
|
<div class="seat-box" :style="{'--scaleNum': scaleNum/100}">
|
|
|
<!-- 选择座位 -->
|
|
|
- <div class="seat-list-box">
|
|
|
+ <div class="seat-list-box" v-loading="loading">
|
|
|
<!-- 座位排版 -->
|
|
|
- <div v-loading="loading" id="seatbox-me" @scroll="scroll" ref="seatbox" class="dialog">
|
|
|
+ <div id="seatbox-me" @scroll="scroll" ref="seatbox" class="dialog">
|
|
|
<div class="dialog-box" :style="{width: width + 'px', margin: justifyContent ? 'auto' : 'unset'}">
|
|
|
<div
|
|
|
style="width: 100%;position: absolute;"
|
|
@@ -152,7 +152,7 @@
|
|
|
loading: false,
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
- timeId: null,
|
|
|
+ timeId: '',
|
|
|
performDate: null,
|
|
|
auditoriumId: null,
|
|
|
goodsId: null,
|
|
@@ -364,11 +364,19 @@
|
|
|
return flog
|
|
|
},
|
|
|
/** 选择演出时间 */
|
|
|
- changeTime(value){
|
|
|
- if(this.queryParam && this.queryParam.timeId) {
|
|
|
- this.$set(this.queryParam,'timeId',null)
|
|
|
+ changeTime(value,type){
|
|
|
+ console.log("fsdfsdf----",value,type)
|
|
|
+ this.changeTimeCheck(value,type)
|
|
|
+ },
|
|
|
+ /** 选择演出时间 */
|
|
|
+ changeTimeCheck(value,type){
|
|
|
+ console.log("fsdfsdf")
|
|
|
+ if(this.queryParams && this.queryParams.timeId && !type) {
|
|
|
+ console.log('sdfsdfsdf',this.queryParams)
|
|
|
+ this.$set(this.queryParams,'timeId','')
|
|
|
}
|
|
|
if(this.queryParams.auditoriumId&&this.queryParams.performDate){
|
|
|
+ // 获取场次
|
|
|
this.merchantPerformTimeListFun()
|
|
|
}
|
|
|
this.performId = ''
|
|
@@ -587,7 +595,7 @@
|
|
|
}
|
|
|
.select-class{
|
|
|
//background-color: #e85353 !important;
|
|
|
- border: 2px solid #1890ff !important;
|
|
|
+ border: 5px solid #1890ff !important;
|
|
|
// color: #eceaea !important;
|
|
|
position: relative;
|
|
|
}
|