Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
9
91isoft_vue_manage
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
杨硕
91isoft_vue_manage
Commits
f61a439c
Commit
f61a439c
authored
Jan 04, 2021
by
Asjoker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
各个页面的分页正常化
parent
1512995e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
25 deletions
+22
-25
index.vue
src/views/monitor/errorLog/index.vue
+9
-9
index.vue
src/views/monitor/loginInfo/index.vue
+8
-11
index.vue
src/views/monitor/operLog/index.vue
+5
-5
No files found.
src/views/monitor/errorLog/index.vue
View file @
f61a439c
...
...
@@ -98,7 +98,7 @@
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
:show-overflow-tooltip=
"true"
label=
"日志编号"
width=
"100"
align=
"center"
prop=
"businessId"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
business
Id
||
'-'
}}
{{
scope
.
row
.
oper
Id
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
:show-overflow-tooltip=
"true"
label=
"系统模块"
align=
"center"
prop=
"systemMode"
>
...
...
@@ -158,8 +158,8 @@
<pagination
v-show=
"total>0"
:total=
"total"
:page
.
sync=
"queryParams.p
u
"
:limit
.
sync=
"queryParams.
p
s"
:page
.
sync=
"queryParams.p
age
"
:limit
.
sync=
"queryParams.
row
s"
@
pagination=
"getList"
/>
...
...
@@ -234,10 +234,10 @@ export default {
form
:
{},
// 查询参数
queryParams
:
{
p
u
:
1
,
p
s
:
10
,
p
age
:
1
,
row
s
:
10
,
status
:
1
,
//
operTime: '',
operTime
:
''
,
title
:
undefined
,
operName
:
undefined
// businessType: undefined
...
...
@@ -289,7 +289,7 @@ export default {
},
/** 查询按钮操作 */
handleQuery
()
{
this
.
queryParams
.
p
u
=
1
this
.
queryParams
.
p
age
=
1
this
.
getList
()
},
/** 重置按钮操作 */
...
...
@@ -338,8 +338,8 @@ export default {
handleExport
()
{
const
queryParams
=
Object
.
assign
({},
this
.
queryParams
)
// queryParams.operTime = queryParams.operTime ? this.$parseDate(new Date(queryParams.operTime), 'YYYYMM') : ''
delete
queryParams
.
p
u
delete
queryParams
.
p
s
delete
queryParams
.
p
age
delete
queryParams
.
row
s
queryParams
.
ids
=
this
.
ids
.
join
(
','
)
||
null
exportErrLog
(
queryParams
).
then
(
response
=>
{
this
.
download
(
response
.
msg
)
...
...
src/views/monitor/loginInfo/index.vue
View file @
f61a439c
...
...
@@ -40,19 +40,16 @@
<!--
</el-form-item>
-->
<el-form-item
label=
"登录时间"
>
<el-date-picker
v-model=
"dateRange"
v-model=
"queryParams.loginTime"
type=
"month"
size=
"small"
style=
"width: 240px"
type=
"daterange"
range-separator=
"-"
value-format=
"yyyy-MM-dd"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
style=
"width: 170px"
value-format=
"yyyy-MM"
placeholder=
"请选择月份"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"cyan"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
<el-button
type=
"primary"
size=
"small"
@
click=
"handleQuery"
>
查询
</el-button>
</el-form-item>
<div
style=
"float: right"
>
<el-form-item>
...
...
@@ -173,8 +170,8 @@ export default {
rows
:
10
,
ipaddr
:
undefined
,
username
:
undefined
,
status
:
undefined
//
loginTime: ''
status
:
undefined
,
loginTime
:
''
}
}
},
...
...
src/views/monitor/operLog/index.vue
View file @
f61a439c
...
...
@@ -158,8 +158,8 @@
<pagination
v-show=
"total>0"
:total=
"total"
:page
.
sync=
"queryParams.p
u
"
:limit
.
sync=
"queryParams.
p
s"
:page
.
sync=
"queryParams.p
age
"
:limit
.
sync=
"queryParams.
row
s"
@
pagination=
"getList"
/>
...
...
@@ -235,8 +235,8 @@ export default {
// operTime: '',
// 查询参数
queryParams
:
{
p
u
:
1
,
p
s
:
10
,
p
age
:
1
,
row
s
:
10
,
status
:
0
,
operTime
:
''
,
title
:
undefined
,
...
...
@@ -290,7 +290,7 @@ export default {
},
/** 查询按钮操作 */
handleQuery
()
{
this
.
queryParams
.
p
u
=
1
this
.
queryParams
.
p
age
=
1
this
.
getList
()
},
/** 重置按钮操作 */
...
...
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