From edd1bf94f9036f24e279c0844bc1a8940da72d98 Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Fri, 4 Jul 2025 17:56:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(frontend):=E6=B7=BB=E5=8A=A0=E5=90=8D?= =?UTF-8?q?=E7=AB=99=E4=BC=98=E9=80=89=E5=8A=9F=E8=83=BD=E5=B9=B6=E5=AE=9E?= =?UTF-8?q?=E7=8E=B0=E5=B5=8C=E5=85=A5=E5=A4=96=E9=83=A8URL=E7=9A=84?= =?UTF-8?q?=E9=80=9A=E7=94=A8=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 Market 组件中添加名站优选选项卡- 新增 EmbeddedUrl 组件用于嵌入外部网页 - 创建 Stockhotmap 组件,整合多个财经网站的热图和排行榜 --- frontend/src/components/EmbeddedUrl.vue | 133 ++++++++++++++++++++++++ frontend/src/components/market.vue | 4 + frontend/src/components/stockhotmap.vue | 32 ++++++ 3 files changed, 169 insertions(+) create mode 100644 frontend/src/components/EmbeddedUrl.vue create mode 100644 frontend/src/components/stockhotmap.vue diff --git a/frontend/src/components/EmbeddedUrl.vue b/frontend/src/components/EmbeddedUrl.vue new file mode 100644 index 0000000..4cdacca --- /dev/null +++ b/frontend/src/components/EmbeddedUrl.vue @@ -0,0 +1,133 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/components/market.vue b/frontend/src/components/market.vue index f8e98f8..6b7f66e 100644 --- a/frontend/src/components/market.vue +++ b/frontend/src/components/market.vue @@ -32,6 +32,7 @@ import HotTopics from "./HotTopics.vue"; import InvestCalendarTimeLine from "./InvestCalendarTimeLine.vue"; import ClsCalendarTimeLine from "./ClsCalendarTimeLine.vue"; import SelectStock from "./SelectStock.vue"; +import Stockhotmap from "./stockhotmap.vue"; const route = useRoute() const icon = ref('https://raw.githubusercontent.com/ArvinLovegood/go-stock/master/build/appicon.png'); @@ -599,6 +600,9 @@ function ReFlesh(source) { + + + + +import EmbeddedUrl from "./EmbeddedUrl.vue"; + + + + + \ No newline at end of file