From a942eef02e0b83ce427ca0f7c2776d6939c4e5ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Thu, 30 Oct 2025 11:47:01 +0800 Subject: [PATCH] =?UTF-8?q?=E8=82=A1=E7=A5=A8=E4=BB=B7=E6=A0=BC=E5=92=8C?= =?UTF-8?q?=E6=B6=A8=E8=B7=8C=E5=B9=85=E6=B0=B4=E5=B9=B3=E5=88=86=E5=B8=83?= =?UTF-8?q?=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/customStockList/customStockList.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/customStockList/customStockList.vue b/pages/customStockList/customStockList.vue index 348f18e..ad96b5f 100644 --- a/pages/customStockList/customStockList.vue +++ b/pages/customStockList/customStockList.vue @@ -74,7 +74,7 @@ {{ stock.price || '--' }} - {{ stock.change >= 0 ? '+' : '' }}{{ stock.change || '--' }} + {{ stock.change >= 0 ? '+' : '-' }}{{ stock.change || '--' }} @@ -448,15 +448,15 @@ .stock-price { display: flex; - flex-direction: column; - align-items: flex-end; + flex-direction: row; + align-items: center; + gap: 8px; } .price { font-size: 16px; font-weight: 500; color: #333333; - margin-bottom: 4px; } .change {