Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust_web
Project
Project
Details
Activity
Releases
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
张伯涛
cust_web
Commits
a60da243
Commit
a60da243
authored
Dec 30, 2024
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了日志查询接口接参
parent
10552f67
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
index.vue
src/views/monitor/errorLog/index.vue
+2
-2
index.vue
src/views/monitor/loginInfo/index.vue
+1
-1
index.vue
src/views/monitor/operLog/index.vue
+2
-2
No files found.
src/views/monitor/errorLog/index.vue
View file @
a60da243
...
@@ -295,8 +295,8 @@ export default {
...
@@ -295,8 +295,8 @@ export default {
getList
()
{
getList
()
{
this
.
loading
=
true
this
.
loading
=
true
list
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
list
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
if
(
response
.
rows
!==
undefined
)
{
if
(
response
.
data
!==
undefined
)
{
this
.
list
=
response
.
rows
.
map
(
item
=>
{
this
.
list
=
response
.
data
.
map
(
item
=>
{
const
title
=
item
.
title
const
title
=
item
.
title
if
(
title
)
{
if
(
title
)
{
const
temp
=
title
.
split
(
'-'
)
const
temp
=
title
.
split
(
'-'
)
...
...
src/views/monitor/loginInfo/index.vue
View file @
a60da243
...
@@ -250,7 +250,7 @@ export default {
...
@@ -250,7 +250,7 @@ export default {
getList
()
{
getList
()
{
this
.
loading
=
true
this
.
loading
=
true
list
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
list
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
this
.
list
=
response
.
rows
this
.
list
=
response
.
data
this
.
total
=
response
.
total
this
.
total
=
response
.
total
this
.
loading
=
false
this
.
loading
=
false
})
})
...
...
src/views/monitor/operLog/index.vue
View file @
a60da243
...
@@ -340,8 +340,8 @@ export default {
...
@@ -340,8 +340,8 @@ export default {
getList
()
{
getList
()
{
this
.
loading
=
true
this
.
loading
=
true
list
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
list
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
if
(
response
.
rows
!==
undefined
)
{
if
(
response
.
data
!==
undefined
)
{
this
.
list
=
response
.
rows
.
map
(
item
=>
{
this
.
list
=
response
.
data
.
map
(
item
=>
{
const
title
=
item
.
title
const
title
=
item
.
title
if
(
title
)
{
if
(
title
)
{
const
temp
=
title
.
split
(
'-'
)
const
temp
=
title
.
split
(
'-'
)
...
...
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