From 5b73519a2c26fea97b4dfd7f56ee6c4e5ea27dde Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Thu, 11 Sep 2025 15:55:37 +0800
Subject: [PATCH] Merge branch 'feature/v5.0/5.0.5' into feature/v6.0/6.0.1

---
 src/api/logs.js |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/api/logs.js b/src/api/logs.js
index 9368365..40f602d 100644
--- a/src/api/logs.js
+++ b/src/api/logs.js
@@ -11,22 +11,24 @@
   });
 };
 
-export const getApiList = (current, size) => {
+export const getApiList = (current, size,params) => {
   return request({
-    url: '/blade-log/api/list',
+    url: '/blade-log/api/page',
     method: 'get',
     params: {
+      ...params,
       current,
       size,
     },
   });
 };
 
-export const getErrorList = (current, size) => {
+export const getErrorList = (current, size,params) => {
   return request({
     url: '/blade-log/error/list',
     method: 'get',
     params: {
+      ...params,
       current,
       size,
     },

--
Gitblit v1.9.3