cf19c717 by zhangmeng

票务

1 parent 7d6eae04
......@@ -3,7 +3,7 @@
<div v-loading="loading">
<div class="title father">
{{ languageFormat(language, "订单确认", "Order confirmation") }}
<span class="son" @click="handelUp">{{ language == 0 ? '上一步' : 'Go back' }}</span>
<span class="son" @click="handelUp">{{ language == 0 ? '上一页' : 'Back' }}</span>
</div>
<div class="content pd20">
<el-row gutter="20">
......@@ -177,6 +177,9 @@
{{ ((language == 0 ? TickForm2.price : TickForm2.priceEn) * orderForm.customerIds.length).toFixed(2) }}
</span>
</div>
<div class="goBack" @click="handelUp">
{{ languageFormat(language, "上一页", "Back") }}
</div>
<div class="pay" @click="paymentHandle">
{{ languageFormat(language, "立即支付", "Pay Now") }}
</div>
......@@ -693,6 +696,22 @@ div {
cursor: pointer;
user-select: none;
}
.goBack {
width: 200px;
height: 40px;
border-radius: 20px;
font-weight: 500;
font-size: 16px;
color: #493ceb;
border: 1px solid #8623fc;
line-height: 40px;
text-align: center;
cursor: pointer;
user-select: none;
position: absolute;
right: 300px;
}
}
}
......
......@@ -362,7 +362,7 @@ async function getTicketListType() {
const res = await getActivityTypeVoListByLatsId({ latsId: selectForm.value.latsId })
tickList.value = res.data
selectForm.value.sessionType = Object.keys(res.data)[0]
console.log(tickList.value)
// currTick.value = tickList.value[selectForm.value.sessionType][0]
// selectForm.value.latstId = currTick.value?.id
// selectForm.value.price = currTick.value?.price
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!