From b17ce8d4200ba1485fa9fda0ed6c9ea150b1f9ce Mon Sep 17 00:00:00 2001 From: yml2213 Date: Sat, 1 Aug 2026 10:35:04 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=85=91=E6=8D=A2=E5=95=86=E5=93=81?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E6=A1=86=E5=A2=9E=E5=8A=A0=E5=BA=93=E5=AD=98?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit goodsLabel 从 raw.count 取剩余库存并拼接到标签末尾, 格式变为「套装-浪漫天命 / 360积分 / 库存8144」。 精英宝典和电竞手册两处下拉框共用该函数,一次改动两处生效。 --- web/frontend/src/pages/DouyuTasksPage.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/frontend/src/pages/DouyuTasksPage.tsx b/web/frontend/src/pages/DouyuTasksPage.tsx index 4f3b895..4d0d0d1 100644 --- a/web/frontend/src/pages/DouyuTasksPage.tsx +++ b/web/frontend/src/pages/DouyuTasksPage.tsx @@ -160,7 +160,10 @@ function bindPhaseText(phase: string, polling: boolean): string { } function goodsLabel(item: DouyuGoodsItem): string { - return `${item.name || item.commodity_id}${item.score ? ` / ${item.score}积分` : ''}`; + const stock = item.raw?.count; + const stockText = + stock != null && Number.isFinite(Number(stock)) ? ` / 库存${stock}` : ''; + return `${item.name || item.commodity_id}${item.score ? ` / ${item.score}积分` : ''}${stockText}`; } function formatWaitSeconds(seconds: number | null | undefined): string {