6f07939f by zhaoqian

自然幢,多幢,户表单样式提交!

1 parent 4daec0da
......@@ -55,8 +55,20 @@ const constantRoutes = [
{
path: '/zrz',
name: '自然幢',
code: 'zrz',
component: () => import('@/views/zrz/index'),
code: '1-1',
component: () => import('@/views/basic/zrz/index'),
},
{
path: '/dz',
name: '多幢',
code: '1-2',
component: () => import('@/views/basic/dz/index'),
},
{
path: '/h',
name: '户',
code: '1-3',
component: () => import('@/views/basic/h/index'),
},
]
}
......
......@@ -33,4 +33,8 @@
.el-select{
display:block;
}
table{
font-size: 14px;
}
}
\ No newline at end of file
......
.zrz {
min-height: 200px;
width: 100%;
margin-top: 10px;
float: left;
.el-input__inner{
width: 100%;
border: 0;
}
textarea{
width: 100%;
border: 0;
}
.el-form-item{
font-weight: bold;
font-size: xx-large
}
table{
background: #fff;
}
td{
//bgcolor:#F1F4FC;
bgcolor:#fff;
width:8.33%
}
.el-select{
display:block;
}
}
table{
font-size: 14px;
}
\ No newline at end of file
.zrz {
min-height: 200px;
width: 100%;
margin-top: 10px;
float: left;
.el-input__inner{
width: 100%;
border: 0;
}
textarea{
width: 100%;
border: 0;
}
.el-form-item{
font-weight: bold;
font-size: xx-large
}
table{
background: #fff;
}
td{
//bgcolor:#F1F4FC;
bgcolor:#fff;
width:8.33%
}
.el-select{
display:block;
}
table{
font-size: 14px;
}
}
\ No newline at end of file
<template>
<div class="zrz content-form">
<el-form ref="form" :model="form" label-width="160px">
<table border="1" width="90%" cellspacing="1" cellpadding="2">
<table border="1" width="80%" cellspacing="1" cellpadding="2">
<tbody>
<tr>
<td colspan="1"></td>
......@@ -18,7 +18,7 @@
<td colspan="1"></td>
</tr>
<tr height="30">
<td colspan="12" align="center" ><font size="5">自然幢基本信息</font></td>
<td colspan="12" align="center" ><font size="4">自然幢基本信息</font></td>
</tr>
<tr height="30">
<td colspan="2" align="center" >宗地代码</td>
......@@ -28,7 +28,7 @@
<td colspan="2" align="center" >自然幢号</td>
<td colspan="4" >
<el-input v-model="form.zrzh" style="width: 70%"></el-input>
<el-button @click.prevent="" type="primary" style="width:25%;margin-left:3%">生成</el-button>
<el-button @click.prevent="" type="primary" size="mini" style="width:25%;margin-left:3%">生成</el-button>
</td>
</tr>
<tr height="30">
......@@ -40,7 +40,7 @@
<!-- todo 此处暂时存放的是不动产单元号标识码,而不是不动产单元号-->
<td colspan="4" >
<el-input v-model="form.dyhbsm" style="width: 70%"></el-input>
<el-button @click.prevent="" type="primary" style="width:25%;margin-left:3%">生成</el-button>
<el-button @click.prevent="" type="primary" size="mini" style="width:25%;margin-left:3%">生成</el-button>
</td>
</tr>
......@@ -394,5 +394,5 @@
}
</script>
<style rel="stylesheet/less" lang="less">
@import './index.less';
@import 'index.less';
</style>
\ No newline at end of file
......