Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
99f1ad87
authored
2020-12-25 16:13:36 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
5f857d63
9f3b2485
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
3 deletions
src/views/manage/log/index.vue
src/views/manage/log/index.vue
View file @
99f1ad8
...
...
@@ -52,6 +52,11 @@
</el-table-column>
</el-table>
</div>
<div
class=
"pagination"
>
<el-pagination
background
layout=
"prev, pager, next,total"
:total=
"total"
:current-page=
"pageNo"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
>
</el-pagination>
</div>
</div>
</
template
>
...
...
@@ -65,6 +70,10 @@
errorLog
:[],
concreteLog
:
''
,
total
:
0
,
pageNo
:
1
,
pageSize
:
50
,
outerVisible
:
false
,
innerVisible
:
false
,
...
...
@@ -98,15 +107,21 @@
methods
:{
getData
(){
let
data
=
{
"startTime"
:
""
,
"pageNo"
:
1
,
"pageSize"
:
50
"startTime"
:
this
.
startValue
,
"endTime"
:
this
.
endValue
,
"pageNo"
:
this
.
pageNo
,
"pageSize"
:
this
.
pageSize
};
getLogData
(
data
).
then
((
res
)
=>
{
console
.
log
(
res
.
result
);
this
.
tableData
=
res
.
result
.
records
;
this
.
total
=
res
.
result
.
total
})
},
handleCurrentChange
(
val
)
{
this
.
pageNo
=
val
;
this
.
getData
();
},
query
(){
let
data
=
{
"startTime"
:
this
.
startValue
,
...
...
@@ -175,5 +190,8 @@
margin
:
10px
;
}
.pagination
{
padding
:
18px
0
;
}
</
style
>
\ No newline at end of file
...
...
Please
register
or
sign in
to post a comment