fix: 🧩 修复路径缺陷
This commit is contained in:
parent
5f178556ed
commit
96def30fab
|
@ -2,15 +2,15 @@ import { http } from '@/api/service/request';
|
|||
|
||||
/** actuator断端点-系统服务获取 */
|
||||
export const fetchSystemHealthList = () => {
|
||||
return http.request<any>('get', '/health');
|
||||
return http.request<any>('get', 'actuator/health');
|
||||
};
|
||||
|
||||
/** actuator断端点-系统信息 */
|
||||
export const fetchSystemInfo = () => {
|
||||
return http.request<any>('get', '/info');
|
||||
return http.request<any>('get', 'actuator/info');
|
||||
};
|
||||
|
||||
/** actuator断端点-系统缓存 */
|
||||
export const fetchSystemCaches = () => {
|
||||
return http.request<any>('get', '/caches');
|
||||
return http.request<any>('get', 'actuator/caches');
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue