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
38738969
authored
2020-12-30 09:03:55 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
72ac6329
10723bef
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
7 deletions
src/views/panel/index.vue
src/views/zd/index.vue
src/views/zd/mjftb/index.vue
src/views/zd/zddcb/index.vue
src/views/panel/index.vue
View file @
3873896
...
...
@@ -68,11 +68,17 @@
<span
class=
"edit"
>
查看全部
<i
class=
"fa fa-angle-right "
aria-hidden=
"true"
></i></span>
</div>
<el-table
:data=
"
table
Data"
:data=
"
download
Data"
:height=
"tableHeight"
border
@
row-click=
"download"
:row-class-name=
"tableRowClassName"
>
<el-table-column
prop=
"title"
align=
"center"
label=
"内容名称"
>
<el-table-column
type=
"index"
align=
"center"
width=
"50"
label=
"序号"
>
</el-table-column>
<el-table-column
prop=
"name"
align=
"center"
label=
"下载文件"
>
</el-table-column>
</el-table>
</el-card>
...
...
@@ -99,6 +105,15 @@ export default {
{
name
:
"添加"
,
img
:
require
(
"@assets/images/tj.png"
)
},
],
tableData
:
[],
downloadData
:[
{
name
:
"宗地导入模板"
,
url
:
"api/tx/excelGeo/template?type=zd"
},{
name
:
"自然幢导入模板"
,
url
:
"api/tx/excelGeo/template?type=zrz"
}
],
tableHeight
:
0
,
total
:
0
,
isEdit
:
false
...
...
@@ -110,6 +125,9 @@ export default {
});
},
methods
:
{
download
(
row
,
column
,
event
){
window
.
open
(
row
.
url
)
},
handleSelect
()
{
//非编辑状态才可以点击
if
(
!
isEdit
)
{
...
...
src/views/zd/index.vue
View file @
3873896
<
template
>
<
div
class=
"content_box"
>
<el-tabs
v-model=
"activeName"
class=
"tabs"
@
tab-click=
"handleClick"
>
<
!--
<div
class=
"content_box"
>
--
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
type=
"border-card"
>
<el-tab-pane
label=
"地籍调查表"
name=
"djdcb"
><zddcb></zddcb></el-tab-pane>
<el-tab-pane
label=
"面积分摊表"
name=
"mjftb"
><mjftb
v-if=
"mjftbVisible"
></mjftb></el-tab-pane>
<el-tab-pane
label=
"界址点"
name=
"jzd"
><jzd
v-if=
"jzdVisible"
></jzd></el-tab-pane>
...
...
@@ -9,7 +9,7 @@
<el-tab-pane
label=
"历史回溯"
name=
"lshs"
><lshs
v-if=
"lshsVisible"
></lshs></el-tab-pane>
<el-tab-pane
label=
"附件材料"
name=
"fjcl"
><fjcl
v-if=
"fjclVisible"
></fjcl></el-tab-pane>
</el-tabs>
<
/div
>
<
!--
</div>
--
>
</
template
>
<
script
>
...
...
@@ -71,4 +71,23 @@ export default {
watch
:
{},
};
</
script
>
<
style
scoped
lang=
"less"
></
style
>
<
style
scoped
lang=
"less"
>
.el-tabs
{
height
:
calc
(
100%
-
50px
);
/deep/.el-tabs__content{
//
height
:
100%
;
/deep/.el-tab-pane{
height
:
100%
;
}
background
:
#eaedf5
;
padding
:
0
;
}
/
deep
/
.el-tabs__item
{
height
:
48px
;
}
/
deep
/
.el-tabs__header
{
background-color
:
#ffffff
;
}
}
</
style
>
...
...
src/views/zd/mjftb/index.vue
View file @
3873896
...
...
@@ -245,7 +245,7 @@
width
:
100%
;
table
{
margin-top
:
10px
;
//
margin-top
:
10px
;
background-color
:
#fff
;
font-size
:
14px
;
width
:
100%
;
...
...
src/views/zd/zddcb/index.vue
View file @
3873896
...
...
@@ -785,6 +785,10 @@
}
})
.
catch
((
error
)
=>
{
this
.
$message
({
message
:
error
.
message
+
",查看日志,联系管理员"
,
type
:
"error"
,
});
});
//保存到空间库里面
var
self
=
this
;
...
...
Please
register
or
sign in
to post a comment