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
fe2d18f6
authored
2020-11-18 17:21:32 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat(hcxlz):户重新落宗,45%
1 parent
153a30dc
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
867 additions
and
671 deletions
src/components/cxlxQueryData/cxlzQueryData.vue
src/components/emailInput/emailInput.vue
src/components/hCxlz/hCxlz.vue
src/components/queryData/queryData.vue
src/views/panel/change/cxlz/index.vue
src/views/systemZRZ/lpb/bjlp/index.vue
src/components/cxlxQueryData/cxlzQueryData.vue
View file @
fe2d18f
...
...
@@ -224,6 +224,9 @@
background-color
:
#fff
;
font-size
:
14px
;
width
:
100%
;
tr
:
hover
{
background-color
:
#F5F7FA
;
}
}
td
{
...
...
src/components/emailInput/emailInput.vue
deleted
100644 → 0
View file @
153a30d
<
template
>
<div
class=
"main"
>
<div
class=
'input'
contenteditable
placeholder=
'请输入文字'
>
<div
@
mouseover=
"mouseover($event)"
@
mouseleave=
"mouseLeave($event)"
v-for=
"(item,index) in datas"
:key=
"index"
style=
"float: left;"
class=
"item"
>
{{
item
}}
;
<div
style=
"float: right;display: none"
@
click=
"itemClick(index)"
>
X
</div>
</div>
</div>
</div>
</
template
>
<
script
>
export
default
{
name
:
"emailInput"
,
data
()
{
return
{
datas
:
[
'111'
,
'222'
,
'333'
,
'444'
,
'555'
,
'666'
,
'777'
,
'888'
,
'999'
],
}
},
props
:
{},
methods
:
{
mouseover
(
e
)
{
// e.target 是你当前点击的元素
// 是你绑定事件的元素
let
dom
=
e
.
currentTarget
.
firstElementChild
dom
.
style
=
"float: right;display: block"
;
// 获得点击元素的前一个元素
/* e.currentTarget.previousElementSibling.innerHTML
// 获得点击元素的第一个子元素
e.currentTarget.firstElementChild
// 获得点击元素的下一个元素
e.currentTarget.nextElementSibling
// 获得点击元素中id为string的元素
e.currentTarget.getElementById("string")
// 获得点击元素的string属性
e.currentTarget.getAttributeNode('string')
//获得点击元素的父级元素
e.currentTarget.parentElement
// 获得点击元素的前一个元素的第一个子元素的HTML值
e.currentTarget.previousElementSibling.firstElementChild.innerHTML*/
},
mouseLeave
(
e
)
{
let
dom
=
e
.
currentTarget
.
firstElementChild
dom
.
style
=
"float: right;display: none"
},
itemClick
(
index
){
this
.
datas
.
splice
(
index
,
1
)
}
},
computed
:
{
text
:
function
()
{
let
text
=
""
;
for
(
let
item
of
this
.
datas
)
{
text
+=
item
+
";"
;
}
return
text
;
}
}
}
</
script
>
<
style
scoped
lang=
"less"
>
.main
{
.input
{
width
:
auto
;
height
:
24px
;
line-height
:
24px
;
font-size
:
14px
;
padding
:
5px
8px
;
border
:
1px
solid
#ddd
;
}
.input
:empty::before
{
content
:
attr
(
placeholder
);
}
.item
{
cursor
:
pointer
;
}
.item
:hover
{
border
:
1px
solid
#BBF
;
}
}
</
style
>
src/components/hCxlz/hCxlz.vue
0 → 100644
View file @
fe2d18f
<
template
>
<div
class=
"main"
>
<el-dialog
title=
"户重新落宗"
:visible
.
sync=
"isVisible"
width=
"50%"
@
close=
"close"
:modal-append-to-body=
"false"
>
<div
class=
"content"
>
<div
class=
"input-suffix"
>
宗 地:
<input
placeholder=
"请选择宗地"
v-model=
"hcxlzData.zdbsm"
readonly=
"readonly"
/>
<el-button
type=
"primary"
@
click=
"drawer = true"
>
选择宗地
</el-button>
</div>
<div
class=
"input-suffix"
>
自然幢:
<el-select
v-model=
"hcxlzData.zrzbsm"
filterable
placeholder=
"请选择"
>
<el-option
v-for=
"item in zrzList"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</div>
<div
class=
"input-suffix"
>
逻辑幢:
<el-select
v-model=
"hcxlzData.ljzbsm"
filterable
placeholder=
"请选择"
>
<el-option
v-for=
"item in ljzList"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</div>
<div
class=
"input-suffix"
>
幢单元:
<el-select
v-model=
"hcxlzData.zdybsm"
filterable
placeholder=
"请选择"
>
<el-option
v-for=
"item in zdyList"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</div>
</div>
<div
class=
"footer"
>
<el-button
type=
"primary"
@
click=
"save"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"cancel"
>
取消
</el-button>
</div>
<el-drawer
title=
"选择宗地"
:visible
.
sync=
"drawer"
direction=
"rtl"
size=
"25%"
:before-close=
"drawerClose"
>
<div>
<div
class=
"search"
>
<el-button
type=
"primary"
@
click=
"search"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"result"
>
重置
</el-button>
<el-row
:gutter=
"10"
class=
"shop"
>
<el-col
:span=
"4"
class=
"inputtitle"
>
宗地编码:
</el-col>
<el-col
:span=
"8"
class=
""
>
<el-input
v-model=
"queryData.zddm"
></el-input>
</el-col>
<el-col
:span=
"4"
class=
"inputtitle"
>
不动产权证号:
</el-col>
<el-col
:span=
"8"
class=
""
>
<el-input
v-model=
"queryData.bdcqzh"
></el-input>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"4"
class=
"inputtitle"
>
不动产权单元号:
</el-col>
<el-col
:span=
"8"
>
<el-input
v-model=
"queryData.bdcdyh"
></el-input>
</el-col>
<el-col
:span=
"4"
class=
"inputtitle"
>
权利人:
</el-col>
<el-col
:span=
"8"
>
<el-input
v-model=
"queryData.qlrmc"
></el-input>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"4"
class=
"inputtitle"
>
坐落:
</el-col>
<el-col
:span=
"8"
>
<el-input
v-model=
"queryData.zl"
></el-input>
</el-col>
</el-row>
<table
border=
"1"
>
<tr>
<td
class=
"xh"
>
序号
</td>
<td
class=
"zddm"
>
宗地代码
</td>
<td
class=
"bdcdyh"
>
不动产单元号
</td>
<td
class=
"xmmc"
>
项目名称
</td>
<td
class=
"bdcqzh"
>
不动产权证号
</td>
<td
class=
"qlr"
>
权利人
</td>
<td
class=
"zl"
>
坐落
</td>
<td
class=
"cz"
>
操作
</td>
</tr>
<tr
v-if=
"Data.length==0"
>
<td
colspan=
"8"
>
<span
class=
"noData"
>
暂无数据
</span>
</td>
</tr>
<tr
v-else
v-for=
"(item,index) in Data"
:key=
"index"
>
<td
class=
"xh"
>
{{
index
+
1
}}
</td>
<td
class=
"zddm"
:title=
"item.zddm"
>
{{
item
.
zddm
}}
</td>
<td
class=
"bdcqdyh"
:title=
"item.bdcdyh"
>
{{
item
.
bdcdyh
}}
</td>
<td
class=
"xmmc"
:title=
"item.xmmc"
>
{{
item
.
xmmc
}}
</td>
<td
class=
"bdcqzh"
:title=
"item.bdcqzd"
>
{{
item
.
bdcqzh
}}
</td>
<td
class=
"qlr"
:title=
"item.qlr"
>
{{
item
.
qlr
}}
</td>
<td
class=
"zl"
:title=
"item.zl"
>
{{
item
.
zl
}}
</td>
<td
@
click=
"saveNotarize(item)"
class=
"cz"
>
<span>
落宗
</span>
</td>
</tr>
</table>
</div>
<div
class=
"page"
>
<el-pagination
background
layout=
"prev, pager, next,total"
:page-size=
"queryData.pageSize"
:total=
"total"
@
current-change=
"currentChange"
>
</el-pagination>
</div>
</div>
</el-drawer>
</el-dialog>
</div>
</
template
>
<
script
>
export
default
{
name
:
"hCxlz"
,
data
()
{
return
{
drawer
:
false
,
isVisible
:
false
,
hcxlzData
:
{
bsms
:
[],
zdbsm
:
''
,
zrzbsm
:
''
,
ljzbsm
:
''
,
zdybsm
:
''
},
total
:
1
,
queryData
:
{
bdcdyh
:
""
,
bdcqzh
:
""
,
dylxs
:
[
'zd'
],
qlrmc
:
""
,
qszt
:
"2"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
,
pageNo
:
1
,
pageSize
:
10
,
},
Data
:
[],
zrzList
:
[],
ljzList
:
[],
zdyList
:
[]
}
},
props
:
{
hCxlzVisble
:
{
type
:
Boolean
,
default
:
false
},
bsms
:
{
type
:
Array
}
},
mounted
()
{
},
methods
:
{
result
:
function
()
{
this
.
queryData
=
{
bdcdyh
:
""
,
bdcqzh
:
""
,
qlrmc
:
""
,
qszt
:
"2"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
,
pageNo
:
1
,
pageSize
:
10
,
};
this
.
getData
(
this
.
queryData
)
},
getData
:
function
(
data
)
{
data
[
'dylxs'
]
=
this
.
dylxs
;
getSearchList
(
data
).
then
(
res
=>
{
this
.
Data
=
res
.
result
.
records
this
.
total
=
res
.
result
.
total
;
})
},
search
:
function
()
{
this
.
getData
(
this
.
queryData
)
},
drawerClose
(
done
)
{
this
.
$confirm
(
'确认关闭?'
)
.
then
(
_
=>
{
done
();
})
.
catch
(
_
=>
{
});
},
cancel
()
{
console
.
log
(
"cancel......"
)
},
save
()
{
console
.
log
(
"save......."
)
},
close
()
{
this
.
$emit
(
'close'
,
false
);
this
.
isVisible
=
false
;
},
},
watch
:
{
hCxlzVisble
:
function
(
val
)
{
this
.
isVisible
=
val
}
}
}
</
script
>
<
style
scoped
lang=
"less"
>
.input-suffix
{
input
{
width
:
210px
;
height
:
30px
;
border-radius
:
3px
;
border-color
:
#BBB
;
}
}
.content
{
text-align
:
center
;
}
.footer
{
margin-top
:
20px
;
text-align
:
center
;
}
</
style
>
src/components/queryData/queryData.vue
View file @
fe2d18f
...
...
@@ -176,6 +176,9 @@
background-color
:
#fff
;
font-size
:
14px
;
width
:
100%
;
tr
:
hover
{
background-color
:
#F5F7FA
;
}
}
td
{
...
...
src/views/panel/change/cxlz/index.vue
View file @
fe2d18f
...
...
@@ -179,6 +179,9 @@
font-size
:
14px
;
width
:
100%
;
table-layout
:
fixed
;
tr
:
hover
{
background-color
:
#F5F7FA
;
}
td
,
th
{
text-align
:
center
;
height
:
36px
;
...
...
src/views/systemZRZ/lpb/bjlp/index.vue
View file @
fe2d18f
<
template
>
<div
class=
"edit"
>
<div
class=
"tab-header"
>
<el-row
class=
"searchContent"
>
<el-col
:span=
"8"
>
<el-radio-group
v-model=
"tabPosition"
>
<el-radio-button
label=
"1"
>
实测
</el-radio-button>
<el-radio-button
label=
"0"
>
预测
</el-radio-button>
</el-radio-group>
<el-input
v-model=
"bdcdyh"
:style=
"
{'width':inputWidth+'px'}"
@focus="inputFocus"
@blur="inputBlur"
@change="inputChange"
class="searchInput"
placeholder="输入不动产单元号"
>
<i
slot=
"suffix"
class=
"el-input__icon el-icon-search"
@
click=
"inputChange"
></i></el-input>
</el-col>
<el-col
:span=
"16"
>
<div
class=
"fr"
>
<el-button
class=
"radioBtn"
label=
"1"
border
@
click=
"create"
>
创建楼盘
</el-button>
<el-button
class=
"radioBtn"
label=
"2"
border
@
click=
"plScYcChange"
>
实预测转换
</el-button>
<el-button
class=
"radioBtn"
label=
"3"
border
@
click=
"plhVisible=true"
>
批量户
</el-button>
<el-button
class=
"radioBtn"
label=
"4"
border
@
click=
"plcVisible=true"
>
批量层
</el-button>
<el-button
class=
"radioBtn"
label=
"5"
border
@
click=
"plShVisible=true"
>
批量室号
</el-button>
<el-button
class=
"radioBtn"
label=
"6"
border
@
click=
"plzlVisible=true"
>
批量坐落
</el-button>
<el-button
class=
"radioBtn"
label=
"7"
border
>
批量单元号
</el-button>
</div>
</el-col>
</el-row>
</div>
<div
class=
"tab-content"
ref=
"tabContent"
:style=
"
{ height: lpbContentHight + 'px' }"
>
<!-- 左侧树结构 -->
<div
class=
"lp-tree"
:class=
"createFlag ? 'w260' : 'w0'"
>
<LineTree
:pd=
"pd"
class=
"treeData"
:islpb=
"islpb"
></LineTree>
<p
@
click=
"createFlag = false"
style=
"width:20px;float:left;margin-top: 12px;margin-left:10px;cursor:pointer;"
>
X
</p>
</div>
<!-- 楼盘表主体 -->
<div
class=
"lp-overview"
:style=
"
{ width: lpbContentwidth + 'px' }">
<lpbContent
ref=
"lpbContent"
:key=
"time"
></lpbContent>
</div>
<!-- 右侧图例 -->
<div
class=
"lp-legend"
>
<div
class=
"handleCol"
>
<div
class=
"btn"
@
click=
"legendToggle"
>
<i
v-show=
"!legendToggleFlag"
class=
"el-icon-d-arrow-left"
></i>
<i
v-show=
"legendToggleFlag"
class=
"el-icon-d-arrow-right"
></i>
</div>
<div
:class=
"selectedZt == 'dyzt'? 'dyzt selectedZt':'dyzt'"
@
click=
"selectedZt='dyzt'"
>
<span>
单元状态
</span>
</div>
<div
:class=
"selectedZt == 'fwxz'? 'fwxz selectedZt':'fwxz'"
@
click=
"selectedZt='fwxz'"
>
<span>
房屋性质
</span>
</div>
<div
:class=
"selectedZt == 'fwyt'? 'fwyt selectedZt':'fwyt'"
@
click=
"selectedZt='fwyt'"
>
<span>
房屋用途
</span>
</div>
</div>
<div
class=
"legendTable-wrap"
:style=
"
{ width: legendToggleFlag ? '204px' : '0' }"
>
<table
class=
"legendTable"
v-show=
"selectedZt == 'dyzt'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<tr>
<th>
状态
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in legendList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
</table>
<table
class=
"legendTable"
v-show=
"selectedZt == 'fwxz'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<tr>
<th>
性质
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in legendList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
</table>
<table
class=
"legendTable"
v-show=
"selectedZt == 'fwyt'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<tr>
<th>
用途
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in legendList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
</table>
</div>
</div>
</div>
<div
class=
"edit"
>
<div
class=
"tab-header"
>
<el-row
class=
"searchContent"
>
<el-col
:span=
"8"
>
<el-radio-group
v-model=
"tabPosition"
>
<el-radio-button
label=
"1"
>
实测
</el-radio-button>
<el-radio-button
label=
"0"
>
预测
</el-radio-button>
</el-radio-group>
<el-input
v-model=
"bdcdyh"
:style=
"
{'width':inputWidth+'px'}"
@focus="inputFocus"
@blur="inputBlur"
@change="inputChange"
class="searchInput"
placeholder="输入不动产单元号"
>
<i
slot=
"suffix"
class=
"el-input__icon el-icon-search"
@
click=
"inputChange"
></i></el-input>
</el-col>
<el-col
:span=
"16"
>
<div
class=
"fr"
>
<el-button
class=
"radioBtn"
label=
"1"
border
@
click=
"create"
>
创建楼盘
</el-button>
<el-button
class=
"radioBtn"
label=
"2"
border
@
click=
"plScYcChange"
>
实预测转换
</el-button>
<el-button
class=
"radioBtn"
label=
"3"
border
@
click=
"plhVisible=true"
>
批量户
</el-button>
<el-button
class=
"radioBtn"
label=
"4"
border
@
click=
"plcVisible=true"
>
批量层
</el-button>
<el-button
class=
"radioBtn"
label=
"5"
border
@
click=
"plShVisible=true"
>
批量室号
</el-button>
<el-button
class=
"radioBtn"
label=
"6"
border
@
click=
"plzlVisible=true"
>
批量坐落
</el-button>
<el-button
class=
"radioBtn"
label=
"7"
border
>
批量单元号
</el-button>
<el-button
class=
"radioBtn"
label=
"7"
border
@
click=
"hcxlzVisible=true"
>
户重新落宗
</el-button>
</div>
</el-col>
</el-row>
</div>
<div
class=
"tab-content"
ref=
"tabContent"
:style=
"
{ height: lpbContentHight + 'px' }"
>
<!-- 左侧树结构 -->
<div
class=
"lp-tree"
:class=
"createFlag ? 'w260' : 'w0'"
>
<LineTree
:pd=
"pd"
class=
"treeData"
:islpb=
"islpb"
></LineTree>
<p
@
click=
"createFlag = false"
style=
"width:20px;float:left;margin-top: 12px;margin-left:10px;cursor:pointer;"
>
X
</p>
</div>
<!-- 楼盘表主体 -->
<div
class=
"lp-overview"
:style=
"
{ width: lpbContentwidth + 'px' }">
<lpbContent
ref=
"lpbContent"
:key=
"time"
></lpbContent>
</div>
<!-- 右侧图例 -->
<div
class=
"lp-legend"
>
<div
class=
"handleCol"
>
<div
class=
"btn"
@
click=
"legendToggle"
>
<i
v-show=
"!legendToggleFlag"
class=
"el-icon-d-arrow-left"
></i>
<i
v-show=
"legendToggleFlag"
class=
"el-icon-d-arrow-right"
></i>
</div>
<div
:class=
"selectedZt == 'dyzt'? 'dyzt selectedZt':'dyzt'"
@
click=
"selectedZt='dyzt'"
>
<span>
单元状态
</span>
</div>
<div
:class=
"selectedZt == 'fwxz'? 'fwxz selectedZt':'fwxz'"
@
click=
"selectedZt='fwxz'"
>
<span>
房屋性质
</span>
</div>
<div
:class=
"selectedZt == 'fwyt'? 'fwyt selectedZt':'fwyt'"
@
click=
"selectedZt='fwyt'"
>
<span>
房屋用途
</span>
</div>
</div>
<div
class=
"legendTable-wrap"
:style=
"
{ width: legendToggleFlag ? '204px' : '0' }"
>
<table
class=
"legendTable"
v-show=
"selectedZt == 'dyzt'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<tr>
<th>
状态
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in legendList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
</table>
<table
class=
"legendTable"
v-show=
"selectedZt == 'fwxz'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<tr>
<th>
性质
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in legendList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
</table>
<table
class=
"legendTable"
v-show=
"selectedZt == 'fwyt'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<tr>
<th>
用途
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in legendList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- 右键菜单弹出框 -->
<el-dialog
title=
"添加"
:visible
.
sync=
"dialogVisible"
width=
"50%"
center
>
<!-- 根据菜单类型(menuType)和右键点击的楼盘类型(treeData.type)来区分弹框内容 -->
<div
class=
"addCh"
v-show=
"menuType == 'ljz'"
>
<addLjz
ref=
"ljz"
></addLjz>
</div>
<div
class=
"addCh"
v-show=
"menuType == 'zdy'"
>
<addZdy
ref=
"zdy"
></addZdy>
</div>
<div
class=
"addCh"
v-show=
"menuType == 'ch'"
>
<addCh
ref=
"ch"
:dialogVisible=
"dialogVisible"
:treeData=
"treeData"
></addCh>
</div>
<div
class=
"btnGroup"
>
<el-button
type=
"primary"
@
click=
"saveInfo"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"resetInfo"
>
重置
</el-button>
<el-button
type=
"primary"
@
click=
"dialogVisible = false"
>
取消
</el-button
>
</div>
</el-dialog>
<!-- 批量操作弹出框 -->
<pl-h
:plh-visible=
"plhVisible"
:bsms=
"bsms"
@
close=
"plhClose"
></pl-h>
<pl-zl
:pl-zl-visible=
"plzlVisible"
:bsms=
"bsms"
@
close=
"plZlClose"
></pl-zl>
<pl-c
:plc-visible=
"plcVisible"
:bsms=
"bsms"
@
close=
"plcClose"
></pl-c>
<!-- 右键菜单弹出框 -->
<el-dialog
title=
"添加"
:visible
.
sync=
"dialogVisible"
width=
"50%"
center
>
<!-- 根据菜单类型(menuType)和右键点击的楼盘类型(treeData.type)来区分弹框内容 -->
<div
class=
"addCh"
v-show=
"menuType == 'ljz'"
>
<addLjz
ref=
"ljz"
></addLjz>
</div>
<div
class=
"addCh"
v-show=
"menuType == 'zdy'"
>
<addZdy
ref=
"zdy"
></addZdy>
</div>
<div
class=
"addCh"
v-show=
"menuType == 'ch'"
>
<addCh
ref=
"ch"
:dialogVisible=
"dialogVisible"
:treeData=
"treeData"
></addCh>
</div>
<div
class=
"btnGroup"
>
<el-button
type=
"primary"
@
click=
"saveInfo"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"resetInfo"
>
重置
</el-button>
<el-button
type=
"primary"
@
click=
"dialogVisible = false"
>
取消
</el-button
>
</div>
</el-dialog>
<!-- 批量操作弹出框 -->
<pl-h
:plh-visible=
"plhVisible"
:bsms=
"bsms"
@
close=
"plhClose"
></pl-h>
<pl-zl
:pl-zl-visible=
"plzlVisible"
:bsms=
"bsms"
@
close=
"plZlClose"
></pl-zl>
<pl-c
:plc-visible=
"plcVisible"
:bsms=
"bsms"
@
close=
"plcClose"
></pl-c>
<pl-sh
:plShVisible=
"plShVisible"
:bsms=
"bsms"
@
close=
"plshClose"
></pl-sh>
<!-- 双击户的弹出框 -->
<el-dialog
title=
"户编辑"
:visible
.
sync=
"hbjVisible"
width=
"50%"
center
>
<hbj
ref=
"hbj"
:bsm=
'hbsm'
></hbj>
<div
class=
"btnGroup"
>
<el-button
type=
"primary"
@
click=
"hbjSaveInfo"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"hbjResetInfo"
>
重置
</el-button>
<el-button
type=
"primary"
@
click=
"hbjVisible = false"
>
取消
</el-button>
</div>
</el-dialog>
</div>
<h-cxlz
:h-cxlz-visble=
"hcxlzVisible"
:bsms=
"bsms"
@
close=
"hcxlzClose"
></h-cxlz>
<!-- 双击户的弹出框 -->
<el-dialog
title=
"户编辑"
:visible
.
sync=
"hbjVisible"
width=
"50%"
center
>
<hbj
ref=
"hbj"
:bsm=
'hbsm'
></hbj>
<div
class=
"btnGroup"
>
<el-button
type=
"primary"
@
click=
"hbjSaveInfo"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"hbjResetInfo"
>
重置
</el-button>
<el-button
type=
"primary"
@
click=
"hbjVisible = false"
>
取消
</el-button>
</div>
</el-dialog>
</div>
</
template
>
<
script
>
import
PlC
from
"./../../../../components/plc/plC"
import
PlSh
from
"./../../../../components/plsh/plSh"
import
PlH
from
"./../../../../components/plh/plH"
import
PlZl
from
"./../../../../components/plzl/plZl"
import
LineTree
from
"../../../../components/lineTree/lineTree"
;
import
addLjz
from
"./ljz/index"
;
import
addZdy
from
"./zdy/index"
;
import
addCh
from
"./ch/index"
;
import
hbj
from
"./hbj/index"
import
lpbContent
from
"./lpbContent/index"
;
import
{
getLpbMenuTree
,
batchScYcChange
}
from
"../../../../api/lpb"
;
import
HCxlz
from
"./../../../../components/hCxlz/hCxlz"
import
PlC
from
"./../../../../components/plc/plC"
import
PlSh
from
"./../../../../components/plsh/plSh"
import
PlH
from
"./../../../../components/plh/plH"
import
PlZl
from
"./../../../../components/plzl/plZl"
import
LineTree
from
"../../../../components/lineTree/lineTree"
;
import
addLjz
from
"./ljz/index"
;
import
addZdy
from
"./zdy/index"
;
import
addCh
from
"./ch/index"
;
import
hbj
from
"./hbj/index"
import
lpbContent
from
"./lpbContent/index"
;
import
{
getLpbMenuTree
,
batchScYcChange
}
from
"../../../../api/lpb"
;
export
default
{
name
:
""
,
components
:
{
LineTree
,
addLjz
,
addZdy
,
addCh
,
lpbContent
,
PlC
,
PlSh
,
PlH
,
PlZl
,
hbj
},
props
:
{},
data
()
{
return
{
bsms
:[
"123"
,
"321"
,
"231"
],
hbsm
:
''
,
dialogVisible
:
false
,
plcVisible
:
false
,
plhVisible
:
false
,
plShVisible
:
false
,
plzlVisible
:
false
,
hbjVisible
:
false
,
tabPosition
:
"1"
,
//1是实测 0是预测
radio1
:
""
,
radio2
:
""
,
createFlag
:
false
,
bdcdyh
:
""
,
islpb
:
true
,
pd
:
[],
//创建楼盘的树结构数据
menuType
:
""
,
treeData
:
{},
inputWidth
:
74
,
selectedZt
:
'dyzt'
,
//图例选中项,默认选中单元状态
legendList
:
[
{
name
:
"未确权"
,
color
:
"#2591FD"
,
ts
:
"12"
,
mj
:
"1633"
,
},
{
name
:
"已确权"
,
color
:
"#2591FD"
,
ts
:
"22"
,
mj
:
"3109"
,
},
{
name
:
"已注销"
,
color
:
"#2591FD"
,
ts
:
"13"
,
mj
:
"1457"
,
},
{
name
:
"已备案"
,
color
:
"#2591FD"
,
ts
:
"3"
,
mj
:
"409"
,
},
{
name
:
"预抵押"
,
color
:
"#2591FD"
,
ts
:
"11"
,
mj
:
"1466"
,
},
{
name
:
"在建抵押"
,
color
:
"#2591FD"
,
ts
:
"13"
,
mj
:
"1792"
,
},
{
name
:
"抵押"
,
color
:
"#2591FD"
,
ts
:
"14"
,
mj
:
"13"
,
},
{
name
:
"查封"
,
color
:
"#2591FD"
,
ts
:
"9"
,
mj
:
"1436"
,
},
{
name
:
"异议"
,
color
:
"#2591FD"
,
ts
:
"34"
,
mj
:
"4342"
,
},
{
name
:
"限制"
,
color
:
"#2591FD"
,
ts
:
"2"
,
mj
:
"285"
,
},
],
legendToggleFlag
:
false
,
lpbContentHight
:
""
,
lpbContentwidth
:
""
,
time
:
''
};
},
created
()
{
window
.
addEventListener
(
"resize"
,
this
.
getHeight
);
this
.
getHeight
();
},
mounted
()
{
// this.getLpbMenuTree("1e0c83dfe2e73284f834a80a0947f0c9");
this
.
getLpbMenuTree
(
this
.
$store
.
state
.
zrzbsm
);
// 楼盘表绘制区域宽度计算:楼盘表区域宽度-图例宽度34-滚动条宽度6
setTimeout
(()
=>
{
this
.
lpbContentwidth
=
this
.
$store
.
state
.
contentWidth
-
34
-
6
;
},
100
);
},
methods
:
{
plZlClose
(){
this
.
plzlVisible
=
false
},
plcClose
(){
this
.
plcVisible
=
false
;
},
plhClose
(){
this
.
plhVisible
=
false
;
},
plshClose
(){
this
.
plShVisible
=
false
export
default
{
name
:
""
,
components
:
{
LineTree
,
addLjz
,
addZdy
,
addCh
,
lpbContent
,
PlC
,
PlSh
,
PlH
,
PlZl
,
hbj
,
HCxlz
},
props
:
{},
data
()
{
return
{
bsms
:
[
"123"
,
"321"
,
"231"
],
hbsm
:
''
,
hcxlzVisible
:
false
,
dialogVisible
:
false
,
plcVisible
:
false
,
plhVisible
:
false
,
plShVisible
:
false
,
plzlVisible
:
false
,
hbjVisible
:
false
,
tabPosition
:
"1"
,
//1是实测 0是预测
radio1
:
""
,
radio2
:
""
,
createFlag
:
false
,
bdcdyh
:
""
,
islpb
:
true
,
pd
:
[],
//创建楼盘的树结构数据
menuType
:
""
,
treeData
:
{},
inputWidth
:
74
,
selectedZt
:
'dyzt'
,
//图例选中项,默认选中单元状态
legendList
:
[
{
name
:
"未确权"
,
color
:
"#2591FD"
,
ts
:
"12"
,
mj
:
"1633"
,
},
{
name
:
"已确权"
,
color
:
"#2591FD"
,
ts
:
"22"
,
mj
:
"3109"
,
},
{
name
:
"已注销"
,
color
:
"#2591FD"
,
ts
:
"13"
,
mj
:
"1457"
,
},
{
name
:
"已备案"
,
color
:
"#2591FD"
,
ts
:
"3"
,
mj
:
"409"
,
},
{
name
:
"预抵押"
,
color
:
"#2591FD"
,
ts
:
"11"
,
mj
:
"1466"
,
},
{
name
:
"在建抵押"
,
color
:
"#2591FD"
,
ts
:
"13"
,
mj
:
"1792"
,
},
{
name
:
"抵押"
,
color
:
"#2591FD"
,
ts
:
"14"
,
mj
:
"13"
,
},
{
name
:
"查封"
,
color
:
"#2591FD"
,
ts
:
"9"
,
mj
:
"1436"
,
},
{
name
:
"异议"
,
color
:
"#2591FD"
,
ts
:
"34"
,
mj
:
"4342"
,
},
{
name
:
"限制"
,
color
:
"#2591FD"
,
ts
:
"2"
,
mj
:
"285"
,
},
],
legendToggleFlag
:
false
,
lpbContentHight
:
""
,
lpbContentwidth
:
""
,
time
:
''
};
},
//获取高度计算lpb内容区高度
getHeight
()
{
this
.
lpbContentHight
=
window
.
innerHeight
-
285
;
},
//创建楼盘
create
()
{
this
.
createFlag
=
true
;
},
//获取自然幢树结构数据
getLpbMenuTree
(
zrzbsm
)
{
getLpbMenuTree
(
zrzbsm
)
.
then
((
res
)
=>
{
this
.
pd
=
res
.
result
;
})
.
catch
((
error
)
=>
{});
},
//打开新建楼盘树结构右键菜单唤起的弹框
openLpbDialog
(
data
,
type
)
{
this
.
treeData
=
data
;
this
.
menuType
=
type
;
this
.
dialogVisible
=
true
;
},
//弹框中的保存按钮,根据不同菜单点击类型调用不同子组件的保存方法
saveInfo
()
{
switch
(
this
.
menuType
)
{
case
"ljz"
:
this
.
$refs
.
ljz
.
onSave
(
this
.
$refs
.
ljz
.
form
,
this
.
treeData
.
bsm
);
break
;
case
"zdy"
:
this
.
$refs
.
zdy
.
submitForm
(
"form"
,
this
.
pd
[
0
].
bsm
,
this
.
treeData
.
bsm
);
break
;
case
"ch"
:
this
.
$refs
.
ch
.
onSave
(
this
.
pd
[
0
].
bsm
);
break
;
default
:
break
;
}
},
//弹框中的重置按钮
resetInfo
()
{
switch
(
this
.
menuType
)
{
case
"ljz"
:
this
.
$refs
.
ljz
.
reset
();
break
;
case
"zdy"
:
this
.
$refs
.
zdy
.
reset
();
break
;
case
"ch"
:
this
.
$refs
.
ch
.
reset
();
break
;
created
()
{
window
.
addEventListener
(
"resize"
,
this
.
getHeight
);
this
.
getHeight
();
},
mounted
()
{
// this.getLpbMenuTree("1e0c83dfe2e73284f834a80a0947f0c9");
this
.
getLpbMenuTree
(
this
.
$store
.
state
.
zrzbsm
);
// 楼盘表绘制区域宽度计算:楼盘表区域宽度-图例宽度34-滚动条宽度6
setTimeout
(()
=>
{
this
.
lpbContentwidth
=
this
.
$store
.
state
.
contentWidth
-
34
-
6
;
},
100
);
},
methods
:
{
hcxlzClose
()
{
this
.
hcxlzVisible
=
false
;
},
plZlClose
()
{
this
.
plzlVisible
=
false
},
plcClose
()
{
this
.
plcVisible
=
false
;
},
plhClose
()
{
this
.
plhVisible
=
false
;
},
plshClose
()
{
this
.
plShVisible
=
false
},
//获取高度计算lpb内容区高度
getHeight
()
{
this
.
lpbContentHight
=
window
.
innerHeight
-
285
;
},
//创建楼盘
create
()
{
this
.
createFlag
=
true
;
},
//获取自然幢树结构数据
getLpbMenuTree
(
zrzbsm
)
{
getLpbMenuTree
(
zrzbsm
)
.
then
((
res
)
=>
{
this
.
pd
=
res
.
result
;
})
.
catch
((
error
)
=>
{
});
},
//打开新建楼盘树结构右键菜单唤起的弹框
openLpbDialog
(
data
,
type
)
{
this
.
treeData
=
data
;
this
.
menuType
=
type
;
this
.
dialogVisible
=
true
;
},
//弹框中的保存按钮,根据不同菜单点击类型调用不同子组件的保存方法
saveInfo
()
{
switch
(
this
.
menuType
)
{
case
"ljz"
:
this
.
$refs
.
ljz
.
onSave
(
this
.
$refs
.
ljz
.
form
,
this
.
treeData
.
bsm
);
break
;
case
"zdy"
:
this
.
$refs
.
zdy
.
submitForm
(
"form"
,
this
.
pd
[
0
].
bsm
,
this
.
treeData
.
bsm
);
break
;
case
"ch"
:
this
.
$refs
.
ch
.
onSave
(
this
.
pd
[
0
].
bsm
);
break
;
default
:
break
;
}
},
//弹框中的重置按钮
resetInfo
()
{
switch
(
this
.
menuType
)
{
case
"ljz"
:
this
.
$refs
.
ljz
.
reset
();
break
;
case
"zdy"
:
this
.
$refs
.
zdy
.
reset
();
break
;
case
"ch"
:
this
.
$refs
.
ch
.
reset
();
break
;
default
:
break
;
}
},
//关闭弹框
closeDaialog
()
{
this
.
dialogVisible
=
false
;
},
//图例的展开收起
legendToggle
()
{
this
.
legendToggleFlag
=
!
this
.
legendToggleFlag
;
},
//获取选中户bsm
getHbsm
(
data
,
type
)
{
this
.
bsms
=
data
;
if
(
type
)
{
// 双击
this
.
hbsm
=
this
.
bsms
[
this
.
bsms
.
length
-
1
];
this
.
hbjVisible
=
true
;
this
.
$nextTick
(
function
()
{
this
.
$refs
.
hbj
.
getHInfo
(
this
.
hbsm
);
})
}
else
{
//单击 TO DO
default
:
break
;
}
},
//关闭弹框
closeDaialog
()
{
this
.
dialogVisible
=
false
;
},
//图例的展开收起
legendToggle
()
{
this
.
legendToggleFlag
=
!
this
.
legendToggleFlag
;
},
//获取选中户bsm
getHbsm
(
data
,
type
)
{
this
.
bsms
=
data
;
if
(
type
)
{
// 双击
this
.
hbsm
=
this
.
bsms
[
this
.
bsms
.
length
-
1
];
this
.
hbjVisible
=
true
;
this
.
$nextTick
(
function
()
{
this
.
$refs
.
hbj
.
getHInfo
(
this
.
hbsm
);
})
}
else
{
//单击 TO DO
}
console
.
log
(
this
.
bsms
);
},
//不动产单元号输入框事件
inputFocus
(){
this
.
inputWidth
=
200
},
inputBlur
(){
this
.
inputWidth
=
74
},
inputChange
(){
if
(
this
.
bdcdyh
!=
''
)
{
console
.
log
(
'查询'
+
this
.
bdcdyh
);
this
.
$refs
.
lpbContent
.
lpbDataMap
(
this
.
bdcdyh
);
}
else
{
this
.
$message
({
message
:
"请输入内容后查询"
,
type
:
"warning"
,
})
}
},
//户保存
hbjSaveInfo
(){
this
.
$refs
.
hbj
.
onSave
(
this
.
bsms
[
this
.
bsms
.
length
-
1
],
this
.
tabPosition
);
},
//户编辑表单重置
hbjResetInfo
(){
this
.
$refs
.
hbj
.
onReset
();
},
//调用楼盘表信息查询接口
getlpbData
(){
this
.
$refs
.
lpbContent
.
getLpb
(
this
.
$store
.
state
.
zrzbsm
);
//改变楼盘表子组件的key值,重新渲染
this
.
time
=
new
Date
().
getTime
();
},
//实预测装换
plScYcChange
(){
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
scyclx
:
"0"
}
batchScYcChange
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
){
this
.
$message
.
success
(
"实预测转换成功"
)
}
})
},
//选中房屋状态
handleChoosedH
(){
//清除选中户
this
.
$refs
.
lpbContent
.
clearChoosedH
()
//给hBsmList传值
// this.$refs.lpbContent.choosedList=["0a66bc775dcec26385f9124cc0fd8656", "58cafdbee129bb412527f674ef9267ae", "4bbca678fa56d5ab97b8a62c7cb54898", "ecfd72e9a31a03ba0ab4e46faba2b51b", "049033ea9d244b4b5ea75521b6862239", "013352d8a001a1d5f790296b6843627b", "ed8e3f0e2b2682cf76b4d58b9a74e49c", "37cc53acaf2c3bb92be4b9adf06d94c9", "f5a5e14ce08c26056aca5861f56e5cf6", "11eeaaa5c9f5f1231c69d3b958d05568", "421978023a36d4920dbb86300cc52dc9", "e97f2af2588cc0e41ffb6b203df617c9", "7210987d94350472dca10d4ad71fffc5", "6eb1b50edce538a4c63574e9e28fedce", "43c5fecd7623ceabc37844e8a4722603", "c361ccfcd3da9f7288110c6fa202cb96", "2321512f6f8d0ec9f570c6eec9a892fe", "ea08fb234cd908c89a0d21c085dadb2f", "be71f7f0ec926e1850d3baec8817cdbd", "6f695d6b7ecb97f7ff17f22dbe86b93c", "4ee1604b2629e6797d3096c20229223b"]
}
},
computed
:
{
},
destroyed
()
{
window
.
removeEventListener
(
"resize"
,
this
.
getHeight
);
},
watch
:
{
//树结构和图例伸缩时修改楼盘表主要内容区宽度
legendToggleFlag
(
n
)
{
if
(
n
)
{
this
.
lpbContentwidth
-=
204
;
}
else
{
this
.
lpbContentwidth
+=
204
;
}
},
createFlag
(
n
)
{
if
(
n
)
{
this
.
lpbContentwidth
-=
260
;
}
else
{
this
.
lpbContentwidth
+=
260
;
}
},
},
};
}
console
.
log
(
this
.
bsms
);
},
//不动产单元号输入框事件
inputFocus
()
{
this
.
inputWidth
=
200
},
inputBlur
()
{
this
.
inputWidth
=
74
},
inputChange
()
{
if
(
this
.
bdcdyh
!=
''
)
{
console
.
log
(
'查询'
+
this
.
bdcdyh
);
this
.
$refs
.
lpbContent
.
lpbDataMap
(
this
.
bdcdyh
);
}
else
{
this
.
$message
({
message
:
"请输入内容后查询"
,
type
:
"warning"
,
})
}
},
//户保存
hbjSaveInfo
()
{
this
.
$refs
.
hbj
.
onSave
(
this
.
bsms
[
this
.
bsms
.
length
-
1
],
this
.
tabPosition
);
},
//户编辑表单重置
hbjResetInfo
()
{
this
.
$refs
.
hbj
.
onReset
();
},
//调用楼盘表信息查询接口
getlpbData
()
{
this
.
$refs
.
lpbContent
.
getLpb
(
this
.
$store
.
state
.
zrzbsm
);
//改变楼盘表子组件的key值,重新渲染
this
.
time
=
new
Date
().
getTime
();
},
//实预测装换
plScYcChange
()
{
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
scyclx
:
"0"
}
batchScYcChange
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
"实预测转换成功"
)
}
})
},
//选中房屋状态
handleChoosedH
()
{
//清除选中户
this
.
$refs
.
lpbContent
.
clearChoosedH
()
//给hBsmList传值
// this.$refs.lpbContent.choosedList=["0a66bc775dcec26385f9124cc0fd8656", "58cafdbee129bb412527f674ef9267ae", "4bbca678fa56d5ab97b8a62c7cb54898", "ecfd72e9a31a03ba0ab4e46faba2b51b", "049033ea9d244b4b5ea75521b6862239", "013352d8a001a1d5f790296b6843627b", "ed8e3f0e2b2682cf76b4d58b9a74e49c", "37cc53acaf2c3bb92be4b9adf06d94c9", "f5a5e14ce08c26056aca5861f56e5cf6", "11eeaaa5c9f5f1231c69d3b958d05568", "421978023a36d4920dbb86300cc52dc9", "e97f2af2588cc0e41ffb6b203df617c9", "7210987d94350472dca10d4ad71fffc5", "6eb1b50edce538a4c63574e9e28fedce", "43c5fecd7623ceabc37844e8a4722603", "c361ccfcd3da9f7288110c6fa202cb96", "2321512f6f8d0ec9f570c6eec9a892fe", "ea08fb234cd908c89a0d21c085dadb2f", "be71f7f0ec926e1850d3baec8817cdbd", "6f695d6b7ecb97f7ff17f22dbe86b93c", "4ee1604b2629e6797d3096c20229223b"]
}
},
computed
:
{},
destroyed
()
{
window
.
removeEventListener
(
"resize"
,
this
.
getHeight
);
},
watch
:
{
//树结构和图例伸缩时修改楼盘表主要内容区宽度
legendToggleFlag
(
n
)
{
if
(
n
)
{
this
.
lpbContentwidth
-=
204
;
}
else
{
this
.
lpbContentwidth
+=
204
;
}
},
createFlag
(
n
)
{
if
(
n
)
{
this
.
lpbContentwidth
-=
260
;
}
else
{
this
.
lpbContentwidth
+=
260
;
}
},
},
};
</
script
>
<
style
scoped
lang=
"less"
>
.edit
{
height
:
100%
;
background-color
:
#eaedf5
;
.tab-header
{
border
:
1px
solid
#dedede
;
border-top
:
0
;
box-sizing
:
border-box
;
padding
:
20px
0
;
background-color
:
#ffffff
;
margin-bottom
:
15px
;
.searchContent
{
box-sizing
:
border-box
;
padding
:
0
20px
;
/deep/
.el-radio-button__inner
{
border
:
1px
solid
#00CACD
;
color
:
#00CACD
;
}
/
deep
/
.el-radio-button__inner
:hover
{
color
:
#00CACD
;
}
/
deep
/
.is-active
.el-radio-button__inner
{
color
:
#fff
;
}
/
deep
/
.el-radio-button__orig-radio
:checked
+
.el-radio-button__inner
{
background-color
:
#00CACD
;
border-color
:
#00CACD
;
}
.searchInput
{
transition
:
.5s
;
margin-left
:
20px
;
display
:
inline-block
;
}
}
.radioBtn
{
margin-left
:
20px
;
/deep/
.el-radio-button__inner
{
border
:
1px
solid
#dcdfe6
;
border-radius
:
4px
;
box-shadow
:
0
0
0
0
#409eff
!important
;
}
}
}
.tab-content
{
background-color
:
#ffffff
;
display
:
flex
;
overflow-y
:
scroll
;
.lp-tree
{
height
:
100%
;
overflow
:
hidden
;
transition
:
0.5s
;
.treeData
{
margin-top
:
20px
;
margin-left
:
20px
;
float
:
left
;
}
}
.w0
{
width
:
0
;
}
.w260
{
width
:
260px
;
}
.lp-overview
{
transition
:
0.5s
;
flex
:
1
;
padding-right
:
20px
;
box-sizing
:
border-box
;
}
.lp-legend
{
transition
:
0.5s
;
height
:
100%
;
font-size
:
14px
;
.handleCol
{
width
:
34px
;
float
:
right
;
height
:
100%
;
.btn
{
cursor
:
pointer
;
height
:
40px
;
line-height
:
40px
;
text-align
:
center
;
background-color
:
#0091FF
;
color
:
#fff
;
border-bottom
:
1px
solid
#e6e6e6
;
}
.dyzt
{
height
:
81px
;
line-height
:
81px
;
}
.fwxz
,
.fwyt
{
height
:
122px
;
}
.dyzt
,
.fwxz
,
.fwyt
{
cursor
:
pointer
;
border-bottom
:
1px
solid
#e6e6e6
;
span
{
text-align
:
center
;
height
:
100%
;
-webkit-writing-mode
:
vertical-rl
;
writing-mode
:
vertical-rl
;
line-height
:
34px
;
letter-spacing
:
2px
;
}
}
.selectedZt
{
background-color
:
#0091FF
;
color
:
#fff
;
}
}
.legendTable-wrap
{
transition
:
0.5s
;
float
:
right
;
overflow
:
hidden
;
.legendTable
{
margin-top
:
-1px
;
tr
{
height
:
40px
;
line-height
:
40px
;
th
:
first-child
{
width
:
80px
;
}
th
{
width
:
60px
;
height
:
40px
;
white-space
:
nowrap
;
}
td
{
height
:
40px
;
text-align
:
center
;
white-space
:
nowrap
;
}
td
:first-child
{
text-align
:
left
;
text-indent
:
2px
;
}
}
}
}
}
}
.tab-content
::-webkit-scrollbar
{
width
:
1px
;
}
.btnGroup
{
margin
:
20px
auto
0
;
width
:
230px
;
}
}
.edit
{
height
:
100%
;
background-color
:
#eaedf5
;
.tab-header
{
border
:
1px
solid
#dedede
;
border-top
:
0
;
box-sizing
:
border-box
;
padding
:
20px
0
;
background-color
:
#ffffff
;
margin-bottom
:
15px
;
.searchContent
{
box-sizing
:
border-box
;
padding
:
0
20px
;
/deep/
.el-radio-button__inner
{
border
:
1px
solid
#00CACD
;
color
:
#00CACD
;
}
/
deep
/
.el-radio-button__inner
:hover
{
color
:
#00CACD
;
}
/
deep
/
.is-active
.el-radio-button__inner
{
color
:
#fff
;
}
/
deep
/
.el-radio-button__orig-radio
:checked
+
.el-radio-button__inner
{
background-color
:
#00CACD
;
border-color
:
#00CACD
;
}
.searchInput
{
transition
:
.5s
;
margin-left
:
20px
;
display
:
inline-block
;
}
}
.radioBtn
{
margin-left
:
20px
;
/deep/
.el-radio-button__inner
{
border
:
1px
solid
#dcdfe6
;
border-radius
:
4px
;
box-shadow
:
0
0
0
0
#409eff
!important
;
}
}
}
.tab-content
{
background-color
:
#ffffff
;
display
:
flex
;
overflow-y
:
scroll
;
.lp-tree
{
height
:
100%
;
overflow
:
hidden
;
transition
:
0.5s
;
.treeData
{
margin-top
:
20px
;
margin-left
:
20px
;
float
:
left
;
}
}
.w0
{
width
:
0
;
}
.w260
{
width
:
260px
;
}
.lp-overview
{
transition
:
0.5s
;
flex
:
1
;
padding-right
:
20px
;
box-sizing
:
border-box
;
}
.lp-legend
{
transition
:
0.5s
;
height
:
100%
;
font-size
:
14px
;
.handleCol
{
width
:
34px
;
float
:
right
;
height
:
100%
;
.btn
{
cursor
:
pointer
;
height
:
40px
;
line-height
:
40px
;
text-align
:
center
;
background-color
:
#0091FF
;
color
:
#fff
;
border-bottom
:
1px
solid
#e6e6e6
;
}
.dyzt
{
height
:
81px
;
line-height
:
81px
;
}
.fwxz
,
.fwyt
{
height
:
122px
;
}
.dyzt
,
.fwxz
,
.fwyt
{
cursor
:
pointer
;
border-bottom
:
1px
solid
#e6e6e6
;
span
{
text-align
:
center
;
height
:
100%
;
-webkit-writing-mode
:
vertical-rl
;
writing-mode
:
vertical-rl
;
line-height
:
34px
;
letter-spacing
:
2px
;
}
}
.selectedZt
{
background-color
:
#0091FF
;
color
:
#fff
;
}
}
.legendTable-wrap
{
transition
:
0.5s
;
float
:
right
;
overflow
:
hidden
;
.legendTable
{
margin-top
:
-1px
;
tr
{
height
:
40px
;
line-height
:
40px
;
th
:
first-child
{
width
:
80px
;
}
th
{
width
:
60px
;
height
:
40px
;
white-space
:
nowrap
;
}
td
{
height
:
40px
;
text-align
:
center
;
white-space
:
nowrap
;
}
td
:first-child
{
text-align
:
left
;
text-indent
:
2px
;
}
}
}
}
}
}
.tab-content
::-webkit-scrollbar
{
width
:
1px
;
}
.btnGroup
{
margin
:
20px
auto
0
;
width
:
230px
;
}
}
</
style
>
...
...
Please
register
or
sign in
to post a comment