Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ximai
mes-ui
Commits
a2bade75
Commit
a2bade75
authored
Nov 16, 2024
by
李驰骋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口日志菜单添加
parent
f9906f4b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
359 additions
and
0 deletions
+359
-0
apilog.js
src/api/monitor/apilog.js
+35
-0
index.vue
src/views/monitor/apilog/index.vue
+324
-0
No files found.
src/api/monitor/apilog.js
0 → 100644
View file @
a2bade75
import
request
from
'@/utils/request'
// 查询操作日志列表
export
function
list
(
query
)
{
return
request
({
url
:
'/monitor/apiLog/list'
,
method
:
'get'
,
params
:
query
})
}
// 删除操作日志
export
function
delApilog
(
operId
)
{
return
request
({
url
:
'/monitor/apiLog/'
+
operId
,
method
:
'delete'
})
}
// 清空操作日志
export
function
cleanApilog
()
{
return
request
({
url
:
'/monitor/apiLog/clean'
,
method
:
'delete'
})
}
// 再执行操作
export
function
executeOperation
(
param
)
{
return
request
({
url
:
'/monitor/apiLog/execute'
,
method
:
'post'
,
data
:
param
})
}
src/views/monitor/apilog/index.vue
0 → 100644
View file @
a2bade75
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment