From 96def30fab8bf9bc1b42ff2b659b3687acbd0651 Mon Sep 17 00:00:00 2001 From: Bunny <1319900154@qq.com> Date: Thu, 24 Oct 2024 23:37:50 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=A7=A9=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E7=BC=BA=E9=99=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/v1/actuator.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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'); };