From cc67e8fbd36176640f7eea10b6d62ae2030130ae Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Fri, 19 Apr 2024 17:08:00 +0800
Subject: [PATCH] 日子查询修改,社区,人员,安保活动修改
---
src/api/logs.js | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/api/logs.js b/src/api/logs.js
index 287ace9..f3270cd 100644
--- a/src/api/logs.js
+++ b/src/api/logs.js
@@ -1,32 +1,35 @@
import request from '@/router/axios';
-export const getUsualList = (current, size) => {
+export const getUsualList = (current, size,params) => {
return request({
url: '/api/blade-log/usual/list',
method: 'get',
params: {
+ ...params,
current,
size
}
})
}
-export const getApiList = (current, size) => {
+export const getApiList = (current, size,params) => {
return request({
url: '/api/blade-log/api/list',
method: 'get',
params: {
+ ...params,
current,
size
}
})
}
-export const getErrorList = (current, size) => {
+export const getErrorList = (current, size,params) => {
return request({
url: '/api/blade-log/error/list',
method: 'get',
params: {
+ ...params,
current,
size
}
--
Gitblit v1.9.3