1a2ccb49 by zhangmeng

开票

1 parent dae16f11
......@@ -7,28 +7,28 @@
<div class="title">{{ matchForm.name }}</div>
<div class="time">
{{ triggerLanguage(language, "时间", "Event Date & Time") }}{{
matchForm.ticketStart
? dayjs(matchForm.ticketStart).format("YYYY.MM.DD")
matchForm.beginTime
? dayjs(matchForm.beginTime).format("YYYY.MM.DD")
: ""
}}
{{
matchForm.ticketStart
matchForm.beginTime
? getDayName(
new Date(matchForm.ticketStart),
new Date(matchForm.beginTime),
language == 1 ? "en-US" : "zh-CN"
)
: ""
}}
{{
matchForm.ticketEnd
? dayjs(matchForm.ticketEnd).format("YYYY.MM.DD")
matchForm.beginTime
? dayjs(matchForm.beginTime).format("YYYY.MM.DD")
: ""
}}
{{
matchForm.ticketEnd
matchForm.beginTime
? getDayName(
new Date(matchForm.ticketEnd),
new Date(matchForm.beginTime),
language == 1 ? "en-US" : "zh-CN"
)
: ""
......@@ -229,7 +229,7 @@ function toSelectSeat() {
return
}
checkNonPayment().then(res => {
if (!res.count) {
if (res.count) {
router.push({
name: 'confirmOrder',
params: {
......@@ -243,6 +243,8 @@ function toSelectSeat() {
}
})
}
function toSelectClosed() {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!