fix: issues

This commit is contained in:
2025-12-20 14:11:44 +08:00
parent 88d42470c4
commit 8e95dada82
17 changed files with 95 additions and 87 deletions

View File

@@ -2,6 +2,6 @@ import httpClient from './httpClient';
export const authService = {
login(username, password) {
return httpClient.post('/admin/auth', { username, password });
return httpClient.post('/auth', { username, password });
},
};