|
@@ -135,7 +135,7 @@ function genTouristCardUrl() {
|
|
|
// 根據語言選擇對應網址
|
|
|
if (lang === "en") {
|
|
|
url = `${baseUrl}/en${path}`;
|
|
|
- } else if (lang === "ja") {
|
|
|
+ } else if (lang === "jp") {
|
|
|
url = `${baseUrl}/ja${path}`;
|
|
|
} else if (lang === "ko") {
|
|
|
url = `${baseUrl}/ko${path}`;
|
|
@@ -2816,13 +2816,19 @@ onBeforeUnmount(() => {
|
|
|
>
|
|
|
<!-- 語言選單 -->
|
|
|
<div class="lang-select">
|
|
|
- <v-select
|
|
|
+ <button
|
|
|
+ v-for="(item, index) in langList"
|
|
|
+ @click="onLanguageChange(item.lang)"
|
|
|
+ >
|
|
|
+ {{ item.lang }}
|
|
|
+ </button>
|
|
|
+ <!-- <v-select
|
|
|
density="compact"
|
|
|
:label="`${t('select_language')}`"
|
|
|
:items="['中文', 'English', '日本語', '한국어']"
|
|
|
variant="solo"
|
|
|
@update:modelValue="onLanguageChange"
|
|
|
- ></v-select>
|
|
|
+ ></v-select> -->
|
|
|
</div>
|
|
|
|
|
|
<video ref="video" preload playsinline @ended="onVideoEnded">
|
|
@@ -3581,7 +3587,8 @@ onBeforeUnmount(() => {
|
|
|
<!-- 票券 -->
|
|
|
<swiper
|
|
|
v-if="message.body.ticketList?.length"
|
|
|
- :slidesPerView="1"
|
|
|
+ :slidesPerView="'auto'"
|
|
|
+ :spaceBetween="20"
|
|
|
:navigation="true"
|
|
|
:modules="modules"
|
|
|
class="ticket-slide"
|
|
@@ -4203,7 +4210,7 @@ onBeforeUnmount(() => {
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
.v-icon--size-large {
|
|
|
- font-size: 3vw !important;
|
|
|
+ font-size: 5vw !important;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -4988,13 +4995,25 @@ onBeforeUnmount(() => {
|
|
|
.lang-select {
|
|
|
position: absolute;
|
|
|
z-index: 100;
|
|
|
- bottom: 15px;
|
|
|
+ bottom: 20px;
|
|
|
right: 20px;
|
|
|
- width: 150px;
|
|
|
+ // width: 150px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
|
|
|
@media (max-width: 575px) {
|
|
|
width: 130px;
|
|
|
}
|
|
|
+
|
|
|
+ button {
|
|
|
+ padding: 0.3rem 1.3rem;
|
|
|
+ font-size: 0.875rem;
|
|
|
+ color: #fff;
|
|
|
+ background-color: var(--main-color);
|
|
|
+ border-radius: 100px;
|
|
|
+ margin-bottom: 0.8rem;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.Keyboard-tips {
|