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
83b3844e
authored
2020-11-30 17:25:31 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
实预测类型切换时,清除选中状态和数据
1 parent
2dd00fd9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletions
src/views/zrz/lpb/bjlp/index.vue
src/views/zrz/lpb/bjlp/index.vue
View file @
83b3844
...
...
@@ -3,7 +3,7 @@
<div
class=
"tab-header"
>
<el-row
class=
"searchContent"
>
<el-col
:span=
"8"
>
<el-radio-group
v-model=
"syclx
"
>
<el-radio-group
v-model=
"syclx"
@
change=
"syclxChange
"
>
<el-radio-button
label=
"1"
>
实测
</el-radio-button>
<el-radio-button
label=
"0"
>
预测
</el-radio-button>
</el-radio-group>
...
...
@@ -437,6 +437,18 @@ export default {
plshClose
()
{
this
.
plShVisible
=
false
;
},
//改变是预测数据类型
syclxChange
(
val
){
//清空已选中层户
this
.
cbsmList
=
[];
this
.
bsms
=
[];
console
.
log
(
this
.
$refs
.
lpbContent
.
$refs
.
hBsm
,
'this.$refs.lpbContent'
);
this
.
$refs
.
lpbContent
.
$refs
.
hBsm
.
forEach
(
item
=>
{
if
(
item
.
className
==
"tdSelect"
)
{
item
.
className
=
""
;
}
})
},
//获取高度计算lpb内容区高度
getHeight
()
{
this
.
lpbContentHight
=
window
.
innerHeight
-
285
;
...
...
Please
register
or
sign in
to post a comment