修复充电记录

This commit is contained in:
2025-06-02 15:53:02 +08:00
parent d2bcfe23e6
commit 4cbfc1414c
2 changed files with 8 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ export default function MySessionsPage() {
setSessionsLoading(true);
setError(null);
try {
const response = await api.post<BaseResponse<Page<ChargingSession>>>('/session/my/list/page', {
const response = await api.post<BaseResponse<Page<ChargingSession>>>('/api/session/my/list/page', {
current: page,
pageSize: itemsPerPage,
});