diff --git a/src/api/v1/actuator.ts b/src/api/v1/actuator.ts index 3e0f591..274508d 100644 --- a/src/api/v1/actuator.ts +++ b/src/api/v1/actuator.ts @@ -2,15 +2,15 @@ import { http } from '@/api/service/request'; /** actuator断端点-系统服务获取 */ export const fetchSystemHealthList = () => { - return http.request('get', '/health'); + return http.request('get', 'actuator/health'); }; /** actuator断端点-系统信息 */ export const fetchSystemInfo = () => { - return http.request('get', '/info'); + return http.request('get', 'actuator/info'); }; /** actuator断端点-系统缓存 */ export const fetchSystemCaches = () => { - return http.request('get', '/caches'); + return http.request('get', 'actuator/caches'); };