e35d8ebc by zhangmeng

票务

1 parent d39c19a0
......@@ -98,6 +98,17 @@
</div>
</div>
</div>
<!-- 价格 -->
<div class="select_item_box">
<div class="label">
{{ triggerLanguage(language, '价格', "Price") }}
</div>
<div class="select_item">
<div class="tagActive" style="min-width: 80px">
{{ language == 0 ? '¥' : '€' }} {{ language == 0 ? selectForm.price : selectForm.priceEn }}
</div>
</div>
</div>
<!-- button -->
<div class="btn forPc" style="margin-left: 40px" @click="toSelectSeat()">
{{ triggerLanguage(language, "添加观影人", "Add Moviegoers") }}
......@@ -143,7 +154,9 @@ const matchForm = ref({})
const tickClass = ref([])
const selectForm = ref({
latId: null,
id: null
id: null,
price: '--',
priceEn: '--',
})
const tickList = ref([])
......@@ -186,7 +199,12 @@ function select(v) {
}
function selectTick(v) {
if (v.isView != 0) selectForm.value.id = v.id
if (v.isView != 0) {
selectForm.value.id = v.id
selectForm.value.price = v.price
selectForm.value.priceEn = v.priceEn
}
}
function toSelectSeat() {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!