From 8b94e14ec95e249bed9d0a4fedd7c767aaffc49e Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Thu, 3 Jul 2025 16:04:50 +0800 Subject: [PATCH] =?UTF-8?q?refactor(frontend):=E6=9B=B4=E6=96=B0=E8=82=A1?= =?UTF-8?q?=E7=A5=A8=E9=A1=B5=E9=9D=A2=E9=93=BE=E6=8E=A5=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改了 SelectStock 组件中股票名称的链接格式 - 从旧的 URL格式改为新的全屏图表 URL 格式 - 提高了用户体验,用户现在可以查看更详细的股票信息 --- frontend/src/components/SelectStock.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/SelectStock.vue b/frontend/src/components/SelectStock.vue index 75e55e0..5020d4b 100644 --- a/frontend/src/components/SelectStock.vue +++ b/frontend/src/components/SelectStock.vue @@ -195,7 +195,8 @@ function openCenteredWindow(url, width, height) { }else{ if(column.key=='SECURITY_SHORT_NAME'){ return h(NButton, { type: 'info',bordered: false ,size:'small',onClick:()=>{ - openCenteredWindow(`https://quote.eastmoney.com/concept/${rowData.MARKET_SHORT_NAME}${rowData.SECURITY_CODE}.html`,1240,700) + //https://quote.eastmoney.com/sz300558.html#fullScreenChart + openCenteredWindow(`https://quote.eastmoney.com/${rowData.MARKET_SHORT_NAME}${rowData.SECURITY_CODE}.html#fullScreenChart`,1240,700) }}, { default: () => `${value}` }) }else{ return h(NText, { type: 'info' }, { default: () => `${value}` })