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
10346c5d
authored
2020-11-19 14:07:26 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
代码合并,楼盘表图例单元状态数据统计
2 parents
93128983
a7d0085d
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
677 additions
and
305 deletions
src/api/lpb.js
src/api/zd.js
src/components/cxlxQueryData/cxlzQueryData.vue
src/components/emailInput/emailInput.vue
src/components/hCxlz/hCxlz.vue
src/components/lineTree/lineTree.vue
src/components/queryData/queryData.vue
src/views/panel/change/cxlz/index.vue
src/views/systemZRZ/lpb/bjlp/index.vue
src/api/lpb.js
View file @
10346c5
...
...
@@ -77,4 +77,20 @@ export function getLpbTj (data) {
method
:
'get'
,
data
:
data
})
}
/**
* 楼盘表 批量实预测转换
* zrzbsm 自然幢标识码 ,
* scyclx 实测预测类型 0预测,1实测
*/
export
function
batchGeneratorBdcdyh
(
dpdm
,
zrzbsm
)
{
return
request
({
url
:
'system/generator/batchGeneratorBdcdyh'
,
method
:
'get'
,
params
:
{
zrzbsm
:
zrzbsm
,
dpdm
:
dpdm
,
},
})
}
\ No newline at end of file
...
...
src/api/zd.js
View file @
10346c5
...
...
@@ -150,7 +150,7 @@ export function jzxsbatchModify(data) {
*/
export
function
deleteZdInfoByBsm
(
data
)
{
return
request
({
url
:
'/
zd/qjZdjbxx/deleteZdjbxx
ByBsm'
,
url
:
'/
delete/deleteDy
ByBsm'
,
method
:
'delete'
,
data
:
data
})
...
...
@@ -161,10 +161,32 @@ export function deleteZdInfoByBsm(data) {
*/
export
function
zdfg
(
data
)
{
return
request
({
url
:
'/
fg
/zdFg'
,
url
:
'/
bg/zdSplitMerge
/zdFg'
,
method
:
'post'
,
data
:
data
})
}
/**
* 获取宗地下的自然幢、逻辑幢、幢单元
*/
export
function
zdXlcd
(
bsm
)
{
return
request
({
url
:
'/zd/qjZdjbxx/parcels'
,
method
:
'get'
,
params
:{
bsm
}
})
}
/**
* 户落宗
*/
export
function
hzl
(
data
)
{
return
request
({
url
:
'/system/qjH/hcxlz'
,
method
:
'put'
,
data
:
data
})
}
...
...
src/components/cxlxQueryData/cxlzQueryData.vue
View file @
10346c5
...
...
@@ -48,14 +48,14 @@
</el-row>
<table
border=
"1"
>
<tr>
<td>
序号
</td>
<td
>
操作
</td>
<td
>
宗地代码
</td>
<td
>
不动产单元号
</td>
<td
>
项目名称
</td>
<td
>
不动产权证号
</td>
<td
>
权利人
</td>
<td
>
坐落
</td>
<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"
>
...
...
@@ -63,16 +63,16 @@
</td>
</tr>
<tr
v-else
v-for=
"(item,index) in Data"
:key=
"index"
>
<td>
{{
index
+
1
}}
</td>
<td
@
click=
"select(item)"
class=
"xz"
>
<span>
选择
</span>
<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>
<td>
{{
item
.
zddm
}}
</td>
<td>
{{
item
.
bdcdyh
}}
</td>
<td>
{{
item
.
xmmc
}}
</td>
<td>
{{
item
.
bdcqzh
}}
</td>
<td>
{{
item
.
qlr
}}
</td>
<td>
{{
item
.
zl
}}
</td>
</tr>
</table>
</div>
...
...
@@ -86,10 +86,6 @@
>
</el-pagination>
</div>
<div
class=
"footer-button"
>
<el-button
type=
"primary"
@
click=
"save"
>
确认
</el-button>
<el-button
type=
"primary"
@
click=
"close"
>
取消
</el-button>
</div>
</el-dialog>
</div>
</
template
>
...
...
@@ -144,13 +140,25 @@
created
()
{
},
methods
:
{
saveNotarize
:
function
(
val
)
{
this
.
zdbsm
=
val
.
glbsm
;
this
.
$confirm
(
'将落宗在该宗地上, 是否继续?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
this
.
save
();
}).
catch
(()
=>
{
this
.
$message
({
type
:
'info'
,
message
:
'已取消'
});
});
},
currentChange
:
function
(
val
)
{
this
.
queryData
.
pageNo
=
val
;
this
.
getData
(
this
.
queryData
);
},
select
:
function
(
val
)
{
this
.
zdbsm
=
val
.
glbsm
},
save
:
function
()
{
zrzcxlz
({
zdBsm
:
this
.
zdbsm
,
...
...
@@ -216,6 +224,9 @@
background-color
:
#fff
;
font-size
:
14px
;
width
:
100%
;
tr
:
hover
{
background-color
:
#F5F7FA
;
}
}
td
{
...
...
@@ -248,8 +259,38 @@
height
:
650px
;
}
.footer-button
{
text-align
:
center
;
margin-top
:
20px
;
.xh
{
width
:
50px
;
}
.zddm
{
width
:
120px
;
}
.bdcdyh
{
width
:
180px
;
}
.xmmc
{
width
:
100px
;
}
.bdcqzh
{
width
:
100px
;
}
.qlr
{
width
:
100px
;
}
.zl
{
width
:
100px
;
}
.cz
{
width
:
50px
;
span
{
color
:
blue
;
}
}
</
style
>
...
...
src/components/emailInput/emailInput.vue
deleted
100644 → 0
View file @
9312898
<
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 @
10346c5
<
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=
"zdxx"
readonly=
"readonly"
/>
<el-button
type=
"primary"
@
click=
"xzzdVisible = true"
>
选择宗地
</el-button>
</div>
<div
class=
"input-suffix"
>
自然幢:
<el-select
v-model=
"hcxlzData.zrzbsm"
filterable
placeholder=
"请选择"
@
change=
"zrzChange"
>
<el-option
v-for=
"item in zrzList"
:key=
"item.xmmc"
:label=
"item.label"
:value=
"item.bsm"
>
</el-option>
</el-select>
</div>
<div
class=
"input-suffix"
>
逻辑幢:
<el-select
v-model=
"hcxlzData.ljzbsm"
filterable
placeholder=
"请选择"
@
change=
"ljzChange"
>
<el-option
v-for=
"item in ljzList"
:key=
"item.bsm"
:label=
"item.ljzmc"
:value=
"item.bsm"
>
</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.bsm"
:label=
"item.zdymc"
:value=
"item.bsm"
>
</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>
<query-data
:centerDialogVisible=
"xzzdVisible"
@
close=
"xzzdClose"
@
getData=
"getZdxx"
></query-data>
</el-dialog>
</div>
</
template
>
<
script
>
import
queryData
from
'./../../components/queryData/queryData'
import
{
zdXlcd
,
hzl
}
from
'./../../api/zd'
import
{
Message
}
from
'element-ui'
export
default
{
name
:
"hCxlz"
,
components
:
{
queryData
},
data
()
{
return
{
zd
:
{},
zrz
:
{},
ljz
:
{},
zdy
:
{},
xzzdVisible
:
false
,
isVisible
:
false
,
zdxx
:
''
,
// 宗地信息
hcxlzData
:
{
bsms
:
[],
zrzbsm
:
''
,
ljzbsm
:
''
,
zdybsm
:
''
},
total
:
1
,
zrzList
:
[],
ljzList
:
[],
zdyList
:
[]
}
},
props
:
{
hCxlzVisble
:
{
type
:
Boolean
,
default
:
false
},
bsms
:
{
type
:
Array
}
},
mounted
()
{
},
methods
:
{
ljzChange
:
function
()
{
const
item
=
this
.
ljzList
.
find
(
i
=>
i
.
bsm
==
this
.
hcxlzData
.
ljzbsm
)
this
.
hcxlzData
.
zdybsm
=
''
this
.
zdyList
=
item
.
list
;
this
.
zdyList
.
push
({
zdymc
:
'空'
,
bsm
:
''
})
},
zrzChange
:
function
()
{
const
item
=
this
.
zrzList
.
find
(
i
=>
i
.
bsm
==
this
.
hcxlzData
.
zrzbsm
);
this
.
hcxlzData
.
ljzbsm
=
''
this
.
hcxlzData
.
zdybsm
=
''
this
.
ljzList
=
item
.
ljzList
;
this
.
ljzList
.
push
({
ljzmc
:
'空'
,
bsm
:
''
})
this
.
zdyList
=
item
.
zdyList
;
this
.
zdyList
.
push
({
zdymc
:
'空'
,
bsm
:
''
})
},
getZrz
:
function
(
bsm
)
{
zdXlcd
(
bsm
).
then
(
res
=>
{
this
.
zrzList
=
res
.
result
;
})
},
getZdxx
:
function
(
val
)
{
console
.
log
(
val
,
"宗地信息"
)
this
.
zd
=
val
this
.
zdxx
=
val
.
xmmc
+
"("
+
val
.
zddm
+
")"
;
},
xzzdClose
:
function
()
{
this
.
xzzdVisible
=
false
;
},
result
:
function
()
{
this
.
hcxlzData
=
{
bsms
:
[],
zrzbsm
:
''
,
ljzbsm
:
''
,
zdybsm
:
''
};
},
cancel
()
{
console
.
log
(
"cancel......"
)
this
.
close
();
},
save
()
{
console
.
log
(
"save......."
)
if
(
this
.
hcxlzData
.
zrzbsm
==
''
)
{
Message
.
error
(
"请选择自然幢"
)
return
;
}
hzl
(
this
.
hcxlzData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
close
();
}
else
{
Message
.
error
(
res
.
message
)
}
});
},
close
()
{
this
.
$emit
(
'close'
,
false
);
this
.
result
();
},
},
watch
:
{
hCxlzVisble
:
function
(
val
)
{
this
.
isVisible
=
val
},
zd
:
function
(
val
)
{
//this.getZrz(val.glbsm)
this
.
getZrz
(
'815c80d0d5b35968432fdd9c654dd134'
)
}
}
}
</
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/lineTree/lineTree.vue
View file @
10346c5
...
...
@@ -222,23 +222,23 @@ export default {
},
//右键菜单的删除
deleteByBsm
(){
let
zdBsm
=
this
.
zdData
.
zdbsm
;
let
type
;
console
.
log
(
zdB
sm
);
switch
(
this
.
zdData
.
type
){
case
"zd"
:
type
=
"0"
;
break
;
case
"zrz"
:
type
=
"1"
;
break
;
case
"h"
:
type
=
"2"
;
break
;
default
:
break
;
}
let
params
=
{
"
id"
:
zdBsm
,
"type"
:
type
}
//
let zdBsm = this.zdData.zdbsm;
//
let type;
console
.
log
(
this
.
zdData
.
zdb
sm
);
//
switch (this.zdData.type){
//
case "zd":
//
type="0";
//
break;
//
case "zrz":
//
type="1";
//
break;
//
case "h":
//
type="2";
//
break;
//
default:
//
break;
//
}
let
params
=
{
"
bsm"
:
this
.
zdData
.
zdbsm
,
"type"
:
this
.
zdData
.
type
}
deleteZdInfoByBsm
(
params
)
.
then
((
res
)
=>
{
if
(
res
.
code
=
200
){
...
...
src/components/queryData/queryData.vue
View file @
10346c5
...
...
@@ -79,6 +79,16 @@
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
</span>
<div
class=
"page"
>
<el-pagination
background
layout=
"prev, pager, next,total"
:page-size=
"queryData.pageSize"
:total=
"total"
@
current-change=
"currentChange"
>
</el-pagination>
</div>
</el-dialog>
</div>
...
...
@@ -91,6 +101,7 @@
name
:
"queryData"
,
data
()
{
return
{
total
:
1
,
queryData
:
{
bdcdyh
:
""
,
bdcqzh
:
""
,
...
...
@@ -99,7 +110,9 @@
qszt
:
"2"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
zl
:
""
,
pageNo
:
1
,
pageSize
:
10
,
},
Data
:
[],
isVisible
:
false
...
...
@@ -125,6 +138,10 @@
created
()
{
},
methods
:
{
currentChange
:
function
(
val
)
{
this
.
queryData
.
pageNo
=
val
;
this
.
getData
(
this
.
queryData
);
},
result
:
function
()
{
this
.
queryData
=
{
bdcdyh
:
""
,
...
...
@@ -133,7 +150,9 @@
qszt
:
"2"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
zl
:
""
,
pageNo
:
1
,
pageSize
:
10
};
this
.
getData
(
this
.
queryData
)
},
...
...
@@ -141,6 +160,7 @@
data
[
'dylxs'
]
=
this
.
dylxs
;
getSearchList
(
data
).
then
(
res
=>
{
this
.
Data
=
res
.
result
.
records
this
.
total
=
res
.
result
.
total
;
})
},
search
:
function
()
{
...
...
@@ -151,7 +171,7 @@
},
close
:
function
()
{
this
.
$emit
(
'close'
)
this
.
isVisible
=
false
this
.
result
();
}
},
watch
:
{
...
...
@@ -176,6 +196,9 @@
background-color
:
#fff
;
font-size
:
14px
;
width
:
100%
;
tr
:
hover
{
background-color
:
#F5F7FA
;
}
}
td
{
...
...
src/views/panel/change/cxlz/index.vue
View file @
10346c5
...
...
@@ -41,14 +41,14 @@
</el-row>
<table
border=
"1"
>
<tr>
<td>
序号
</td>
<td>
操作
</td>
<td>
宗地代码
</td>
<td>
不动产单元号
</td>
<td>
项目名称
</td>
<td>
不动产权证号
</td>
<td>
权利人
</td>
<td>
坐落
</td>
<td
class=
"xh"
>
序号
</td>
<td
class=
"cz"
>
操作
</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>
</tr>
<tr
v-if=
"Data.length == 0"
>
<td
colspan=
"8"
>
...
...
@@ -56,16 +56,16 @@
</td>
</tr>
<tr
v-else
v-for=
"(item, index) in Data"
:key=
"index"
>
<td>
{{
index
+
1
}}
</td>
<td
@
click=
"xzzrz(item)"
class=
"
x
z"
>
<td
class=
"xh"
>
{{
index
+
1
}}
</td>
<td
@
click=
"xzzrz(item)"
class=
"
c
z"
>
<span>
选择
</span>
</td>
<td>
{{
item
.
zddm
}}
</td>
<td>
{{
item
.
bdcdyh
}}
</td>
<td>
{{
item
.
xmmc
}}
</td>
<td>
{{
item
.
bdcqzh
}}
</td>
<td>
{{
item
.
qlr
}}
</td>
<td>
{{
item
.
zl
}}
</td>
<td
class=
"zddm"
:title=
"item.zddm"
>
{{
item
.
zddm
}}
</td>
<td
class=
"bdcdyh"
:title=
"item.bdcdyh"
>
{{
item
.
bdcdyh
}}
</td>
<td
class=
"xmmc"
:title=
"item.xmmc"
>
{{
item
.
xmmc
}}
</td>
<td
class=
"bdcqzh"
:title=
"item.bdcqzh "
>
{{
item
.
bdcqzh
}}
</td>
<td
class=
"qlr"
:title=
"item.qlr"
>
{{
item
.
qlr
}}
</td>
<td
class=
"zl"
>
{{
item
.
zl
}}
</td>
</tr>
</table>
</div>
...
...
@@ -107,7 +107,7 @@
bdcqzh
:
""
,
dylxs
:
[
"zrz"
],
qlrmc
:
""
,
qszt
:
""
,
qszt
:
"
2
"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
,
...
...
@@ -142,7 +142,7 @@
bdcqzh
:
""
,
dylxs
:
[
"zrz"
],
qlrmc
:
""
,
qszt
:
""
,
qszt
:
"
2
"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
,
...
...
@@ -178,12 +178,19 @@
background-color
:
#fff
;
font-size
:
14px
;
width
:
100%
;
}
td
{
text-align
:
center
;
height
:
36px
;
min-width
:
50px
;
table-layout
:
fixed
;
tr
:
hover
{
background-color
:
#F5F7FA
;
}
td
,
th
{
text-align
:
center
;
height
:
36px
;
min-width
:
50px
;
overflow
:
hidden
;
white-space
:
nowrap
;
-ms-text-overflow
:
ellipsis
;
text-overflow
:
ellipsis
;
}
}
table
:hover
{
...
...
@@ -198,8 +205,39 @@
margin-top
:
20px
;
}
.xz
{
color
:
blue
;
.xh
{
width
:
50px
;
}
.zddm
{
width
:
120px
;
}
.bdcdyh
{
width
:
180px
;
}
.xmmc
{
width
:
100px
;
}
.bdcqzh
{
width
:
100px
;
}
.qlr
{
width
:
100px
;
}
.zl
{
width
:
100px
;
}
.cz
{
width
:
50px
;
span
{
color
:
blue
;
}
}
.noData
{
...
...
src/views/systemZRZ/lpb/bjlp/index.vue
View file @
10346c5
...
...
@@ -9,23 +9,65 @@
</el-radio-group>
<el-input
v-model=
"bdcdyh"
:style=
"
{
'width':inputWidth+'px'
}"
: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>
>
<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
@
click=
"addBdcdyh"
>
批量单元号
</el-button>
<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
@
click=
"addBdcdyh"
>
批量单元号
</el-button
>
<el-button
class=
"radioBtn"
label=
"7"
border
@
click=
"hcxlzVisible = true"
>
户重新落宗
</el-button
>
</div>
</el-col>
</el-row>
...
...
@@ -56,13 +98,22 @@
<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'"
>
<div
:class=
"selectedZt == 'dyzt' ? 'dyzt selectedZt' : 'dyzt'"
@
click=
"selectedZt = 'dyzt'"
>
<span>
单元状态
</span>
</div>
<div
:class=
"selectedZt == 'fwxz'? 'fwxz selectedZt':'fwxz'"
@
click=
"selectedZt='fwxz'"
>
<div
:class=
"selectedZt == 'fwxz' ? 'fwxz selectedZt' : 'fwxz'"
@
click=
"selectedZt = 'fwxz'"
>
<span>
房屋性质
</span>
</div>
<div
:class=
"selectedZt == 'fwyt'? 'fwyt selectedZt':'fwyt'"
@
click=
"selectedZt='fwyt'"
>
<div
:class=
"selectedZt == 'fwyt' ? 'fwyt selectedZt' : 'fwyt'"
@
click=
"selectedZt = 'fwyt'"
>
<span>
房屋用途
</span>
</div>
</div>
...
...
@@ -70,13 +121,24 @@
class=
"legendTable-wrap"
:style=
"
{ width: legendToggleFlag ? '204px' : '0' }"
>
<table
class=
"legendTable"
v-show=
"selectedZt == 'dyzt'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<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 dyztList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH(item.name)"
>
<tr
v-for=
"(item, index) in dyztList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH(item.name)"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
...
...
@@ -85,13 +147,25 @@
<td>
{{
item
.
mj
}}
</td>
</tr>
</table>
<table
class=
"legendTable"
v-show=
"selectedZt == 'fwxz'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<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 fwxzList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH(item.name)"
>
<tr
v-for=
"(item, index) in fwxzList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH(item.name)"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
...
...
@@ -99,17 +173,29 @@
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
<tr
v-show=
"fwxzList.length
<
1
"
>
<tr
v-show=
"fwxzList.length
<
1
"
>
<td
colspan=
"3"
class=
"tac"
>
暂无数据
</td>
</tr>
</table>
<table
class=
"legendTable"
v-show=
"selectedZt == 'fwyt'"
cellspacing=
"1"
cellpadding=
"1"
border=
"1"
>
<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 fwytList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH(item.name)"
>
<tr
v-for=
"(item, index) in fwytList"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH(item.name)"
>
<td>
<i
class=
"el-icon-star-on"
:style=
"
{ color: item.color }">
</i
>
{{
item
.
name
}}
...
...
@@ -117,7 +203,7 @@
<td>
{{
item
.
ts
}}
</td>
<td>
{{
item
.
mj
}}
</td>
</tr>
<tr
v-show=
"fwytList.length
<
1
"
>
<tr
v-show=
"fwytList.length
<
1
"
>
<td
colspan=
"3"
class=
"tac"
>
暂无数据
</td>
</tr>
</table>
...
...
@@ -135,7 +221,11 @@
<addZdy
ref=
"zdy"
></addZdy>
</div>
<div
class=
"addCh"
v-show=
"menuType == 'ch'"
>
<addCh
ref=
"ch"
:dialogVisible=
"dialogVisible"
:treeData=
"treeData"
></addCh>
<addCh
ref=
"ch"
:dialogVisible=
"dialogVisible"
:treeData=
"treeData"
></addCh>
</div>
<div
class=
"btnGroup"
>
<el-button
type=
"primary"
@
click=
"saveInfo"
>
保存
</el-button>
...
...
@@ -149,10 +239,15 @@
<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>
<pl-sh
:plShVisible=
"plShVisible"
:bsms=
"bsms"
@
close=
"plshClose"
></pl-sh>
<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>
<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>
...
...
@@ -163,34 +258,47 @@
</
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
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
hbj
from
"./hbj/index"
;
import
lpbContent
from
"./lpbContent/index"
;
import
{
getLpbMenuTree
,
batchScYcChange
,
getLpbTj
}
from
"../../../../api/lpb"
;
import
{
getLpbMenuTree
,
batchScYcChange
,
getLpbTj
,
batchGeneratorBdcdyh
}
from
"../../../../api/lpb"
;
export
default
{
name
:
""
,
components
:
{
LineTree
,
addLjz
,
addZdy
,
addCh
,
lpbContent
,
PlC
,
PlSh
,
PlH
,
PlZl
,
hbj
},
components
:
{
LineTree
,
addLjz
,
addZdy
,
addCh
,
lpbContent
,
PlC
,
PlSh
,
PlH
,
PlZl
,
hbj
,
HCxlz
,
},
props
:
{},
data
()
{
return
{
bsms
:
[
"123"
,
"321"
,
"231"
],
hbsm
:
''
,
bsms
:
[
"123"
,
"321"
,
"231"
],
hbsm
:
""
,
dialogVisible
:
false
,
plcVisible
:
false
,
plhVisible
:
false
,
plShVisible
:
false
,
plzlVisible
:
false
,
hbjVisible
:
false
,
tabPosition
:
"1"
,
//1是实测 0是预测
plcVisible
:
false
,
plhVisible
:
false
,
plShVisible
:
false
,
plzlVisible
:
false
,
hbjVisible
:
false
,
hcxlzVisible
:
false
,
tabPosition
:
"1"
,
//1是实测 0是预测
radio1
:
""
,
radio2
:
""
,
createFlag
:
false
,
...
...
@@ -199,8 +307,8 @@ export default {
pd
:
[],
//创建楼盘的树结构数据
menuType
:
""
,
treeData
:
{},
inputWidth
:
74
,
selectedZt
:
'dyzt'
,
//图例选中项,默认选中单元状态
inputWidth
:
74
,
selectedZt
:
"dyzt"
,
//图例选中项,默认选中单元状态
dyztList
:
[
{
name
:
"未确权"
,
...
...
@@ -257,13 +365,13 @@ export default {
mj
:
"285"
,
},
],
fwxzList
:[],
fwytList
:[],
fwxzList
:
[],
fwytList
:
[],
legendToggleFlag
:
false
,
lpbContentHight
:
""
,
lpbContentwidth
:
""
,
time
:
''
,
dyztBsmList
:
{},
//单元状态bsmList
time
:
""
,
dyztBsmList
:
{},
//单元状态bsmList
};
},
created
()
{
...
...
@@ -281,18 +389,21 @@ export default {
},
100
);
},
methods
:
{
plZlClose
(){
this
.
plzlVisible
=
false
hcxlzClose
()
{
this
.
hcxlzVisible
=
false
;
},
plZlClose
()
{
this
.
plzlVisible
=
false
;
},
plcClose
()
{
this
.
plcVisible
=
false
;
plcClose
()
{
this
.
plcVisible
=
false
;
},
plhClose
(){
this
.
plhVisible
=
false
;
plhClose
()
{
this
.
plhVisible
=
false
;
},
plshClose
()
{
this
.
plShVisible
=
false
;
},
plshClose
(){
this
.
plShVisible
=
false
},
//获取高度计算lpb内容区高度
getHeight
()
{
this
.
lpbContentHight
=
window
.
innerHeight
-
285
;
...
...
@@ -357,146 +468,151 @@ export default {
this
.
legendToggleFlag
=
!
this
.
legendToggleFlag
;
},
//获取选中户bsm
getHbsm
(
data
,
type
)
{
getHbsm
(
data
,
type
)
{
this
.
bsms
=
data
;
if
(
type
)
{
if
(
type
)
{
// 双击
this
.
hbsm
=
this
.
bsms
[
this
.
bsms
.
length
-
1
];
this
.
hbsm
=
this
.
bsms
[
this
.
bsms
.
length
-
1
];
this
.
hbjVisible
=
true
;
this
.
$nextTick
(
function
()
{
this
.
$refs
.
hbj
.
getHInfo
(
this
.
hbsm
);
})
}
else
{
this
.
$nextTick
(
function
()
{
this
.
$refs
.
hbj
.
getHInfo
(
this
.
hbsm
);
})
;
}
else
{
//单击 TO DO
}
console
.
log
(
this
.
bsms
);
},
//不动产单元号输入框事件
inputFocus
(){
this
.
inputWidth
=
200
inputFocus
()
{
this
.
inputWidth
=
200
;
},
inputBlur
(){
this
.
inputWidth
=
74
inputBlur
()
{
this
.
inputWidth
=
74
;
},
inputChange
(){
if
(
this
.
bdcdyh
!=
''
)
{
console
.
log
(
'查询'
+
this
.
bdcdyh
);
inputChange
()
{
if
(
this
.
bdcdyh
!=
""
)
{
console
.
log
(
"查询"
+
this
.
bdcdyh
);
this
.
$refs
.
lpbContent
.
lpbDataMap
(
this
.
bdcdyh
);
}
else
{
}
else
{
this
.
$message
({
message
:
"请输入内容后查询"
,
type
:
"warning"
,
})
})
;
}
},
//户保存
hbjSaveInfo
(){
this
.
$refs
.
hbj
.
onSave
(
this
.
bsms
[
this
.
bsms
.
length
-
1
],
this
.
tabPosition
);
hbjSaveInfo
()
{
this
.
$refs
.
hbj
.
onSave
(
this
.
bsms
[
this
.
bsms
.
length
-
1
],
this
.
tabPosition
);
},
//户编辑表单重置
hbjResetInfo
(){
hbjResetInfo
()
{
this
.
$refs
.
hbj
.
onReset
();
},
//调用楼盘表信息查询接口
getlpbData
(){
getlpbData
()
{
this
.
$refs
.
lpbContent
.
getLpb
(
this
.
$store
.
state
.
zrzbsm
);
//改变楼盘表子组件的key值,重新渲染
this
.
time
=
new
Date
().
getTime
();
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
(
"实预测转换成功"
)
plScYcChange
()
{
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
scyclx
:
"0"
,
}
;
batchScYcChange
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
"实预测转换成功"
)
;
}
})
})
;
},
//选中房屋状态
handleChoosedH
(
name
){
console
.
log
(
name
,
'选中房屋状态'
);
handleChoosedH
(
name
)
{
console
.
log
(
name
,
"选中房屋状态"
);
// Dyzt:{list:[],mj:''}
//清除选中户
this
.
$refs
.
lpbContent
.
clearChoosedH
()
this
.
$refs
.
lpbContent
.
clearChoosedH
()
;
//给hBsmList传值
switch
(
name
)
{
case
'未确权'
:
case
"未确权"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Wqqzt
.
bsms
;
break
;
case
'已确权'
:
case
"已确权"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Qqzt
.
bsms
;
break
;
case
'已备案'
:
case
"已备案"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Bazt
.
bsms
;
break
;
case
'预抵押'
:
case
"预抵押"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Ydyzt
.
bsms
;
break
;
case
'在建抵押'
:
case
"在建抵押"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Zjgcdyzt
.
bsms
;
break
;
case
'抵押'
:
case
"抵押"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Dyzt
.
bsms
;
break
;
case
'查封'
:
case
"查封"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Cfzt
.
bsms
;
break
;
case
'异议'
:
case
"异议"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Yyzt
.
bsms
;
break
;
case
'限制'
:
case
"限制"
:
this
.
$refs
.
lpbContent
.
choosedList
=
this
.
dyztBsmList
.
Xzzt
.
bsms
;
break
;
default
:
break
;
}
// 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"]
},
//批量添加不动产单元号
addBdcdyh
(){
addBdcdyh
()
{
// this.pd[0].bsm //自然幢标识码
console
.
log
(
this
.
$store
.
state
.
zrzh
,
'this.$store.state.zrzh'
);
batchGeneratorBdcdyh
(
this
.
$store
.
state
.
zrzh
,
this
.
pd
[
0
].
bsm
).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
"生成完成!"
);
}
else
{
this
.
$message
.
warning
(
"生成失败!"
);
}
}
);
},
//获取各项单元状态的户bsm
getDyztBsmList
(){
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
syclx
:
"0"
}
getLpbTj
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
getDyztBsmList
()
{
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
syclx
:
"0"
,
}
;
getLpbTj
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
dyztBsmList
=
res
.
result
;
//给单元状态图例数据dyztList赋值
this
.
dyztList
[
0
].
mj
=
res
.
result
.
Wqqzt
.
mj
this
.
dyztList
[
0
].
ts
=
res
.
result
.
Wqqzt
.
bsms
.
length
this
.
dyztList
[
1
].
mj
=
res
.
result
.
Qqzt
.
mj
this
.
dyztList
[
1
].
ts
=
res
.
result
.
Qqzt
.
bsms
.
length
this
.
dyztList
[
2
].
mj
=
res
.
result
.
Bazt
.
mj
this
.
dyztList
[
2
].
ts
=
res
.
result
.
Bazt
.
bsms
.
length
this
.
dyztList
[
3
].
mj
=
res
.
result
.
Ydyzt
.
mj
this
.
dyztList
[
3
].
ts
=
res
.
result
.
Ydyzt
.
bsms
.
length
this
.
dyztList
[
4
].
mj
=
res
.
result
.
Zjgcdyzt
.
mj
this
.
dyztList
[
4
].
ts
=
res
.
result
.
Zjgcdyzt
.
bsms
.
length
this
.
dyztList
[
5
].
mj
=
res
.
result
.
Dyzt
.
mj
this
.
dyztList
[
5
].
ts
=
res
.
result
.
Dyzt
.
bsms
.
length
this
.
dyztList
[
6
].
mj
=
res
.
result
.
Cfzt
.
mj
this
.
dyztList
[
6
].
ts
=
res
.
result
.
Cfzt
.
bsms
.
length
this
.
dyztList
[
7
].
mj
=
res
.
result
.
Yyzt
.
mj
this
.
dyztList
[
7
].
ts
=
res
.
result
.
Yyzt
.
bsms
.
length
this
.
dyztList
[
8
].
mj
=
res
.
result
.
Xzzt
.
mj
this
.
dyztList
[
8
].
ts
=
res
.
result
.
Xzzt
.
bsms
.
length
console
.
log
(
res
,
'各项单元状态的户bsmList'
);
this
.
dyztList
[
0
].
mj
=
res
.
result
.
Wqqzt
.
mj
;
this
.
dyztList
[
0
].
ts
=
res
.
result
.
Wqqzt
.
bsms
.
length
;
this
.
dyztList
[
1
].
mj
=
res
.
result
.
Qqzt
.
mj
;
this
.
dyztList
[
1
].
ts
=
res
.
result
.
Qqzt
.
bsms
.
length
;
this
.
dyztList
[
2
].
mj
=
res
.
result
.
Bazt
.
mj
;
this
.
dyztList
[
2
].
ts
=
res
.
result
.
Bazt
.
bsms
.
length
;
this
.
dyztList
[
3
].
mj
=
res
.
result
.
Ydyzt
.
mj
;
this
.
dyztList
[
3
].
ts
=
res
.
result
.
Ydyzt
.
bsms
.
length
;
this
.
dyztList
[
4
].
mj
=
res
.
result
.
Zjgcdyzt
.
mj
;
this
.
dyztList
[
4
].
ts
=
res
.
result
.
Zjgcdyzt
.
bsms
.
length
;
this
.
dyztList
[
5
].
mj
=
res
.
result
.
Dyzt
.
mj
;
this
.
dyztList
[
5
].
ts
=
res
.
result
.
Dyzt
.
bsms
.
length
;
this
.
dyztList
[
6
].
mj
=
res
.
result
.
Cfzt
.
mj
;
this
.
dyztList
[
6
].
ts
=
res
.
result
.
Cfzt
.
bsms
.
length
;
this
.
dyztList
[
7
].
mj
=
res
.
result
.
Yyzt
.
mj
;
this
.
dyztList
[
7
].
ts
=
res
.
result
.
Yyzt
.
bsms
.
length
;
this
.
dyztList
[
8
].
mj
=
res
.
result
.
Xzzt
.
mj
;
this
.
dyztList
[
8
].
ts
=
res
.
result
.
Xzzt
.
bsms
.
length
;
}
})
}
},
computed
:
{
});
},
},
computed
:
{},
destroyed
()
{
window
.
removeEventListener
(
"resize"
,
this
.
getHeight
);
},
...
...
@@ -534,21 +650,21 @@ export default {
box-sizing
:
border-box
;
padding
:
0
20px
;
/deep/.el-radio-button__inner
{
border
:
1px
solid
#00
CACD
;
color
:
#00
CACD
;
border
:
1px
solid
#00
cacd
;
color
:
#00
cacd
;
}
/
deep
/
.el-radio-button__inner
:hover
{
color
:
#00
CACD
;
/
deep
/
.el-radio-button__inner
:hover
{
color
:
#00
cacd
;
}
/
deep
/
.is-active
.el-radio-button__inner
{
/
deep
/
.is-active
.el-radio-button__inner
{
color
:
#fff
;
}
/
deep
/
.el-radio-button__orig-radio
:checked
+
.el-radio-button__inner
{
background-color
:
#00
CACD
;
border-color
:
#00
CACD
;
/
deep
/
.el-radio-button__orig-radio
:checked
+
.el-radio-button__inner
{
background-color
:
#00
cacd
;
border-color
:
#00
cacd
;
}
.searchInput
{
transition
:
.5s
;
transition
:
0
.5s
;
margin-left
:
20px
;
display
:
inline-block
;
}
...
...
@@ -601,7 +717,7 @@ export default {
height
:
40px
;
line-height
:
40px
;
text-align
:
center
;
background-color
:
#0091
FF
;
background-color
:
#0091
ff
;
color
:
#fff
;
border-bottom
:
1px
solid
#e6e6e6
;
}
...
...
@@ -627,8 +743,8 @@ export default {
letter-spacing
:
2px
;
}
}
.selectedZt
{
background-color
:
#0091
FF
;
.selectedZt
{
background-color
:
#0091
ff
;
color
:
#fff
;
}
}
...
...
@@ -663,7 +779,7 @@ export default {
}
}
}
.tab-content
::-webkit-scrollbar
{
.tab-content
::-webkit-scrollbar
{
width
:
1px
;
}
.btnGroup
{
...
...
Please
register
or
sign in
to post a comment