From 7158e405a68c56b79304aec857f89ad097865a6e Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Fri, 30 May 2025 10:56:42 +0800 Subject: [PATCH] =?UTF-8?q?refactor(frontend):=E4=BC=98=E5=8C=96=E8=82=A1?= =?UTF-8?q?=E7=A5=A8=E5=88=86=E6=97=B6=E5=9B=BE=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 调整股票价格显示范围,增加百分比浮动 - 在模态框标题中添加股票涨跌百分比 --- frontend/src/components/stock.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/stock.vue b/frontend/src/components/stock.vue index 57f3748..d56cb66 100644 --- a/frontend/src/components/stock.vue +++ b/frontend/src/components/stock.vue @@ -762,8 +762,8 @@ function showFsChart(code, name) { show: false }, name: "股价", - min: min - 1, - max: max + 1, + min: (min - min*0.01).toFixed(2), + max: (max + max*0.01).toFixed(2), minInterval: 0.01, type: 'value' }, @@ -1947,7 +1947,7 @@ function delStockGroup(code,name,groupId){ - +