From 8e679b56f40c79778b42bb5e5fd9783db337ece8 Mon Sep 17 00:00:00 2001 From: zdl <3489966805@qq.com> Date: Thu, 18 Dec 2025 18:03:28 +0800 Subject: [PATCH] =?UTF-8?q?style(StockQuoteCard):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=B8=83=E5=B1=80=E5=92=8C=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 数据区块改为三列布局:估值指标 | 市值股本 | 主力动态 - 流通市值、发行总股本、52周波动 放在同一列 - 区块标题高亮显示(金色 + 发光效果) - 注释掉公司信息模块(成立日期、注册资本、所在地等) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../components/StockQuoteCard/index.tsx | 48 ++++++++++--------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/src/views/Company/components/StockQuoteCard/index.tsx b/src/views/Company/components/StockQuoteCard/index.tsx index 52c30cc2..2ee15326 100644 --- a/src/views/Company/components/StockQuoteCard/index.tsx +++ b/src/views/Company/components/StockQuoteCard/index.tsx @@ -147,12 +147,13 @@ const GlassSection: React.FC = ({ title, children, flex = 1 } /> {title} @@ -369,10 +370,10 @@ const StockQuoteCard: React.FC = ({ - {/* ========== 数据区块(Bento Grid)========== */} + {/* ========== 数据区块(三列布局)========== */} - {/* 关键指标 */} - + {/* 第一列:估值指标 */} + = ({ valueColor={T.cyan} highlight /> + + 5 ? T.orange : T.textWhite} + /> + + + + {/* 第二列:市值股本 */} + + = ({ label="发行总股本" value={quoteData.totalShares ? `${quoteData.totalShares}亿股` : '-'} /> - - 5 ? T.orange : T.textWhite} - /> = ({ - {/* 主力动态 */} + {/* 第三列:主力动态 */} = ({ - {/* ========== 公司信息 ========== */} - {basicInfo && ( + {/* ========== 公司信息(已注释)========== */} + {/* {basicInfo && ( <> - {/* 分隔线 */} - {/* 公司属性 */} @@ -501,7 +506,6 @@ const StockQuoteCard: React.FC = ({ - {/* 公司简介 */} = ({ - )} + )} */}