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
e25043c9
authored
2020-12-14 19:52:19 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
代码优化
1 parent
76a3cd95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
src/components/queryData/queryData.vue
src/views/panel/change/hb/index.vue
src/components/queryData/queryData.vue
View file @
e25043c
...
...
@@ -186,11 +186,11 @@
created
()
{
},
methods
:
{
currentChange
:
function
(
val
)
{
currentChange
(
val
)
{
this
.
queryData
.
pageNo
=
val
;
this
.
getData
(
this
.
queryData
);
},
reset
:
function
()
{
reset
()
{
this
.
queryData
=
{
bdcdyh
:
""
,
bdcqzh
:
""
,
...
...
@@ -204,23 +204,23 @@
};
this
.
getData
(
this
.
queryData
)
},
getData
:
function
(
data
)
{
getData
(
data
)
{
data
[
'dylxs'
]
=
this
.
dylxs
;
getSearchList
(
data
).
then
(
res
=>
{
this
.
Data
=
res
.
result
.
records
this
.
total
=
res
.
result
.
total
;
})
},
search
:
function
()
{
search
()
{
this
.
getData
(
this
.
queryData
)
},
addData
:
function
(
val
)
{
addData
(
val
)
{
this
.
$emit
(
"getData"
,
val
)
if
(
this
.
isZdClose
)
{
this
.
close
();
}
},
close
:
function
()
{
close
()
{
this
.
$emit
(
'close'
)
this
.
reset
();
}
...
...
src/views/panel/change/hb/index.vue
View file @
e25043c
...
...
@@ -756,4 +756,7 @@
color
:
blue
;
text-decoration
:
underline
;
}
/
deep
/
.el-select
{
width
:
100%
;
}
</
style
>
...
...
Please
register
or
sign in
to post a comment