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
5e481272
authored
2020-12-25 16:16:00 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
2 parents
40997e28
99f1ad87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
3 deletions
src/views/zrz/index.vue
src/views/zrz/lpb/bjlp/lpbContent/index.vue
src/views/zrz/index.vue
View file @
5e48127
...
...
@@ -43,7 +43,7 @@ export default {
},
created
()
{},
mounted
()
{
this
.
$store
.
state
.
contentWidth
=
this
.
$refs
.
lpb
.
offsetWidth
-
37
;
this
.
$store
.
state
.
contentWidth
=
this
.
$refs
.
lpb
.
offsetWidth
-
44
;
},
computed
:
{},
watch
:
{},
...
...
src/views/zrz/lpb/bjlp/lpbContent/index.vue
View file @
5e48127
...
...
@@ -279,7 +279,7 @@
</div>
<!-- <div class="ch-wrap">层户</div> -->
<div
class=
"zrz"
:style=
"{ width: lpbContentWidth + 'px' }"
>
{{ lpbData.xmmc }}
<el-checkbox
v-model=
"zrzChecked"
@
change=
'lpbSelectAll'
>
{{ lpbData.xmmc }}
</el-checkbox>
</div>
</div>
<ul
...
...
@@ -455,7 +455,8 @@ export default {
fghs
:
""
,
oldbsm
:
''
,
fgfx
:
0
}
},
zrzChecked
:
false
,
//自然幢全选
};
},
created
()
{},
...
...
@@ -954,6 +955,20 @@ export default {
this
.
hbsmList
.
push
(
this
.
chData
);
}
this
.
hcxlzVisible
=
true
},
//楼盘表户全选
lpbSelectAll
(
value
){
if
(
value
){
this
.
$refs
.
hBsm
.
forEach
((
item
)
=>
{
item
.
className
=
"tdSelect"
;
this
.
hbsmList
.
push
(
item
.
dataset
.
bsm
);
// 将户bsm放进hbsmList
});
}
else
{
this
.
$refs
.
hBsm
.
forEach
((
item
)
=>
{
item
.
className
=
""
;
this
.
hbsmList
=
[];
});
}
}
},
computed
:
{
...
...
@@ -1235,5 +1250,24 @@ export default {
margin
:
20px
auto
0
;
width
:
150px
;
}
.el-checkbox
{
font-size
:
16px
;
/deep/.el-checkbox__label{
font-size
:
16px
;
}
/
deep
/
.el-checkbox__inner
{
width
:
16px
;
height
:
16px
;
}
/
deep
/
.el-checkbox__inner
::after
{
height
:
9px
;
left
:
4px
;
top
:
0px
;
width
:
5px
;
}
/
deep
/
.el-checkbox__input
{
top
:
1px
;
}
}
}
</
style
>
...
...
Please
register
or
sign in
to post a comment