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
81a069fd
authored
2020-10-15 18:48:36 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
添加、更正、综合查询模块完善
1 parent
f200f39d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
326 additions
and
17 deletions
src/views/panel/add/index.vue
src/views/panel/modify/index.vue
src/views/panel/search/index.vue
src/views/panel/add/index.vue
0 → 100644
View file @
81a069f
<
template
>
<div
class=
"main"
>
<SearchHead
@
getSearchCondition=
"getData"
></SearchHead>
<div
class=
"dataGrid"
ref=
"dataGrid"
>
<el-table
:data=
"tableData"
:height=
"tableHeight"
:row-class-name=
"tableRowClassName"
>
<el-table-column
type=
"index"
width=
"80"
align=
"center"
label=
"序号"
>
</el-table-column>
<el-table-column
label=
"操作"
width=
"100"
>
<template
slot-scope=
"scope"
>
<el-button
@
click=
"handleClick(scope.row)"
type=
"text"
size=
"small"
>
办理
</el-button
>
<el-button
type=
"text"
size=
"small"
>
定位
</el-button>
</
template
>
</el-table-column>
<el-table-column
prop=
"bdcdyh"
align=
"left"
label=
"不动产单元号"
>
</el-table-column>
<el-table-column
prop=
"xmmc"
align=
"left"
width=
"150"
label=
"项目名称"
>
</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>
<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>
<el-table-column
prop=
"cjr"
align=
"left"
width=
"120"
label=
"创建人"
>
</el-table-column>
</el-table>
<div
class=
"pagination"
>
<el-pagination
background
layout=
"prev, pager, next"
:total=
"1000"
>
</el-pagination>
</div>
</div>
</div>
</template>
<
script
>
import
SearchHead
from
"../../../components/searchHead/searchHead"
;
export
default
{
name
:
""
,
components
:
{
SearchHead
},
props
:
{},
data
()
{
return
{
formData
:
{
user
:
""
,
region
:
""
,
type
:
[],
},
tableData
:
[
{
bdcdyh
:
"610101001001GB00001W"
,
xmmc
:
"万科集团万科城"
,
bdcqzh
:
"陕(2017)西安市不动产权第00000"
,
lx
:
"宗地"
,
qlr
:
"李子新"
,
zl
:
"灞桥-田家湾-咸宁东路,近浐河西路"
,
zrsj
:
"2020.09.07 "
,
cjr
:
"李子新"
,
},
],
tableHeight
:
""
,
};
},
created
()
{},
mounted
()
{
for
(
let
i
=
0
;
i
<
11
;
i
++
)
{
let
obj
=
{
bdcdyh
:
"610101001001GB00001W"
,
xmmc
:
"万科集团万科城"
,
bdcqzh
:
"陕(2017)西安市不动产权第00000"
,
lx
:
"自然幢"
,
qlr
:
"李子新"
,
zl
:
"灞桥-田家湾-咸宁东路,近浐河西路"
,
zrsj
:
"2020.09.07 "
,
cjr
:
"李子新"
,
};
this
.
tableData
.
push
(
obj
);
}
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
},
methods
:
{
onSubmit
()
{},
tableRowClassName
({
row
,
rowIndex
})
{
if
(
rowIndex
%
2
!==
0
)
{
return
"even-row"
;
}
else
{
return
""
;
}
},
//获取子组件点击查询触发的事件
getData
(
obj
)
{
console
.
log
(
obj
);
//将obj作为参数调用接口查询表格数据
},
//点击办理
handleClick
(
row
)
{
let
path
=
""
;
switch
(
row
.
lx
)
{
case
"自然幢"
:
path
=
"/zrz"
;
break
;
case
"宗地"
:
path
=
"/zd"
;
break
;
default
:
break
;
}
this
.
$router
.
push
(
path
);
},
},
computed
:
{},
watch
:
{},
};
</
script
>
<
style
scoped
lang=
"less"
>
.main
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
18px
;
display
:
flex
;
flex-direction
:
column
;
background-color
:
#fcfdff
;
.demo-form-inline
{
margin-top
:
18px
;
.moreSearchBtn
{
background-color
:
#1ad6e1
;
border-color
:
#1ad6e1
;
}
.moreSearchBtn
:focus
,
.moreSearchBtn
:hover
{
background-color
:
rgba
(
28
,
200
,
229
,
0.6
);
}
}
.dataGrid
{
flex
:
1
;
.pagination
{
padding
:
18px
0
;
}
}
}
</
style
>
src/views/panel/modify/index.vue
View file @
81a069f
<
template
>
<div
class=
""
></div>
<div
class=
"main"
>
<SearchHead
@
getSearchCondition=
"getData"
></SearchHead>
<div
class=
"dataGrid"
ref=
"dataGrid"
>
<el-table
:data=
"tableData"
:height=
"tableHeight"
:row-class-name=
"tableRowClassName"
>
<el-table-column
type=
"index"
width=
"80"
align=
"center"
label=
"序号"
>
</el-table-column>
<el-table-column
label=
"操作"
width=
"100"
>
<template
slot-scope=
"scope"
>
<el-button
@
click=
"handleClick(scope.row)"
type=
"text"
size=
"small"
>
办理
</el-button
>
<el-button
type=
"text"
size=
"small"
>
定位
</el-button>
</
template
>
</el-table-column>
<el-table-column
prop=
"bdcdyh"
align=
"left"
label=
"不动产单元号"
>
</el-table-column>
<el-table-column
prop=
"xmmc"
align=
"left"
width=
"150"
label=
"项目名称"
>
</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>
<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>
<el-table-column
prop=
"cjr"
align=
"left"
width=
"120"
label=
"创建人"
>
</el-table-column>
</el-table>
<div
class=
"pagination"
>
<el-pagination
background
layout=
"prev, pager, next"
:total=
"1000"
>
</el-pagination>
</div>
</div>
</div>
</template>
<
script
>
import
SearchHead
from
"../../../components/searchHead/searchHead"
;
export
default
{
name
:
""
,
components
:{
},
props
:
{},
data
()
{
name
:
""
,
components
:
{
SearchHead
},
props
:
{},
data
()
{
return
{
formData
:
{
user
:
""
,
region
:
""
,
type
:
[],
},
tableData
:
[
{
bdcdyh
:
"610101001001GB00001W"
,
xmmc
:
"万科集团万科城"
,
bdcqzh
:
"陕(2017)西安市不动产权第00000"
,
lx
:
"宗地"
,
qlr
:
"李子新"
,
zl
:
"灞桥-田家湾-咸宁东路,近浐河西路"
,
zrsj
:
"2020.09.07 "
,
cjr
:
"李子新"
,
},
],
tableHeight
:
""
,
};
},
created
()
{},
mounted
()
{
for
(
let
i
=
0
;
i
<
11
;
i
++
)
{
let
obj
=
{
bdcdyh
:
"610101001001GB00001W"
,
xmmc
:
"万科集团万科城"
,
bdcqzh
:
"陕(2017)西安市不动产权第00000"
,
lx
:
"自然幢"
,
qlr
:
"李子新"
,
zl
:
"灞桥-田家湾-咸宁东路,近浐河西路"
,
zrsj
:
"2020.09.07 "
,
cjr
:
"李子新"
,
};
this
.
tableData
.
push
(
obj
);
}
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
},
methods
:
{
onSubmit
()
{},
tableRowClassName
({
row
,
rowIndex
})
{
if
(
rowIndex
%
2
!==
0
)
{
return
"even-row"
;
}
else
{
return
""
;
}
},
//获取子组件点击查询触发的事件
getData
(
obj
)
{
console
.
log
(
obj
);
//将obj作为参数调用接口查询表格数据
},
//点击办理
handleClick
(
row
)
{
let
path
=
""
;
switch
(
row
.
lx
)
{
case
"自然幢"
:
path
=
"/zrz"
;
break
;
case
"宗地"
:
path
=
"/zd"
;
break
;
default
:
break
;
}
this
.
$router
.
push
(
path
);
},
},
created
(){},
mounted
(){},
methods
:{},
computed
:
{},
watch
:
{},
}
}
;
</
script
>
<
style
scoped
lang=
"less"
>
.main
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
18px
;
display
:
flex
;
flex-direction
:
column
;
background-color
:
#fcfdff
;
.demo-form-inline
{
margin-top
:
18px
;
.moreSearchBtn
{
background-color
:
#1ad6e1
;
border-color
:
#1ad6e1
;
}
.moreSearchBtn
:focus
,
.moreSearchBtn
:hover
{
background-color
:
rgba
(
28
,
200
,
229
,
0.6
);
}
}
.dataGrid
{
flex
:
1
;
.pagination
{
padding
:
18px
0
;
}
}
}
</
style
>
...
...
src/views/panel/search/index.vue
View file @
81a069f
<
template
>
<div
class=
"main"
>
<SearchHead
@
getSearchCondition=
"getData"
></SearchHead>
<div
class=
"dataGrid"
>
<el-table
:data=
"tableData"
:row-class-name=
"tableRowClassName"
>
<div
class=
"dataGrid"
ref=
"dataGrid"
>
<el-table
:data=
"tableData"
:height=
"tableHeight"
:row-class-name=
"tableRowClassName"
>
<el-table-column
type=
"index"
width=
"80"
align=
"center"
label=
"序号"
>
</el-table-column>
<el-table-column
label=
"操作"
width=
"100"
>
<template
slot-scope=
"scope"
>
<el-button
@
click=
"handleClick(scope.row)"
type=
"text"
size=
"small"
>
办理
</el-button
>
<el-button
type=
"text"
size=
"small"
>
定位
</el-button>
</
template
>
</el-table-column>
<el-table-column
prop=
"bdcdyh"
align=
"left"
label=
"不动产单元号"
>
</el-table-column>
<el-table-column
prop=
"xmmc"
align=
"left"
label=
"项目名称"
>
<el-table-column
prop=
"xmmc"
align=
"left"
width=
"150"
label=
"项目名称"
>
</el-table-column>
<el-table-column
prop=
"bdcqzh"
align=
"left"
label=
"不动产权证号"
>
</el-table-column>
...
...
@@ -33,7 +45,7 @@
import
SearchHead
from
"../../../components/searchHead/searchHead"
;
export
default
{
name
:
""
,
components
:
{
SearchHead
},
components
:
{
SearchHead
},
props
:
{},
data
()
{
return
{
...
...
@@ -54,6 +66,7 @@ export default {
cjr
:
"李子新"
,
},
],
tableHeight
:
""
,
};
},
created
()
{},
...
...
@@ -63,7 +76,7 @@ export default {
bdcdyh
:
"610101001001GB00001W"
,
xmmc
:
"万科集团万科城"
,
bdcqzh
:
"陕(2017)西安市不动产权第00000"
,
lx
:
"
宗地
"
,
lx
:
"
自然幢
"
,
qlr
:
"李子新"
,
zl
:
"灞桥-田家湾-咸宁东路,近浐河西路"
,
zrsj
:
"2020.09.07 "
,
...
...
@@ -71,6 +84,7 @@ export default {
};
this
.
tableData
.
push
(
obj
);
}
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
},
methods
:
{
onSubmit
()
{},
...
...
@@ -83,10 +97,25 @@ export default {
},
//获取子组件点击查询触发的事件
getData
(
obj
){
getData
(
obj
)
{
console
.
log
(
obj
);
//将obj作为参数调用接口查询表格数据
},
//点击办理
handleClick
(
row
)
{
let
path
=
""
;
switch
(
row
.
lx
)
{
case
"自然幢"
:
path
=
"/zrz"
;
break
;
case
"宗地"
:
path
=
"/zd"
;
break
;
default
:
break
;
}
this
.
$router
.
push
(
path
);
},
},
computed
:
{},
watch
:
{},
...
...
@@ -100,7 +129,7 @@ export default {
padding
:
0
18px
;
display
:
flex
;
flex-direction
:
column
;
background-color
:
#FCFDFF
;
background-color
:
#fcfdff
;
.demo-form-inline
{
margin-top
:
18px
;
.moreSearchBtn
{
...
...
@@ -113,7 +142,7 @@ export default {
}
}
.dataGrid
{
flex
:
auto
;
flex
:
1
;
.pagination
{
padding
:
18px
0
;
}
...
...
Please
register
or
sign in
to post a comment