From f28d600e16f823e3ae3d6ecf6af783a50d041467 Mon Sep 17 00:00:00 2001 From: hongxilin <17663930442@163.com> Date: Wed, 29 Oct 2025 22:09:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=89=93=E5=8D=B0=E8=AF=AD?= =?UTF-8?q?=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/IndexCard.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/IndexCard.vue b/components/IndexCard.vue index ad1ae69..69a3de3 100644 --- a/components/IndexCard.vue +++ b/components/IndexCard.vue @@ -64,7 +64,6 @@ const props = defineProps({ }); const getMarketFlag = (market) => { - console.log("market", market); let imagePath; if (market === "cn") { @@ -86,8 +85,6 @@ const getMarketFlag = (market) => { } else { imagePath = "/static/marketSituation-image/country-flag/global.png"; } - - console.log("返回的图片路径:", imagePath); return imagePath; };