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
c8f5310b
authored
2020-10-28 15:03:46 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(添加,变更,更正):添加权属状态查询条件
1 parent
9297b584
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
src/views/panel/add/index.vue
src/views/panel/change/fwsxbg/index.vue
src/views/panel/modify/index.vue
src/views/panel/add/index.vue
View file @
c8f5310
...
...
@@ -55,6 +55,7 @@
total
:
0
,
pageNo
:
1
,
pageSize
:
10
,
qszt
:
1
,
queryData
:
{},
formData
:
{
user
:
""
,
...
...
@@ -68,7 +69,10 @@
created
()
{
},
mounted
()
{
this
.
getData
({})
this
.
getData
({
pageNo
:
this
.
pageNo
,
pageSize
:
this
.
pageSize
,
})
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
},
methods
:
{
...
...
@@ -79,6 +83,7 @@
this
.
getData
(
this
.
queryData
);
},
getData
(
data
)
{
data
[
'qszt'
]
=
this
.
qszt
getSearchList
(
data
).
then
(
res
=>
{
this
.
tableData
=
res
.
result
.
records
this
.
total
=
res
.
result
.
total
...
...
src/views/panel/change/fwsxbg/index.vue
View file @
c8f5310
...
...
@@ -42,7 +42,7 @@
</el-table>
<div
class=
"pagination"
>
<el-pagination
background
layout=
"prev, pager, next"
:total=
"total"
:current-page=
"pageNo"
@
current-change=
"handleCurrentChange"
>
:current-page=
"pageNo"
@
current-change=
"handleCurrentChange"
>
</el-pagination>
</div>
</div>
...
...
@@ -59,6 +59,7 @@
props
:
{},
data
()
{
return
{
qszt
:
2
,
total
:
0
,
pageNo
:
1
,
pageSize
:
10
,
...
...
@@ -90,6 +91,7 @@
this
.
getData
(
this
.
queryData
);
},
getData
(
data
)
{
data
[
'qszt'
]
=
this
.
qszt
getSearchList
(
data
).
then
(
res
=>
{
this
.
tableData
=
res
.
result
.
records
this
.
total
=
res
.
result
.
total
...
...
@@ -136,7 +138,7 @@
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
18px
!important
;
padding
:
0
18px
!important
;
display
:
flex
;
flex-direction
:
column
;
background-color
:
#fcfdff
;
...
...
src/views/panel/modify/index.vue
View file @
c8f5310
...
...
@@ -36,7 +36,7 @@
</el-table>
<div
class=
"pagination"
>
<el-pagination
background
layout=
"prev, pager, next"
:total=
"total"
:current-page=
"pageNo"
@
current-change=
"handleCurrentChange"
>
:current-page=
"pageNo"
@
current-change=
"handleCurrentChange"
>
</el-pagination>
</div>
</div>
...
...
@@ -53,6 +53,7 @@
props
:
{},
data
()
{
return
{
qszt
:
1
,
total
:
0
,
pageNo
:
1
,
pageSize
:
10
,
...
...
@@ -80,6 +81,7 @@
this
.
getData
(
this
.
queryData
);
},
getData
(
data
)
{
data
[
'qszt'
]
=
this
.
qszt
getSearchList
(
data
).
then
(
res
=>
{
this
.
tableData
=
res
.
result
.
records
this
.
total
=
res
.
result
.
total
...
...
Please
register
or
sign in
to post a comment