1a2ccb49 by zhangmeng

开票

1 parent dae16f11
...@@ -7,28 +7,28 @@ ...@@ -7,28 +7,28 @@
7 <div class="title">{{ matchForm.name }}</div> 7 <div class="title">{{ matchForm.name }}</div>
8 <div class="time"> 8 <div class="time">
9 {{ triggerLanguage(language, "时间", "Event Date & Time") }}{{ 9 {{ triggerLanguage(language, "时间", "Event Date & Time") }}{{
10 matchForm.ticketStart 10 matchForm.beginTime
11 ? dayjs(matchForm.ticketStart).format("YYYY.MM.DD") 11 ? dayjs(matchForm.beginTime).format("YYYY.MM.DD")
12 : "" 12 : ""
13 }} 13 }}
14 {{ 14 {{
15 matchForm.ticketStart 15 matchForm.beginTime
16 ? getDayName( 16 ? getDayName(
17 new Date(matchForm.ticketStart), 17 new Date(matchForm.beginTime),
18 language == 1 ? "en-US" : "zh-CN" 18 language == 1 ? "en-US" : "zh-CN"
19 ) 19 )
20 : "" 20 : ""
21 }} 21 }}
22 22
23 {{ 23 {{
24 matchForm.ticketEnd 24 matchForm.beginTime
25 ? dayjs(matchForm.ticketEnd).format("YYYY.MM.DD") 25 ? dayjs(matchForm.beginTime).format("YYYY.MM.DD")
26 : "" 26 : ""
27 }} 27 }}
28 {{ 28 {{
29 matchForm.ticketEnd 29 matchForm.beginTime
30 ? getDayName( 30 ? getDayName(
31 new Date(matchForm.ticketEnd), 31 new Date(matchForm.beginTime),
32 language == 1 ? "en-US" : "zh-CN" 32 language == 1 ? "en-US" : "zh-CN"
33 ) 33 )
34 : "" 34 : ""
...@@ -229,7 +229,7 @@ function toSelectSeat() { ...@@ -229,7 +229,7 @@ function toSelectSeat() {
229 return 229 return
230 } 230 }
231 checkNonPayment().then(res => { 231 checkNonPayment().then(res => {
232 if (!res.count) { 232 if (res.count) {
233 router.push({ 233 router.push({
234 name: 'confirmOrder', 234 name: 'confirmOrder',
235 params: { 235 params: {
...@@ -243,6 +243,8 @@ function toSelectSeat() { ...@@ -243,6 +243,8 @@ function toSelectSeat() {
243 } 243 }
244 244
245 }) 245 })
246
247
246 } 248 }
247 249
248 function toSelectClosed() { 250 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!