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
fc31f4fa
authored
2020-10-29 20:03:13 +0800
by
cheliming
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
17fdd866
d30e237d
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
21 deletions
src/components/lineTree/lineItem.vue
src/components/lineTree/lineTree.vue
src/views/Home.vue
src/views/panel/add/index.vue
src/views/panel/create/index.vue
src/views/panel/modify/index.vue
src/views/systemZRZ/zrzxx/index.vue
src/components/lineTree/lineItem.vue
View file @
fc31f4f
...
...
@@ -226,7 +226,8 @@ export default {
width
:
22px
;
left
:
9px
;
top
:
9px
;
background
:
#c3c5c8
;
background
:
url('../../assets/images/rowline.png')
;
background-position-y
:
center
;
}
.linkLine_default
::after
{
...
...
src/components/lineTree/lineTree.vue
View file @
fc31f4f
...
...
@@ -56,14 +56,19 @@
<li
v-show=
"isZD"
>
导入属性
</li>
<li
v-show=
"!isZD"
>
导入楼盘
</li>
<li>
重叠分析
</li>
<li
v-show=
"isZD"
>
添加定着物
</li>
<li
v-show=
"isZD"
@
click=
"openCreateDialog"
>
添加定着物
</li>
<li
@
click=
"deleteByBsm()"
>
删除
</li>
</ul>
<!-- 添加定着物弹框 -->
<el-dialog
title=
"新建"
:visible
.
sync=
"dialogVisible"
width=
"40%"
>
<Create
@
closeDialog=
"closeDialog"
:auth=
"true"
></Create>
</el-dialog>
</div>
</
template
>
<
script
>
import
lineItem
from
"./lineItem.vue"
;
import
{
deleteZdInfoByBsm
}
from
"../../api/zd"
;
import
Create
from
"../../views/panel/create/index"
;
export
default
{
inheritAttrs
:
false
,
props
:
{
...
...
@@ -73,7 +78,7 @@ export default {
default
:
14
,
},
},
components
:
{
lineItem
},
components
:
{
lineItem
,
Create
},
data
()
{
return
{
selectedDetail
:
{},
...
...
@@ -83,7 +88,8 @@ export default {
top
:
0
,
left
:
0
,
isZD
:
true
,
zdData
:{}
zdData
:{},
dialogVisible
:
false
};
},
watch
:
{
...
...
@@ -115,6 +121,14 @@ export default {
changeIsZD
(
data
)
{
this
.
isZD
=
data
;
},
//添加定着物
openCreateDialog
(){
this
.
dialogVisible
=
true
},
//关闭添加定着物弹框
closeDialog
()
{
this
.
dialogVisible
=
false
;
},
preDealData
(
list
)
{
list
.
forEach
((
x
)
=>
{
if
(
!
x
.
expand
)
this
.
$set
(
x
,
"expand"
,
true
);
...
...
src/views/Home.vue
View file @
fc31f4f
...
...
@@ -36,7 +36,7 @@
<Navigation
ref=
"navigation"
></Navigation>
</div>
-->
<el-dialog
title=
"新建"
:visible
.
sync=
"dialogVisible"
width=
"40%"
>
<Create
@
closeDialog=
"closeDialog"
></Create>
<Create
@
closeDialog=
"closeDialog"
:auth=
"false"
></Create>
</el-dialog>
</el-header>
<el-main>
...
...
src/views/panel/add/index.vue
View file @
fc31f4f
...
...
@@ -24,12 +24,18 @@
</el-table-column>
<el-table-column
prop=
"bdcqzh"
align=
"left"
label=
"不动产权证号"
>
</el-table-column>
<el-table-column
prop=
"lx"
align=
"left"
width=
"120"
label=
"类型"
>
<el-table-column
prop=
"dylx"
align=
"left"
width=
"120"
label=
"类型"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
dylx
|
bdcLxFilter
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"qlr"
align=
"left"
width=
"120"
label=
"权利人"
>
</el-table-column>
<el-table-column
prop=
"zl"
align=
"left"
label=
"坐落"
></el-table-column>
<el-table-column
prop=
"zrsj"
align=
"left"
width=
"120"
label=
"转入时间"
>
<el-table-column
prop=
"addtime"
align=
"left"
width=
"120"
label=
"转入时间"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
addtime
|
timeFilter
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"cjr"
align=
"left"
width=
"120"
label=
"创建人"
>
</el-table-column>
...
...
src/views/panel/create/index.vue
View file @
fc31f4f
...
...
@@ -6,7 +6,7 @@
type=
"card"
class=
"eltabs"
@
tab-click=
"handleClick"
>
<el-tab-pane
class=
"eltabspane"
label=
"宗地"
name=
"zd"
>
<el-tab-pane
class=
"eltabspane"
v-if=
"!auth"
label=
"宗地"
name=
"zd"
>
<el-form
:inline=
"true"
:rules=
"rules"
:model=
"ruleForm"
ref=
"ruleForm"
class=
"demo-form-inline"
>
<el-form-item
label=
"行政区划"
required
prop=
"xzqbsm"
>
<el-select
v-model=
"ruleForm.xzqbsm"
style=
"width:100px;"
value-key=
"xzqbsm"
placeholder=
"行政区"
@
change=
"changeXzq(ruleForm.xzqbsm)"
>
...
...
@@ -82,7 +82,7 @@
</el-form-item>
</el-form>
</el-tab-pane>
<el-tab-pane
class=
"eltabspane"
label=
"宗海"
name=
"zh"
>
宗海
</el-tab-pane>
<el-tab-pane
class=
"eltabspane"
v-if=
"!auth"
label=
"宗海"
name=
"zh"
>
宗海
</el-tab-pane>
<el-tab-pane
class=
"eltabspane"
label=
"自然幢"
name=
"zrz"
>
<el-form
:inline=
"true"
:rules=
"rules1"
:model=
"ruleForm1"
ref=
"ruleForm1"
class=
"zrzProject"
>
<el-form-item
label=
"项目名称"
prop=
"xmmc"
>
...
...
@@ -133,12 +133,12 @@ import { insertDzjbxx } from "../../../api/dz";
export
default
{
name
:
""
,
components
:
{},
props
:
{}
,
props
:
[
'auth'
]
,
data
()
{
return
{
tabPosition
:
"left"
,
//默认第一个选项卡
activeName
:
"
zd
"
,
activeName
:
""
,
zrzProjectName
:
""
,
xzq
:
[],
djq
:
[],
...
...
@@ -211,7 +211,10 @@ export default {
created
()
{
this
.
getXzqList
();
},
mounted
()
{},
mounted
()
{
console
.
log
(
this
,
'this'
);
this
.
activeName
=
this
.
auth
?
'zrz'
:
'zd'
},
methods
:
{
handleClick
(
tab
,
event
)
{
console
.
log
(
tab
,
event
);
...
...
src/views/panel/modify/index.vue
View file @
fc31f4f
...
...
@@ -24,12 +24,18 @@
</el-table-column>
<el-table-column
prop=
"bdcqzh"
align=
"left"
label=
"不动产权证号"
>
</el-table-column>
<el-table-column
prop=
"lx"
align=
"left"
width=
"120"
label=
"类型"
>
<el-table-column
prop=
"dylx"
align=
"left"
width=
"120"
label=
"类型"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
dylx
|
bdcLxFilter
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"qlr"
align=
"left"
width=
"120"
label=
"权利人"
>
</el-table-column>
<el-table-column
prop=
"zl"
align=
"left"
label=
"坐落"
></el-table-column>
<el-table-column
prop=
"zrsj"
align=
"left"
width=
"120"
label=
"转入时间"
>
<el-table-column
prop=
"addtime"
align=
"left"
width=
"120"
label=
"转入时间"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
addtime
|
timeFilter
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"cjr"
align=
"left"
width=
"120"
label=
"创建人"
>
</el-table-column>
...
...
src/views/systemZRZ/zrzxx/index.vue
View file @
fc31f4f
...
...
@@ -233,7 +233,7 @@
<span>
调查意见
</span>
</td>
<td
colspan=
"10"
>
<el-input
v-model=
"form.
name
"
></el-input>
<el-input
v-model=
"form.
dcyj
"
></el-input>
</td>
</tr>
...
...
@@ -242,15 +242,16 @@
<span>
审查员
</span>
</td>
<td
colspan=
"2"
>
<el-input
v-model=
"form.
name
"
></el-input>
<el-input
v-model=
"form.
scy
"
></el-input>
</td>
<td
colspan=
"2"
rowspan=
"2"
align=
"right"
style=
"width:8.33%;padding-right:10px"
>
<td
colspan=
"2"
align=
"right"
style=
"width:8.33%;padding-right:10px"
>
<span>
审查日期
</span>
</td>
<td
colspan=
"2"
>
<el-date-picker
v-model=
"form.date"
type=
"date"
style=
"width: 100%"
placeholder=
"选择日期"
>
</el-date-picker>
</td>
...
...
@@ -312,8 +313,10 @@
fwcbbsm
:
''
,
//房屋产别ID
fwcqlybsm
:
''
,
//房屋产权来源ID
ydybsm
:
''
,
//原单元标识码
dcyj
:
''
,
//调查意见
scy
:
''
,
//审查员
name
:
''
,
date
:
''
,
date
:
''
,
//审查日期
fwytList
:[{
glbsm
:
''
,
//关联标识码
fwytzdbsm
:
''
,
//房屋用途字典标识码
...
...
@@ -496,9 +499,6 @@
this
.
form
.
zrzbsm
=
this
.
$route
.
query
.
bsm
;
this
.
getZrzDetailByBsm
(
this
.
$route
.
query
.
bsm
)
}
if
(
this
.
source
!==
1
){
this
.
getZrzDetailByBsm
(
this
.
$route
.
query
.
bsm
)
}
},
mounted
()
{},
computed
:
{
...
...
Please
register
or
sign in
to post a comment