From e2c1995f2e135b8a7433b2bdbed2f7758261ace8 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Tue, 09 Jul 2024 15:20:39 +0800
Subject: [PATCH] 公安模块添加时间查询
---
src/api/logs.js | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/src/api/logs.js b/src/api/logs.js
index 287ace9..eacbce0 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',
+ url: '/api/blade-log/api/page',
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