From a38ea6964f78372dda1584bc3271136eb9e24255 Mon Sep 17 00:00:00 2001 From: qibin <1134087124@qq.com> Date: Sun, 1 Jun 2025 22:19:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=97=B6=E9=97=B4=E4=B8=BA4P?= =?UTF-8?q?M?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/stock-quote/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/store/stock-quote/index.js b/src/store/stock-quote/index.js index 07f6d46..5849d39 100644 --- a/src/store/stock-quote/index.js +++ b/src/store/stock-quote/index.js @@ -50,12 +50,11 @@ export const useStockQuote = createGlobalState(() => { '&to=' + toDate; const res = await axios.get(url) - // console.error(res) if (res.status === 200) { if (res.data.status === 0) { lastTradingDay = dayjs(res.data.data[0].date) } - return lastTradingDay.format('MMM D, YYYY, h:mm A [EDT]') + return lastTradingDay.format('MMM D, YYYY') + ' 4:00 PM [EDT]' } }