|
@@ -76,6 +76,7 @@
|
|
|
<!-- 详情 -->
|
|
|
<el-dialog :title="title" :visible.sync="open" width="1200px" class="form-style">
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <div class="anjianxinxi">
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="案件名称" prop="caseName">
|
|
@@ -148,14 +149,15 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="24">
|
|
|
<el-form-item label="案件描述" prop="describe">
|
|
|
- <el-input type="textarea" v-model="form.describe" placeholder="请输入案件描述" disabled/>
|
|
|
+ <el-input type="textarea" v-model="form.describe" placeholder="请输入案件描述" disabled class="ajms"/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ </div>
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="24">
|
|
|
- <el-col :span="8">
|
|
|
- <el-card style="height: 350px;">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-card >
|
|
|
<div class="form-item-title">1.法制审核机构出具的审核意见书</div>
|
|
|
<br>
|
|
|
<el-form-item label="附件" label-width="50px" prop="dataOne">
|
|
@@ -166,8 +168,8 @@
|
|
|
</el-form-item>
|
|
|
</el-card>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
- <el-card style="height: 350px;">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-card>
|
|
|
<div class="form-item-title">2.落实行政处罚裁量基准和包容审慎监管执法“四张清单”相关材料</div>
|
|
|
<el-form-item label="附件" label-width="50px" prop="dataTwo">
|
|
|
<fileUpload v-model="dataTwo"></fileUpload>
|
|
@@ -177,8 +179,8 @@
|
|
|
</el-form-item>
|
|
|
</el-card>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
- <el-card style="height: 350px;">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-card>
|
|
|
<div class="form-item-title">3.落实行政处罚裁量基准和包容审慎监管执法“四张清单”相关材料</div>
|
|
|
<el-form-item label="附件" label-width="50px" prop="dataTwo">
|
|
|
<fileUpload v-model="dataThree"></fileUpload>
|
|
@@ -483,6 +485,10 @@ export default {
|
|
|
.form-item-title{
|
|
|
font-size: 14px;
|
|
|
font-weight: bold;
|
|
|
+ width: 100%;
|
|
|
+ border-bottom: solid 1px #ccc;
|
|
|
+ padding:15px 20px;
|
|
|
+ border-left: solid 4px #2b64c1;
|
|
|
}
|
|
|
.el-table--fit{
|
|
|
margin: 10px 0 0 0;
|
|
@@ -490,4 +496,51 @@ export default {
|
|
|
.el-dialog__header{
|
|
|
background: #f5f7f9;
|
|
|
}
|
|
|
+/* .anjianxinxi{
|
|
|
+ background: #f5f5f5;
|
|
|
+} */
|
|
|
+.el-dialog{
|
|
|
+ height: 820px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.el-dialog__body{
|
|
|
+ height: 700px;
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+.el-form-item{
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.el-form-item__label{
|
|
|
+ font-weight: normal;
|
|
|
+ width: 100px !important;
|
|
|
+ text-align: center !important;
|
|
|
+ padding:0 !important;
|
|
|
+}
|
|
|
+.el-form-item__content{
|
|
|
+ margin: 0 !important;
|
|
|
+}
|
|
|
+.el-input.is-disabled .el-input__inner,.el-input--medium .el-input__inner {
|
|
|
+ background-color: #fff !important;
|
|
|
+ width: 440px;
|
|
|
+ border-radius: 0px;
|
|
|
+}
|
|
|
+.el-textarea.is-disabled .el-textarea__inner {
|
|
|
+ background-color: #fff !important;
|
|
|
+ width: 1000px;
|
|
|
+ height: auto;
|
|
|
+ resize: none;
|
|
|
+}
|
|
|
+.ajms .el-textarea__inner{
|
|
|
+ background-color: #fff !important;
|
|
|
+ width: 1023px !important;
|
|
|
+ height: auto;
|
|
|
+ resize: none;
|
|
|
+}
|
|
|
+.el-card__body{
|
|
|
+ padding: 0 !important;
|
|
|
+}
|
|
|
+.el-card{
|
|
|
+ margin: 0 0 20px 0;
|
|
|
+}
|
|
|
+
|
|
|
</style>
|