From c5f99608d827fd7b58fdbe0d0cc30489b6cb234b Mon Sep 17 00:00:00 2001 From: yml Date: Mon, 25 May 2026 01:27:56 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84=E5=89=8D=E7=AB=AF=EF=BC=9A?= =?UTF-8?q?=E8=BF=81=E7=A7=BB=E5=95=86=E5=93=81=E5=B1=95=E7=A4=BA=E8=BE=85?= =?UTF-8?q?=E5=8A=A9=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/{views/mobile => utils}/listingDisplay.ts | 0 frontend/src/views/mobile/MobileHomeView.vue | 2 +- frontend/src/views/mobile/MobileListingDetailView.vue | 2 +- frontend/src/views/public/HomeView.vue | 2 +- frontend/src/views/public/ListingsView.vue | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename frontend/src/{views/mobile => utils}/listingDisplay.ts (100%) diff --git a/frontend/src/views/mobile/listingDisplay.ts b/frontend/src/utils/listingDisplay.ts similarity index 100% rename from frontend/src/views/mobile/listingDisplay.ts rename to frontend/src/utils/listingDisplay.ts diff --git a/frontend/src/views/mobile/MobileHomeView.vue b/frontend/src/views/mobile/MobileHomeView.vue index 6a686a5..3d97c9a 100644 --- a/frontend/src/views/mobile/MobileHomeView.vue +++ b/frontend/src/views/mobile/MobileHomeView.vue @@ -34,7 +34,7 @@ import { hasGiftResources, readAssetNumber, readAssetString, -} from "./listingDisplay"; +} from "@/utils/listingDisplay"; const route = useRoute(); const loading = ref(false); diff --git a/frontend/src/views/mobile/MobileListingDetailView.vue b/frontend/src/views/mobile/MobileListingDetailView.vue index 1bf5a6c..182dff2 100644 --- a/frontend/src/views/mobile/MobileListingDetailView.vue +++ b/frontend/src/views/mobile/MobileListingDetailView.vue @@ -21,7 +21,7 @@ import { getServerRegion, readAssetNumber, readAssetString, -} from "./listingDisplay"; +} from "@/utils/listingDisplay"; const route = useRoute(); const router = useRouter(); diff --git a/frontend/src/views/public/HomeView.vue b/frontend/src/views/public/HomeView.vue index 60c25ad..353f77c 100644 --- a/frontend/src/views/public/HomeView.vue +++ b/frontend/src/views/public/HomeView.vue @@ -32,7 +32,7 @@ import { getServerRegion, hasAcceleratedSaleRatio, hasGiftResources, -} from "@/views/mobile/listingDisplay"; +} from "@/utils/listingDisplay"; const loading = ref(false); const listings = ref([]); diff --git a/frontend/src/views/public/ListingsView.vue b/frontend/src/views/public/ListingsView.vue index e554b87..6af28a3 100644 --- a/frontend/src/views/public/ListingsView.vue +++ b/frontend/src/views/public/ListingsView.vue @@ -29,7 +29,7 @@ import { hasGiftResources, readAssetNumber, readAssetString, -} from "@/views/mobile/listingDisplay"; +} from "@/utils/listingDisplay"; import { listingStatusLabel } from "@/utils/statusLabels"; /* ------------------------------------------------------------------ */