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
5fece3e9
authored
2020-12-29 19:37:00 +0800
by
焦泽平
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
表单样式调整
1 parent
6ba7b0cb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
5 deletions
src/views/zd/index.vue
src/views/zd/mjftb/index.vue
src/views/zd/zddcb/index.vue
src/views/zd/index.vue
View file @
5fece3e
<
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,22 @@ 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 @
5fece3e
...
...
@@ -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 @
5fece3e
...
...
@@ -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