49986d07 by xiaomiao

样式修改

1 parent 7ddda7cb
1 .zdxx {
2 width: 100%;
3 height: 100%;
4 background-color: #f5f5f5;
5 padding: 5px;
6 }
1 .tablebox { 7 .tablebox {
2 overflow-x: auto; 8 overflow-x: auto;
3 width: 100%; 9 width: 100%;
......
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
156 zdjbxx: {}, 156 zdjbxx: {},
157 zdbhqks: [], 157 zdbhqks: [],
158 propsParam: this.$attrs, 158 propsParam: this.$attrs,
159 showGroup: true, 159 showGroup: false,
160 bdclxList: ['', '宗地', '宗海', '自然幢', '多幢', '构筑物', '林权', '户'] 160 bdclxList: ['', '宗地', '宗海', '自然幢', '多幢', '构筑物', '林权', '户']
161 }; 161 };
162 }, 162 },
...@@ -181,10 +181,4 @@ ...@@ -181,10 +181,4 @@
181 181
182 <style lang="scss" scoped> 182 <style lang="scss" scoped>
183 @import "./tablestyle.scss"; 183 @import "./tablestyle.scss";
184 .zdxx {
185 width: 100%;
186 height: 100%;
187 background-color: #f5f5f5;
188 padding: 5px;
189 }
190 </style> 184 </style>
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
4 --> 4 -->
5 <template> 5 <template>
6 <div class='spyj loadingtext'> 6 <div class='spyj loadingtext'>
7 <div class="box">
7 <b class="spyj_title">审批表</b> 8 <b class="spyj_title">审批表</b>
8 <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="120px"> 9 <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="120px">
9 <div class="spyj_form" v-for="(item, index) in tableData" :key="index"> 10 <div class="spyj_form" v-for="(item, index) in tableData" :key="index">
...@@ -25,12 +26,12 @@ ...@@ -25,12 +26,12 @@
25 </el-row> 26 </el-row>
26 <el-row> 27 <el-row>
27 <el-col :span="16"> 28 <el-col :span="16">
28 <el-form-item label="审查人:" prop="shryxm"> 29 <el-form-item label="审查人" prop="shryxm">
29 {{ item.shryxm }} 30 {{ item.shryxm }}
30 </el-form-item> 31 </el-form-item>
31 </el-col> 32 </el-col>
32 <el-col :span="8"> 33 <el-col :span="8">
33 <el-form-item label="审核时间:" prop="shjssj" :key="refresh"> 34 <el-form-item label="审核时间" prop="shjssj" :key="refresh">
34 {{ item.shjssj }} 35 {{ item.shjssj }}
35 </el-form-item> 36 </el-form-item>
36 </el-col> 37 </el-col>
...@@ -41,16 +42,17 @@ ...@@ -41,16 +42,17 @@
41 <el-button type="primary" @click="onSubmit">保存</el-button> 42 <el-button type="primary" @click="onSubmit">保存</el-button>
42 </div> 43 </div>
43 </el-form> 44 </el-form>
45 </div>
44 <el-empty v-if="isNoData" description="暂无数据"></el-empty> 46 <el-empty v-if="isNoData" description="暂无数据"></el-empty>
45 <commonDialog v-model="commonDialog" /> 47 <commonDialog v-model="commonDialog" />
46 </div> 48 </div>
47 </template> 49 </template>
48 <script> 50 <script>
49 import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/fqsq.js"; 51 import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/fqsq.js";
50 import { popupDialog } from "@/utils/popup.js"; 52 import { popupDialog } from "@/utils/popup.js";
51 import commonDialog from "./commonOpinion.vue"; 53 import commonDialog from "./commonOpinion.vue";
52 import { mapGetters } from 'vuex' 54 import { mapGetters } from 'vuex'
53 export default { 55 export default {
54 components: { commonDialog }, 56 components: { commonDialog },
55 props: { 57 props: {
56 }, 58 },
...@@ -128,20 +130,36 @@ export default { ...@@ -128,20 +130,36 @@ export default {
128 this.ruleForm.shyj = opinion 130 this.ruleForm.shyj = opinion
129 } 131 }
130 } 132 }
131 } 133 }
132 </script> 134 </script>
133 <style scoped lang='scss'> 135 <style scoped lang='scss'>
134 @import '~@/styles/mixin.scss'; 136 @import "~@/styles/mixin.scss";
135
136 .spyj {
137 margin-left: 5px;
138 height: 400px;
139 137
138 .spyj {
139 width: 100%;
140 height: 100%;
141 background-color: #f5f5f5;
142 padding: 5px;
143 .box {
144 overflow-x: auto;
145 width: 100%;
146 height: 95%;
147 background: #fff;
148 text-align: center;
149 padding: 4px;
150 overflow-y: scroll;
151 padding-top: 20px;
152 padding: 20px 40px;
153 }
140 .spyj_title { 154 .spyj_title {
155 line-height: 68px;
156 border: 1px solid $borderColor;
141 text-align: center; 157 text-align: center;
142 font-size: 18px; 158 font-size: 22px;
159 font-weight: 400;
160 background-color: #eceef2;
143 display: block; 161 display: block;
144 margin: 5px; 162 border-bottom: none;
145 } 163 }
146 164
147 /deep/.el-form-item { 165 /deep/.el-form-item {
...@@ -158,9 +176,12 @@ export default { ...@@ -158,9 +176,12 @@ export default {
158 176
159 .item_left { 177 .item_left {
160 width: 150px; 178 width: 150px;
161 background-color: #F8F8FA; 179 background-color: #f8f8fa;
162 color: #606266; 180 color: #606266;
163 @include flex-center; 181 display: flex;
182 font-size: 14px;
183 text-indent: 80px;
184 align-items: center;
164 border-right: 1px solid $borderColor; 185 border-right: 1px solid $borderColor;
165 } 186 }
166 187
...@@ -169,9 +190,14 @@ export default { ...@@ -169,9 +190,14 @@ export default {
169 width: 100%; 190 width: 100%;
170 191
171 /deep/.el-form-item__label { 192 /deep/.el-form-item__label {
172 background-color: #F8F8FA; 193 background-color: #f8f8fa;
194 }
195 /deep/.el-form-item__content {
196 display: block;
197 text-align: left;
198 padding-left: 15px;
199 text-indent: 10px;
173 } 200 }
174
175 .opinion_item { 201 .opinion_item {
176 /deep/.el-form-item__error { 202 /deep/.el-form-item__error {
177 margin-top: -16px !important; 203 margin-top: -16px !important;
...@@ -183,7 +209,7 @@ export default { ...@@ -183,7 +209,7 @@ export default {
183 209
184 .opinion { 210 .opinion {
185 position: relative; 211 position: relative;
186 font-size: 16px; 212 font-size: 14px;
187 213
188 /deep/.el-textarea__inner { 214 /deep/.el-textarea__inner {
189 border: none; 215 border: none;
...@@ -202,5 +228,5 @@ export default { ...@@ -202,5 +228,5 @@ export default {
202 text-align: center; 228 text-align: center;
203 margin: 15px 0; 229 margin: 15px 0;
204 } 230 }
205 } 231 }
206 </style> 232 </style>
......