fix(api): 移除行情请求的 s_ 前缀,强制获取全量数据以修复日期缺失问题

This commit is contained in:
2026-05-02 14:17:26 +08:00
parent 2fb5629a89
commit 2570144112
3 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ async function fetchStockPrice(asset: { symbol: string; exchange: string | null
break;
case 'US':
default:
tCode = 's_us' + cleanSymbol;
tCode = 'us' + cleanSymbol;
break;
}