|
@@ -18,7 +18,10 @@
|
|
<el-col :span="12" v-for="(item1, index1) in item" :key="index1">
|
|
<el-col :span="12" v-for="(item1, index1) in item" :key="index1">
|
|
<div class="grid-content bg-purple item-class">
|
|
<div class="grid-content bg-purple item-class">
|
|
<span>{{ item1.lable }}</span>
|
|
<span>{{ item1.lable }}</span>
|
|
- <span>{{ form[item1.key] }}</span>
|
|
|
|
|
|
+ <span v-if="item1.key === 'teamType'">
|
|
|
|
+ <dict-tag style="display: inline-block" :options="dict.type.team_type" :value="form.teamType"/>
|
|
|
|
+ </span>
|
|
|
|
+ <span v-else>{{ form[item1.key] }}</span>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
@@ -88,7 +91,7 @@
|
|
</el-row>
|
|
</el-row>
|
|
</div>
|
|
</div>
|
|
<div class="dialog-bbb_2" v-loading="loading_seta" element-loading-text="加载座位图中...">
|
|
<div class="dialog-bbb_2" v-loading="loading_seta" element-loading-text="加载座位图中...">
|
|
- <seatBox ref="seatBox" :seatTypeLimit="configStockNumObj" @selectSeat="selectSeat" height="100%"
|
|
|
|
|
|
+ <seatBox ref="seatBox" :seatTypeLimit="configStockNumObj" :queryParams="form" @selectSeat="selectSeat" height="100%"
|
|
channelType="group" />
|
|
channelType="group" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -119,7 +122,7 @@ import {
|
|
import { getToken } from "@/utils/auth";
|
|
import { getToken } from "@/utils/auth";
|
|
export default {
|
|
export default {
|
|
name: "detailsDia",
|
|
name: "detailsDia",
|
|
- dicts: ['order_form_type', 'order_status_type', 'pay_way_type', 'personnel_type'],
|
|
|
|
|
|
+ dicts: ['order_form_type', 'order_status_type', 'pay_way_type', 'personnel_type', 'team_type'],
|
|
components: {
|
|
components: {
|
|
seatBox
|
|
seatBox
|
|
},
|
|
},
|
|
@@ -361,7 +364,7 @@ export default {
|
|
})
|
|
})
|
|
})
|
|
})
|
|
this.seatSelectList = list1
|
|
this.seatSelectList = list1
|
|
- console.log("已选择的====", list)
|
|
|
|
|
|
+ // console.log("已选择的====", list)
|
|
},
|
|
},
|
|
// 选择场次时间
|
|
// 选择场次时间
|
|
performDateEven() {
|
|
performDateEven() {
|
|
@@ -431,7 +434,7 @@ export default {
|
|
},
|
|
},
|
|
// 票务改变事件
|
|
// 票务改变事件
|
|
goodsChangeEven(id, type) {
|
|
goodsChangeEven(id, type) {
|
|
- console.log("sdfsdf", id, type)
|
|
|
|
|
|
+ // console.log("sdfsdf", id, type)
|
|
let list = []
|
|
let list = []
|
|
this.ticketList.forEach(item => {
|
|
this.ticketList.forEach(item => {
|
|
if (item.id == id) {
|
|
if (item.id == id) {
|
|
@@ -444,7 +447,7 @@ export default {
|
|
this.$set(this.form, 'seatTypeId', '');
|
|
this.$set(this.form, 'seatTypeId', '');
|
|
}
|
|
}
|
|
this.seatList = [];
|
|
this.seatList = [];
|
|
- console.log("ffffffffff=====", list)
|
|
|
|
|
|
+ // console.log("ffffffffff=====", list)
|
|
//let selectMap = {goodsId: this.form.goodsId, performId: this.form.performId}
|
|
//let selectMap = {goodsId: this.form.goodsId, performId: this.form.performId}
|
|
//this.getSeatTypeList(selectMap); 获取走位
|
|
//this.getSeatTypeList(selectMap); 获取走位
|
|
this.seatList = [].concat(list)
|
|
this.seatList = [].concat(list)
|