1
Showing
2 changed files
with
7 additions
and
3 deletions
| ... | @@ -70,6 +70,7 @@ const payment = reactive({ | ... | @@ -70,6 +70,7 @@ const payment = reactive({ |
| 70 | "Please enter the contact phone number." | 70 | "Please enter the contact phone number." |
| 71 | ), | 71 | ), |
| 72 | }); | 72 | }); |
| 73 | if (language.value == 0) { | ||
| 73 | payOrder({ | 74 | payOrder({ |
| 74 | contactPhone: payment.form.phone, | 75 | contactPhone: payment.form.phone, |
| 75 | customerIds: payment.form.viewers, | 76 | customerIds: payment.form.viewers, |
| ... | @@ -86,10 +87,11 @@ const payment = reactive({ | ... | @@ -86,10 +87,11 @@ const payment = reactive({ |
| 86 | }); | 87 | }); |
| 87 | payment.showCodeDialog = true; | 88 | payment.showCodeDialog = true; |
| 88 | startCheckSuccessListener(res.data.orderSn, props.activityId); | 89 | startCheckSuccessListener(res.data.orderSn, props.activityId); |
| 89 | } else { | ||
| 90 | // TODO: 这里是PayPal支付 | ||
| 91 | } | 90 | } |
| 92 | }); | 91 | }); |
| 92 | } else { | ||
| 93 | // 这里是英文环境支付 | ||
| 94 | } | ||
| 93 | }, | 95 | }, |
| 94 | handleCloce() { | 96 | handleCloce() { |
| 95 | payment.showCodeDialog = false; | 97 | payment.showCodeDialog = false; | ... | ... |
| ... | @@ -313,7 +313,9 @@ price.fetchData(); | ... | @@ -313,7 +313,9 @@ price.fetchData(); |
| 313 | <div v-for="(it, index) in selectedSeats" class="seat_item"> | 313 | <div v-for="(it, index) in selectedSeats" class="seat_item"> |
| 314 | <img class="seat_icon" :src="it.selectIcon" /> | 314 | <img class="seat_icon" :src="it.selectIcon" /> |
| 315 | <span class="num" | 315 | <span class="num" |
| 316 | ><span v-if="it.area">{{ it.area }}{{ languageFormat(language, "区", "Zones") }}</span> | 316 | ><span v-if="it.area" |
| 317 | >{{ it.area }}{{ languageFormat(language, "区", "Zones") }}</span | ||
| 318 | > | ||
| 317 | {{ it.pai }}{{ languageFormat(language, "排", "Row") }} {{ it.no }} | 319 | {{ it.pai }}{{ languageFormat(language, "排", "Row") }} {{ it.no }} |
| 318 | {{ languageFormat(language, "座", "Seat") }}</span | 320 | {{ languageFormat(language, "座", "Seat") }}</span |
| 319 | > | 321 | > | ... | ... |
-
Please register or sign in to post a comment