diff --git a/app/pages/home/components/ItemList/index.vue b/app/pages/home/components/ItemList/index.vue
index 72620a3..f4f478a 100644
--- a/app/pages/home/components/ItemList/index.vue
+++ b/app/pages/home/components/ItemList/index.vue
@@ -70,7 +70,7 @@ const openShow = async (item) => {
![]()
diff --git a/app/pages/liveRoom/index.client.vue b/app/pages/liveRoom/index.client.vue
index 370f6c5..535b012 100644
--- a/app/pages/liveRoom/index.client.vue
+++ b/app/pages/liveRoom/index.client.vue
@@ -153,11 +153,11 @@ const tipOpen = () => {
style="bottom:calc(var(--safe-area-inset-bottom) + 26px)">
{{ t('live_room.now_price') }}:{{ auctionData?.nowAuctionPrice?.currency }}
-
{{auctionData?.nowAuctionPrice?.nowPrice}}
+
{{auctionData?.nowAuctionPrice?.nowPrice||0}}
{{ t('live_room.lower_price') }}:{{ auctionData?.nowAuctionPrice?.currency }}
-
{{auctionData?.nowAuctionPrice?.nextPrice}}
+
{{auctionData?.nowAuctionPrice?.nextPrice||0}}
diff --git a/app/pages/login/index.vue b/app/pages/login/index.vue
index db567a2..29526bb 100644
--- a/app/pages/login/index.vue
+++ b/app/pages/login/index.vue
@@ -72,18 +72,11 @@ const getDefaultCountry = () => {
const defaultCountry = getDefaultCountry()
+const selectedCountry = ref('')
-const selectedCountry = ref(route.query.countryName || defaultCountry.name)
onMounted(()=>{
selectedZone.value=route.query.zone || defaultCountry.zone
-})
-// 监听语言变化,更新默认国家
-watch(locale, () => {
- if (!route.query.zone) {
- const newDefault = getDefaultCountry()
- selectedZone.value = newDefault.zone
- selectedCountry.value = newDefault.name
- }
+ selectedCountry.value=route.query.countryName || defaultCountry.name
})
const vanSwipeRef=ref(null)
const getCode =async () => {
diff --git a/nuxt.config.js b/nuxt.config.js
index afdbadd..007d0c4 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -153,7 +153,7 @@ export default defineNuxtConfig({
// 指定 Nuxt 应用程序的兼容性日期,确保应用程序在未来的 Nuxt 版本中保持稳定性
compatibilityDate: '2025-02-28',
devServer: {
- https: httpsOptions,
+ // https: httpsOptions,
host: '0.0.0.0',
port: 3000,
},