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
5c6d54f8
authored
2020-12-22 15:56:47 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
实预测都没数据时,实测新建楼盘,刷新之后获取到数据,但是不显示
1 parent
43ca1b4a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
10 deletions
src/views/zrz/lpb/bjlp/index.vue
src/views/zrz/lpb/bjlp/index.vue
View file @
5c6d54f
...
...
@@ -474,21 +474,27 @@ export default {
this
.
$refs
.
lpbContent
.
hbsmList
=
[];
this
.
$nextTick
(()
=>
{
//户
this
.
$refs
.
lpbContent
.
$refs
.
hBsm
.
forEach
(
item
=>
{
item
.
style
.
borderColor
=
'rgb(230, 230, 230)'
;
if
(
item
.
className
==
"tdSelect"
)
{
item
.
className
=
""
;
}
});
if
(
this
.
$refs
.
lpbContent
.
$refs
.
hBsm
)
{
this
.
$refs
.
lpbContent
.
$refs
.
hBsm
.
forEach
(
item
=>
{
item
.
style
.
borderColor
=
'rgb(230, 230, 230)'
;
if
(
item
.
className
==
"tdSelect"
)
{
item
.
className
=
""
;
}
});
}
//层
this
.
$refs
.
lpbContent
.
$refs
.
cBsm
.
forEach
(
item
=>
{
console
.
log
(
item
.
className
,
'item.className'
);
item
.
className
=
"floor"
;
});
if
(
this
.
$refs
.
lpbContent
.
$refs
.
cBsm
)
{
this
.
$refs
.
lpbContent
.
$refs
.
cBsm
.
forEach
(
item
=>
{
console
.
log
(
item
.
className
,
'item.className'
);
item
.
className
=
"floor"
;
});
}
})
//获取图例数据
this
.
getDyztBsmList
();
this
.
getLpbFwytAndQlxz
();
//重新渲染楼盘表
this
.
$refs
.
lpbContent
.
dataChange
();
},
//获取高度计算lpb内容区高度
getHeight
()
{
...
...
Please
register
or
sign in
to post a comment