f97dde2f by renchao@pashanhoo.com

style:登记原因限制字数

1 parent c024bf2c
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-10 09:34:25 4 * @LastEditTime: 2023-08-16 08:59:32
5 */ 5 */
6 import { getPrintTemplateByCode } from "@/api/print"; 6 import { getPrintTemplateByCode } from "@/api/print";
7 import { uploadUndo } from "@/api/clxx"; 7 import { uploadUndo } from "@/api/clxx";
......
...@@ -253,7 +253,7 @@ ...@@ -253,7 +253,7 @@
253 </el-input> 253 </el-input>
254 </el-form-item> 254 </el-form-item>
255 <el-form-item v-else label="登记原因:" prop="djyy"> 255 <el-form-item v-else label="登记原因:" prop="djyy">
256 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 256 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
257 v-model="ruleForm.diyaq.djyy"> 257 v-model="ruleForm.diyaq.djyy">
258 </el-input> 258 </el-input>
259 </el-form-item> 259 </el-form-item>
......
1 <!-- 1 <!--
2 * @Description: 房屋多幢受理信息 2 * @Description: 房屋多幢受理信息
3 * @Autor: ssq 3 * @Autor: ssq
4 * @LastEditTime: 2023-08-14 13:02:34 4 * @LastEditTime: 2023-08-16 09:06:00
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
164 <el-row :gutter="10"> 164 <el-row :gutter="10">
165 <el-col> 165 <el-col>
166 <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy"> 166 <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy">
167 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 167 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
168 v-model="ruleForm.fdcq1.djyy"> 168 v-model="ruleForm.fdcq1.djyy">
169 </el-input> 169 </el-input>
170 </el-form-item> 170 </el-form-item>
......
...@@ -67,12 +67,12 @@ ...@@ -67,12 +67,12 @@
67 </el-form-item> 67 </el-form-item>
68 </el-col> 68 </el-col>
69 </el-row> 69 </el-row>
70 <el-row :gutter="10" v-if="ruleForm.fdcq2"> 70 <el-row :gutter="10" v-if="ruleForm.fdcq2">
71 <el-col :span="8"> 71 <el-col :span="8">
72 <el-form-item label="宗地面积:"> 72 <el-form-item label="宗地面积:">
73 <div class="flex"> 73 <div class="flex">
74 <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> 74 <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input>
75 <el-select 75 <el-select
76 disabled 76 disabled
77 v-model="ruleForm.zdjbxx.mjdw" 77 v-model="ruleForm.zdjbxx.mjdw"
78 style="width: 20%"> 78 style="width: 20%">
...@@ -83,16 +83,16 @@ ...@@ -83,16 +83,16 @@
83 :value="item.dcode"> 83 :value="item.dcode">
84 </el-option> 84 </el-option>
85 </el-select> 85 </el-select>
86 </div> 86 </div>
87 </el-form-item> 87 </el-form-item>
88 </el-col> 88 </el-col>
89 <el-col :span="8"> 89 <el-col :span="8">
90 <el-form-item label="土地使用权人:"> 90 <el-form-item label="土地使用权人:">
91 <el-input disabled v-model="ruleForm.fdcq2.tdsyqr"></el-input> 91 <el-input disabled v-model="ruleForm.fdcq2.tdsyqr"></el-input>
92 </el-form-item> 92 </el-form-item>
93 </el-col> 93 </el-col>
94 <el-col :span="8"> 94 <el-col :span="8">
95 <el-form-item label="土地性质:"> 95 <el-form-item label="土地性质:">
96 <el-select v-model="ruleForm.fdcq2.tdxz"> 96 <el-select v-model="ruleForm.fdcq2.tdxz">
97 <el-option 97 <el-option
98 v-for="item in dictData['A9']" 98 v-for="item in dictData['A9']"
...@@ -105,10 +105,10 @@ ...@@ -105,10 +105,10 @@
105 </el-col> 105 </el-col>
106 </el-row> 106 </el-row>
107 <el-row :gutter="10" v-if="ruleForm.qlxx"> 107 <el-row :gutter="10" v-if="ruleForm.qlxx">
108 <el-col :span="8"> 108 <el-col :span="8">
109 <el-form-item label="独用土地面积:"> 109 <el-form-item label="独用土地面积:">
110 <div class="flex"> 110 <div class="flex">
111 <el-input v-model="ruleForm.fdcq2.dytdmj" 111 <el-input v-model="ruleForm.fdcq2.dytdmj"
112 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 112 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
113 <el-select 113 <el-select
114 disabled 114 disabled
...@@ -124,10 +124,10 @@ ...@@ -124,10 +124,10 @@
124 </div> 124 </div>
125 </el-form-item> 125 </el-form-item>
126 </el-col> 126 </el-col>
127 <el-col :span="8"> 127 <el-col :span="8">
128 <el-form-item label="分摊土地面积:"> 128 <el-form-item label="分摊土地面积:">
129 <div class="flex"> 129 <div class="flex">
130 <el-input v-model="ruleForm.fdcq2.fttdmj" 130 <el-input v-model="ruleForm.fdcq2.fttdmj"
131 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 131 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
132 <el-select 132 <el-select
133 disabled 133 disabled
...@@ -156,10 +156,10 @@ ...@@ -156,10 +156,10 @@
156 </el-form-item> 156 </el-form-item>
157 </el-col> 157 </el-col>
158 </el-row> 158 </el-row>
159 <el-row :gutter="10" v-if="ruleForm.qlxx"> 159 <el-row :gutter="10" v-if="ruleForm.qlxx">
160 <el-col :span="8"> 160 <el-col :span="8">
161 <el-form-item label="房屋用途:"> 161 <el-form-item label="房屋用途:">
162 <el-select v-model="ruleForm.fdcq2.ghyt"> 162 <el-select v-model="ruleForm.fdcq2.ghyt">
163 <el-option 163 <el-option
164 v-for="item in dictData['A17']" 164 v-for="item in dictData['A17']"
165 :key="item.dcode" 165 :key="item.dcode"
...@@ -169,9 +169,9 @@ ...@@ -169,9 +169,9 @@
169 </el-select> 169 </el-select>
170 </el-form-item> 170 </el-form-item>
171 </el-col> 171 </el-col>
172 <el-col :span="8"> 172 <el-col :span="8">
173 <el-form-item label="房屋结构:"> 173 <el-form-item label="房屋结构:">
174 <el-select v-model="ruleForm.fdcq2.fwjg"> 174 <el-select v-model="ruleForm.fdcq2.fwjg">
175 <el-option 175 <el-option
176 v-for="item in dictData['A46']" 176 v-for="item in dictData['A46']"
177 :key="item.dcode" 177 :key="item.dcode"
...@@ -184,7 +184,7 @@ ...@@ -184,7 +184,7 @@
184 <el-col :span="8"> 184 <el-col :span="8">
185 <el-form-item label="竣工时间:"> 185 <el-form-item label="竣工时间:">
186 <!-- <el-input v-model="ruleForm.fdcq2.jgsj"></el-input> --> 186 <!-- <el-input v-model="ruleForm.fdcq2.jgsj"></el-input> -->
187 <el-date-picker 187 <el-date-picker
188 v-model="ruleForm.fdcq2.jgsj" 188 v-model="ruleForm.fdcq2.jgsj"
189 class="width100" 189 class="width100"
190 type="date" 190 type="date"
...@@ -192,9 +192,9 @@ ...@@ -192,9 +192,9 @@
192 value-format="yyyy-MM-dd" 192 value-format="yyyy-MM-dd"
193 :disabled="!ableOperation || ableEdit || isJfOperation"></el-date-picker> 193 :disabled="!ableOperation || ableEdit || isJfOperation"></el-date-picker>
194 </el-form-item> 194 </el-form-item>
195 </el-col> 195 </el-col>
196 </el-row> 196 </el-row>
197 <el-row :gutter="10" v-if="ruleForm.qlxx"> 197 <el-row :gutter="10" v-if="ruleForm.qlxx">
198 <el-col :span="8"> 198 <el-col :span="8">
199 <el-form-item label="所在层:"> 199 <el-form-item label="所在层:">
200 <el-input v-model="ruleForm.fdcq2.szc"></el-input> 200 <el-input v-model="ruleForm.fdcq2.szc"></el-input>
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
205 <el-input v-model="ruleForm.fdcq2.zcs"></el-input> 205 <el-input v-model="ruleForm.fdcq2.zcs"></el-input>
206 </el-form-item> 206 </el-form-item>
207 </el-col> 207 </el-col>
208 <el-col :span="8"> 208 <el-col :span="8">
209 <el-form-item label="房地产交易价格:"> 209 <el-form-item label="房地产交易价格:">
210 <div class="flex"> 210 <div class="flex">
211 <el-input 211 <el-input
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
224 </el-form-item> 224 </el-form-item>
225 </el-col> 225 </el-col>
226 </el-row> 226 </el-row>
227 <el-row :gutter="10" v-if="ruleForm.fdcq2"> 227 <el-row :gutter="10" v-if="ruleForm.fdcq2">
228 <el-col :span="8"> 228 <el-col :span="8">
229 <el-form-item label="建筑面积:"> 229 <el-form-item label="建筑面积:">
230 <div class="flex"> 230 <div class="flex">
...@@ -263,7 +263,7 @@ ...@@ -263,7 +263,7 @@
263 </div> 263 </div>
264 </el-form-item> 264 </el-form-item>
265 </el-col> 265 </el-col>
266 <el-col :span="8"> 266 <el-col :span="8">
267 <el-form-item label="分摊建筑面积:"> 267 <el-form-item label="分摊建筑面积:">
268 <div class="flex"> 268 <div class="flex">
269 <el-input v-model="ruleForm.fdcq2.ftjzmj" 269 <el-input v-model="ruleForm.fdcq2.ftjzmj"
...@@ -284,9 +284,7 @@ ...@@ -284,9 +284,7 @@
284 </el-col> 284 </el-col>
285 </el-row> 285 </el-row>
286 <el-row :gutter="10"> 286 <el-row :gutter="10">
287 287
288
289
290 </el-row> 288 </el-row>
291 <div class="slxx_title title-block"> 289 <div class="slxx_title title-block">
292 土地用途 290 土地用途
...@@ -358,7 +356,7 @@ ...@@ -358,7 +356,7 @@
358 <el-row :gutter="10"> 356 <el-row :gutter="10">
359 <el-col> 357 <el-col>
360 <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy"> 358 <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy">
361 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 359 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
362 v-model="ruleForm.fdcq2.djyy"> 360 v-model="ruleForm.fdcq2.djyy">
363 </el-input> 361 </el-input>
364 </el-form-item> 362 </el-form-item>
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-14 12:58:13 4 * @LastEditTime: 2023-08-16 09:06:05
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
239 <el-row :gutter="10"> 239 <el-row :gutter="10">
240 <el-col> 240 <el-col>
241 <el-form-item v-if="ruleForm.fdcq2" label="登记原因:" prop="djyy"> 241 <el-form-item v-if="ruleForm.fdcq2" label="登记原因:" prop="djyy">
242 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 242 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
243 v-model="ruleForm.fdcq2.djyy"> 243 v-model="ruleForm.fdcq2.djyy">
244 </el-input> 244 </el-input>
245 </el-form-item> 245 </el-form-item>
......
...@@ -11,8 +11,7 @@ ...@@ -11,8 +11,7 @@
11 ref="ruleForm" 11 ref="ruleForm"
12 :label-position="flag ? 'top' : ''" 12 :label-position="flag ? 'top' : ''"
13 :inline="flag" 13 :inline="flag"
14 label-width="130px" 14 label-width="130px">
15 >
16 <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> 15 <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''">
17 <div class="slxx_title title-block"> 16 <div class="slxx_title title-block">
18 受理信息 17 受理信息
...@@ -40,16 +39,14 @@ ...@@ -40,16 +39,14 @@
40 <el-form-item label="权利类型:"> 39 <el-form-item label="权利类型:">
41 <el-input 40 <el-input
42 disabled 41 disabled
43 v-model="ruleForm.sldyList[0].qllxmc" 42 v-model="ruleForm.sldyList[0].qllxmc"></el-input>
44 ></el-input>
45 </el-form-item> 43 </el-form-item>
46 </el-col> 44 </el-col>
47 <el-col :span="8" v-if="ruleForm.sldyList.length > 0"> 45 <el-col :span="8" v-if="ruleForm.sldyList.length > 0">
48 <el-form-item label="登记类型:"> 46 <el-form-item label="登记类型:">
49 <el-input 47 <el-input
50 disabled 48 disabled
51 v-model="ruleForm.sldyList[0].djlxmc" 49 v-model="ruleForm.sldyList[0].djlxmc"></el-input>
52 ></el-input>
53 </el-form-item> 50 </el-form-item>
54 </el-col> 51 </el-col>
55 <el-col :span="8"> 52 <el-col :span="8">
...@@ -116,8 +113,7 @@ ...@@ -116,8 +113,7 @@
116 <el-radio-group 113 <el-radio-group
117 :disabled="!ableOperation" 114 :disabled="!ableOperation"
118 @change="showCZInfo" 115 @change="showCZInfo"
119 v-model="ruleForm.sldyList[0].gyfs" 116 v-model="ruleForm.sldyList[0].gyfs">
120 >
121 <el-radio label="0">单独所有</el-radio> 117 <el-radio label="0">单独所有</el-radio>
122 <el-radio label="1">共同共有</el-radio> 118 <el-radio label="1">共同共有</el-radio>
123 <el-radio label="2">按份所有</el-radio> 119 <el-radio label="2">按份所有</el-radio>
...@@ -157,8 +153,7 @@ ...@@ -157,8 +153,7 @@
157 <qlrCommonTable 153 <qlrCommonTable
158 @upDateQlrxxList="upDateQlrxxList" 154 @upDateQlrxxList="upDateQlrxxList"
159 :tableData="ruleForm.qlrList" 155 :tableData="ruleForm.qlrList"
160 :gyfs="ruleForm.sldyList[0].gyfs" 156 :gyfs="ruleForm.sldyList[0].gyfs" />
161 />
162 <div class="slxx_title title-block"> 157 <div class="slxx_title title-block">
163 登记原因 158 登记原因
164 <div class="triangle"></div> 159 <div class="triangle"></div>
...@@ -169,9 +164,9 @@ ...@@ -169,9 +164,9 @@
169 <el-input 164 <el-input
170 class="textArea" 165 class="textArea"
171 type="textarea" 166 type="textarea"
167 maxlength="500"
172 :disabled="!ableOperation" 168 :disabled="!ableOperation"
173 v-model="ruleForm.fdcq2List[0].djyy" 169 v-model="ruleForm.fdcq2List[0].djyy">
174 >
175 </el-input> 170 </el-input>
176 </el-form-item> 171 </el-form-item>
177 </el-col> 172 </el-col>
...@@ -192,10 +187,10 @@ ...@@ -192,10 +187,10 @@
192 import { mapGetters } from "vuex"; 187 import { mapGetters } from "vuex";
193 export default { 188 export default {
194 mixins: [ywmix], 189 mixins: [ywmix],
195 computed: { 190 computed: {
196 ...mapGetters(["dictData", "flag"]), 191 ...mapGetters(["dictData", "flag"]),
197 }, 192 },
198 components: { qlrCommonTable}, 193 components: { qlrCommonTable },
199 194
200 // 更新义务人信息 195 // 更新义务人信息
201 /** 196 /**
...@@ -203,7 +198,7 @@ ...@@ -203,7 +198,7 @@
203 * @param {*} val 198 * @param {*} val
204 * @author: renchao 199 * @author: renchao
205 */ 200 */
206 upDateYwrxxList(val) { 201 upDateYwrxxList (val) {
207 this.ruleForm.ywrList = _.cloneDeep(val); 202 this.ruleForm.ywrList = _.cloneDeep(val);
208 }, 203 },
209 data () { 204 data () {
...@@ -231,7 +226,7 @@ ...@@ -231,7 +226,7 @@
231 //表单是否可操作 226 //表单是否可操作
232 ableOperation: true, 227 ableOperation: true,
233 rules: {}, 228 rules: {},
234 gyfs:"", 229 gyfs: "",
235 bsmSlsq: this.$route.query.bsmSlsq,//受理申请标识码 230 bsmSlsq: this.$route.query.bsmSlsq,//受理申请标识码
236 splicingFdcq2: {//前端根据后台数组组装展示内容 231 splicingFdcq2: {//前端根据后台数组组装展示内容
237 fwxz: ''//房屋性质 232 fwxz: ''//房屋性质
...@@ -241,7 +236,7 @@ ...@@ -241,7 +236,7 @@
241 } 236 }
242 } 237 }
243 }, 238 },
244 mounted (callbackfn, thisArg) { 239 mounted (callbackfn, thisArg) {
245 this.ableOperation = this.$parent.currentSelectTab.ableOperation 240 this.ableOperation = this.$parent.currentSelectTab.ableOperation
246 this.propsParam = this.$attrs; 241 this.propsParam = this.$attrs;
247 var formdata = new FormData(); 242 var formdata = new FormData();
...@@ -253,7 +248,7 @@ ...@@ -253,7 +248,7 @@
253 if (res.code == 200) { 248 if (res.code == 200) {
254 this.ruleForm = res.result; 249 this.ruleForm = res.result;
255 this.czrOptions = this.ruleForm.qlrList; 250 this.czrOptions = this.ruleForm.qlrList;
256 this.gyfs=this.ruleForm.sldyList[0].gyfs 251 this.gyfs = this.ruleForm.sldyList[0].gyfs
257 this.splicingFdcq2Info(); 252 this.splicingFdcq2Info();
258 } 253 }
259 }) 254 })
...@@ -315,25 +310,25 @@ ...@@ -315,25 +310,25 @@
315 * @author: renchao 310 * @author: renchao
316 */ 311 */
317 onSubmit () { 312 onSubmit () {
318 if (this.ruleForm.sldyList[0].gyfs== "0") { 313 if (this.ruleForm.sldyList[0].gyfs == "0") {
319 if (this.ruleForm.qlrList.length > 1) { 314 if (this.ruleForm.qlrList.length > 1) {
320 this.$message({ 315 this.$message({
321 showClose: true, 316 showClose: true,
322 message: "共有方式:单独所有,权利人只能是一个人", 317 message: "共有方式:单独所有,权利人只能是一个人",
323 type: "error", 318 type: "error",
324 }); 319 });
325 return false; 320 return false;
326 } 321 }
327 } else { 322 } else {
328 if (this.ruleForm.qlrList.length <= 1) { 323 if (this.ruleForm.qlrList.length <= 1) {
329 this.$message({ 324 this.$message({
330 showClose: true, 325 showClose: true,
331 message: "共有方式:共同所有,按份所有,其他所有,权利人必须是两个以上", 326 message: "共有方式:共同所有,按份所有,其他所有,权利人必须是两个以上",
332 type: "error", 327 type: "error",
333 }); 328 });
334 return false; 329 return false;
335 } 330 }
336 } 331 }
337 saveBatchData(this.ruleForm).then((res) => { 332 saveBatchData(this.ruleForm).then((res) => {
338 if (res.code === 200) { 333 if (res.code === 200) {
339 this.$message({ 334 this.$message({
...@@ -355,77 +350,77 @@ ...@@ -355,77 +350,77 @@
355 } 350 }
356 </script> 351 </script>
357 <style scoped lang="scss"> 352 <style scoped lang="scss">
358 @import "~@/styles/public.scss"; 353 @import "~@/styles/public.scss";
359 354
360 /deep/.el-form { 355 /deep/.el-form {
361 display: flex; 356 display: flex;
362 flex-direction: column; 357 flex-direction: column;
363 height: calc(100vh - 130px); 358 height: calc(100vh - 130px);
364 } 359 }
365 360
366 /deep/.el-form-item__label { 361 /deep/.el-form-item__label {
367 padding: 0; 362 padding: 0;
368 } 363 }
369 364
370 /deep/.el-radio { 365 /deep/.el-radio {
371 margin-right: 10px; 366 margin-right: 10px;
372 } 367 }
373 368
374 /deep/.el-select { 369 /deep/.el-select {
375 width: 100%; 370 width: 100%;
376 } 371 }
377 372
378 /deep/.el-form-item { 373 /deep/.el-form-item {
379 margin-bottom: 8px; 374 margin-bottom: 8px;
380 } 375 }
381 376
382 .marginBot0 { 377 .marginBot0 {
383 margin-bottom: 0 !important; 378 margin-bottom: 0 !important;
384 } 379 }
385 380
386 .slxx { 381 .slxx {
387 box-sizing: border-box; 382 box-sizing: border-box;
388 } 383 }
389 384
390 .slxx_con { 385 .slxx_con {
391 flex: 1; 386 flex: 1;
392 height: 100%; 387 height: 100%;
393 background-color: #ffffff; 388 background-color: #ffffff;
394 overflow-y: auto; 389 overflow-y: auto;
395 padding-right: 3px; 390 padding-right: 3px;
396 overflow-x: hidden; 391 overflow-x: hidden;
397 } 392 }
398 393
399 .submit_btn { 394 .submit_btn {
400 height: 50px; 395 height: 50px;
401 } 396 }
402 397
403 .slxx_title { 398 .slxx_title {
404 border-bottom: 1px solid $borderColor; 399 border-bottom: 1px solid $borderColor;
405 padding-left: 10px; 400 padding-left: 10px;
406 padding-bottom: 5px; 401 padding-bottom: 5px;
407 margin-bottom: 10px; 402 margin-bottom: 10px;
408 margin-top: 5px; 403 margin-top: 5px;
409 font-size: 16px; 404 font-size: 16px;
410 font-weight: 500; 405 font-weight: 500;
411 color: #4a4a4a; 406 color: #4a4a4a;
412 } 407 }
413 408
414 .btn { 409 .btn {
415 text-align: center; 410 text-align: center;
416 padding-top: 10px; 411 padding-top: 10px;
417 height: 36px; 412 height: 36px;
418 background-color: #ffffff; 413 background-color: #ffffff;
419 padding: 5px 0; 414 padding: 5px 0;
420 } 415 }
421 416
422 .textArea { 417 .textArea {
423 /deep/.el-textarea__inner { 418 /deep/.el-textarea__inner {
424 min-height: 90px !important; 419 min-height: 90px !important;
420 }
425 } 421 }
426 }
427 422
428 /deep/.el-form-item__label { 423 /deep/.el-form-item__label {
429 padding-bottom: 0px; 424 padding-bottom: 0px;
430 } 425 }
431 </style> 426 </style>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-14 13:03:32 4 * @LastEditTime: 2023-08-16 09:06:15
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
171 <el-row :gutter="10"> 171 <el-row :gutter="10">
172 <el-col> 172 <el-col>
173 <el-form-item label="登记原因:" prop="djyy"> 173 <el-form-item label="登记原因:" prop="djyy">
174 <el-input class="textArea" type="textarea" :disabled="!ableOperation" v-model="ruleForm.djyy"> 174 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation" v-model="ruleForm.djyy">
175 </el-input> 175 </el-input>
176 </el-form-item> 176 </el-form-item>
177 </el-col> 177 </el-col>
......
...@@ -207,7 +207,7 @@ ...@@ -207,7 +207,7 @@
207 <el-row :gutter="10"> 207 <el-row :gutter="10">
208 <el-col> 208 <el-col>
209 <el-form-item label="登记原因:" prop="djyy"> 209 <el-form-item label="登记原因:" prop="djyy">
210 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 210 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
211 v-model="ruleForm.jsydsyq.djyy"> 211 v-model="ruleForm.jsydsyq.djyy">
212 </el-input> 212 </el-input>
213 </el-form-item> 213 </el-form-item>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 <!-- 2 <!--
3 * @Description: 3 * @Description:
4 * @Autor: renchao 4 * @Autor: renchao
5 * @LastEditTime: 2023-08-14 12:54:53 5 * @LastEditTime: 2023-08-16 09:06:23
6 --> 6 -->
7 <template> 7 <template>
8 <!-- 受理信息 --> 8 <!-- 受理信息 -->
...@@ -198,6 +198,7 @@ ...@@ -198,6 +198,7 @@
198 <el-input 198 <el-input
199 class="textArea" 199 class="textArea"
200 type="textarea" 200 type="textarea"
201 maxlength="500"
201 :disabled="!ableOperation" 202 :disabled="!ableOperation"
202 v-model="ruleForm.jsydsyq.djyy"> 203 v-model="ruleForm.jsydsyq.djyy">
203 </el-input> 204 </el-input>
......
1 <!-- 1 <!--
2 * @Description: 房屋多幢受理信息 2 * @Description: 房屋多幢受理信息
3 * @Autor: ssq 3 * @Autor: ssq
4 * @LastEditTime: 2023-08-15 10:24:21 4 * @LastEditTime: 2023-08-16 09:06:27
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -227,6 +227,7 @@ ...@@ -227,6 +227,7 @@
227 <el-input 227 <el-input
228 class="textArea" 228 class="textArea"
229 type="textarea" 229 type="textarea"
230 maxlength="500"
230 :disabled="!ableOperation" 231 :disabled="!ableOperation"
231 v-model="ruleForm.lq.djyy"> 232 v-model="ruleForm.lq.djyy">
232 </el-input> 233 </el-input>
......
...@@ -225,7 +225,7 @@ ...@@ -225,7 +225,7 @@
225 <el-row :gutter="10"> 225 <el-row :gutter="10">
226 <el-col> 226 <el-col>
227 <el-form-item label="登记原因:" prop="djyy"> 227 <el-form-item label="登记原因:" prop="djyy">
228 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 228 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
229 v-model="ruleForm.nydsyq.djyy"> 229 v-model="ruleForm.nydsyq.djyy">
230 </el-input> 230 </el-input>
231 </el-form-item> 231 </el-form-item>
......
...@@ -230,7 +230,7 @@ ...@@ -230,7 +230,7 @@
230 <el-row :gutter="10"> 230 <el-row :gutter="10">
231 <el-col> 231 <el-col>
232 <el-form-item label="登记原因:" prop="djyy"> 232 <el-form-item label="登记原因:" prop="djyy">
233 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 233 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
234 v-model="ruleForm.nydsyq.djyy"> 234 v-model="ruleForm.nydsyq.djyy">
235 </el-input> 235 </el-input>
236 </el-form-item> 236 </el-form-item>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-14 13:06:03 4 * @LastEditTime: 2023-08-16 09:06:39
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -321,6 +321,7 @@ ...@@ -321,6 +321,7 @@
321 <el-form-item label="登记原因:" prop="djyy"> 321 <el-form-item label="登记原因:" prop="djyy">
322 <el-input 322 <el-input
323 class="textArea" 323 class="textArea"
324 maxlength="500"
324 type="textarea" 325 type="textarea"
325 :disabled="!ableOperation" 326 :disabled="!ableOperation"
326 v-model="ruleForm.tdsyq.djyy"> 327 v-model="ruleForm.tdsyq.djyy">
......
...@@ -196,7 +196,7 @@ ...@@ -196,7 +196,7 @@
196 <el-row :gutter="10"> 196 <el-row :gutter="10">
197 <el-col> 197 <el-col>
198 <el-form-item label="登记原因:" prop="djyy"> 198 <el-form-item label="登记原因:" prop="djyy">
199 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 199 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
200 v-model="ruleForm.ygdj.djyy"> 200 v-model="ruleForm.ygdj.djyy">
201 </el-input> 201 </el-input>
202 </el-form-item> 202 </el-form-item>
......
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
164 <el-row :gutter="10"> 164 <el-row :gutter="10">
165 <el-col> 165 <el-col>
166 <el-form-item label="登记原因:" prop="djyy"> 166 <el-form-item label="登记原因:" prop="djyy">
167 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 167 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
168 v-model="ruleForm.ygdj.djyy"> 168 v-model="ruleForm.ygdj.djyy">
169 </el-input> 169 </el-input>
170 </el-form-item> 170 </el-form-item>
......
...@@ -225,7 +225,7 @@ ...@@ -225,7 +225,7 @@
225 <el-row :gutter="10"> 225 <el-row :gutter="10">
226 <el-col> 226 <el-col>
227 <el-form-item label="登记原因:" prop="djyy"> 227 <el-form-item label="登记原因:" prop="djyy">
228 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 228 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
229 v-model="ruleForm.ygdj.djyy"> 229 v-model="ruleForm.ygdj.djyy">
230 </el-input> 230 </el-input>
231 </el-form-item> 231 </el-form-item>
......
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
189 </el-input> 189 </el-input>
190 </el-form-item> 190 </el-form-item>
191 <el-form-item v-else label="登记原因:" prop="djyy"> 191 <el-form-item v-else label="登记原因:" prop="djyy">
192 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 192 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation"
193 v-model="ruleForm.diyaqList[0].djyy"> 193 v-model="ruleForm.diyaqList[0].djyy">
194 </el-input> 194 </el-input>
195 </el-form-item> 195 </el-form-item>
......
...@@ -243,7 +243,7 @@ ...@@ -243,7 +243,7 @@
243 </el-input> 243 </el-input>
244 </el-form-item> 244 </el-form-item>
245 <el-form-item v-else label="登记原因:" prop="djyy"> 245 <el-form-item v-else label="登记原因:" prop="djyy">
246 <el-input class="textArea" type="textarea" :disabled="!ableOperation " 246 <el-input class="textArea" type="textarea" maxlength="500" :disabled="!ableOperation "
247 v-model="ruleForm.diyaq.djyy"> 247 v-model="ruleForm.diyaq.djyy">
248 </el-input> 248 </el-input>
249 </el-form-item> 249 </el-form-item>
......