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
15ab6f29
authored
2020-11-06 09:51:52 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(fg,hb):去掉弹出框遮罩,修改下拉框修改无效
1 parent
b2f407c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
src/components/queryData/queryData.vue
src/views/panel/change/fg/index.vue
src/components/queryData/queryData.vue
View file @
15ab6f2
...
...
@@ -5,6 +5,7 @@
:visible
.
sync=
"isVisible"
width=
"50%"
@
close=
"close"
:modal-append-to-body=
"false"
center
>
<div
class=
"search"
>
<el-button
type=
"primary"
@
click=
"search"
>
查询
</el-button>
...
...
@@ -156,6 +157,7 @@
</
script
>
<
style
scoped
lang=
"less"
>
.main
{
box-sizing
:
border-box
;
padding
:
18px
;
...
...
src/views/panel/change/fg/index.vue
View file @
15ab6f2
...
...
@@ -650,7 +650,7 @@
// 用户bsm暂时传空
this
.
checkedData
.
userbsm
=
''
// fwlist 暂时传空
this
.
checkedData
.
fwlist
=
[{
z
d
bsm
:
''
,
ztype
:
''
}]
this
.
checkedData
.
fwlist
=
[{
zbsm
:
''
,
ztype
:
''
}]
})
},
getzdtzm
()
{
...
...
@@ -719,8 +719,9 @@
}
]
});
this
.
fghData
.
newZdlist
[
this
.
fghData
.
newZdlist
.
length
-
1
]
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
checkedData
));
this
.
changeXzq
(
this
.
checkedData
.
xzqbsm
)
this
.
changeDjq
(
this
.
checkedData
.
djqbsm
)
this
.
$set
(
this
.
fghData
.
newZdlist
,
this
.
fghData
.
newZdlist
.
length
-
1
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
checkedData
)))
},
delRow
(
index
)
{
this
.
fghData
.
newZdlist
.
splice
(
index
,
1
)
...
...
@@ -759,6 +760,9 @@
}
</
script
>
<
style
scoped
lang=
"less"
>
.v-model
{
z-index
:
99
!important
;
}
.main
{
box-sizing
:
border-box
;
padding
:
18px
;
...
...
Please
register
or
sign in
to post a comment