From 6382be6b194a74b63df09a6db00340f6506fde0e Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Mon, 16 Jun 2025 17:54:25 +0800 Subject: [PATCH 01/14] =?UTF-8?q?ci:=20=E6=9B=B4=E6=96=B0=20GitHub=20Actio?= =?UTF-8?q?ns=20=E8=A7=A6=E5=8F=91=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除对 master 分支的监听 - 取消注释并启用对 '*-release' 标签的监听 --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 67ffd8a..8bfb5de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,11 +2,9 @@ name: Wails build on: push: - branches: - - master -# tags: -# # Match any new tag -# - '*-release' + tags: + # Match any new tag + - '*-release' env: # Necessary for most environments as build failure can occur due to OOM issues From 9d8af191c51a8448f2161c620fcb3d41e64b492e Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Mon, 16 Jun 2025 18:16:20 +0800 Subject: [PATCH 02/14] =?UTF-8?q?docs(README):=E6=9B=B4=E6=96=B0=E5=85=AC?= =?UTF-8?q?=E5=8F=B8=E5=85=AC=E5=91=8A=E4=BF=A1=E6=81=AF=E6=90=9C=E7=B4=A2?= =?UTF-8?q?/=E6=9F=A5=E7=9C=8B=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在更新日志中添加了"2025.06.15 添加公司公告信息搜索/查看功能"的记录 - 此更新增加了对公司公告信息进行搜索和查看的功能,进一步丰富了应用的资讯获取渠道 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2900738..63b0b76 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ | 不再强制依赖Chrome浏览器 | ✅ | 默认使用edge浏览器抓取新闻资讯 | ## 👀 更新日志 +### 2025.06.15 添加公司公告信息搜索/查看功能 ### 2025.06.15 添加个股研报到弹出菜单 ### 2025.06.13 添加个股研报功能 ### 2025.06.12 添加龙虎榜功能,新增行业排名分类 From 0a2491d725751bc3bd5814e1439102d5e043e192 Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Tue, 17 Jun 2025 09:49:43 +0800 Subject: [PATCH 03/14] =?UTF-8?q?feat(frontend):=E4=B8=BA=E8=82=A1?= =?UTF-8?q?=E7=A5=A8=E5=85=AC=E5=91=8A=E5=88=97=E8=A1=A8=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E8=B5=B0=E5=8A=BF=E5=9B=BE=E5=92=8C=E8=B5=84=E9=87=91=E8=B6=8B?= =?UTF-8?q?=E5=8A=BF=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 StockNoticeList 组件中添加 KLineChart 和 MoneyTrend 组件 - 实现股票代码和名称的悬停显示功能- 添加资金趋势图和 K线图的渲染 - 优化股票代码显示格式 --- frontend/src/components/StockNoticeList.vue | 30 ++++++++++++++++++--- frontend/src/components/moneyTrend.vue | 7 +++++ 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/StockNoticeList.vue b/frontend/src/components/StockNoticeList.vue index f99fc31..8eabb74 100644 --- a/frontend/src/components/StockNoticeList.vue +++ b/frontend/src/components/StockNoticeList.vue @@ -4,6 +4,8 @@ import {GetStockList, StockNotice} from "../../wailsjs/go/main/App"; import {BrowserOpenURL} from "../../wailsjs/runtime"; import {RefreshCircleSharp} from "@vicons/ionicons5"; import _ from "lodash"; +import KLineChart from "./KLineChart.vue"; +import MoneyTrend from "./moneyTrend.vue"; const list = ref([]) @@ -66,7 +68,19 @@ function getTypeColor(name){ return "info" } - +function getmMarketCode(market,code) { + if(market==="0"){ + return "sz"+code + }else if(market==="1"){ + return "sh"+code + }else if(market==="2"){ + return "bj"+code + }else if(market==="3"){ + return "hk"+code + }else{ + return code + } +}