fix: 修复自选股添加失败 405 错误

- useWatchlist.js: 修正 API 路径从 /api/account/watchlist/add 改为 /api/account/watchlist
- account.js: 同步修改 mock handler 路径

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zdl
2025-12-04 14:40:35 +08:00
parent 0edc6a5e00
commit 61ed1510c2
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ export const useWatchlist = () => {
const handleAddToWatchlist = useCallback(async (stockCode, stockName) => {
try {
const base = getApiBase();
const resp = await fetch(base + '/api/account/watchlist/add', {
const resp = await fetch(base + '/api/account/watchlist', {
method: 'POST',
credentials: 'include',
headers: { 'Content-Type': 'application/json' },

View File

@@ -159,7 +159,7 @@ export const accountHandlers = [
}),
// 6. 添加自选股
http.post('/api/account/watchlist/add', async ({ request }) => {
http.post('/api/account/watchlist', async ({ request }) => {
await delay(NETWORK_DELAY);
const currentUser = getCurrentUser();