24d2334a by tianhaohao@pashanhoo.com

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev

2 parents b2c90e47 8ae3aec1
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 /* 2 /*
3 * @Description: 此文件主要创建 axios 实例,然后添加请求拦截器和响应拦截器 3 * @Description: 此文件主要创建 axios 实例,然后添加请求拦截器和响应拦截器
4 * @Autor: renchao 4 * @Autor: renchao
5 * @LastEditTime: 2023-07-21 10:30:53 5 * @LastEditTime: 2023-08-16 15:16:49
6 */ 6 */
7 import axios from 'axios' 7 import axios from 'axios'
8 import Router from '@/router' 8 import Router from '@/router'
...@@ -54,10 +54,10 @@ service.interceptors.response.use( ...@@ -54,10 +54,10 @@ service.interceptors.response.use(
54 */ 54 */
55 if (response.status == 200) { 55 if (response.status == 200) {
56 return response.data; 56 return response.data;
57 }else if (response.status == 2002){ 57 } else if (response.status == 2002) {
58 Message.error(response.message); 58 Message.error(response.message);
59 }else { 59 } else {
60 handleErrorData(response.data); 60 handleErrorData(response.status);
61 } 61 }
62 return response; 62 return response;
63 }, 63 },
...@@ -97,26 +97,22 @@ service.interceptors.response.use( ...@@ -97,26 +97,22 @@ service.interceptors.response.use(
97 ) 97 )
98 //对错误信息的处理函数 98 //对错误信息的处理函数
99 function handleErrorData (errMes) { 99 function handleErrorData (errMes) {
100 if (errMes.message) { 100 switch (errMes) {
101 Message.error(errMes.message); 101 case 401:
102 } else { 102 Message.error("未授权,请重新登录!");
103 switch (errMes.code) { 103 break;
104 case 401: 104 case 403:
105 Message.error("未授权,请重新登录!"); 105 Message.error("拒绝访问");
106 break; 106 break;
107 case 403: 107 case 404:
108 Message.error("拒绝访问"); 108 Message.error("很抱歉,资源未找到!");
109 break; 109 break;
110 case 404: 110 case 500:
111 Message.error("很抱歉,资源未找到!"); 111 Message.error("服务器错误!");
112 break; 112 break;
113 case 500: 113 default:
114 Message.error("服务器错误!"); 114 Message.error("服务正在联调中,请稍后!");
115 break; 115 break;
116 default:
117 Message.error("服务正在联调中,请稍后!");
118 break;
119 }
120 } 116 }
121 } 117 }
122 export default service 118 export default service
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 11:14:21 4 * @LastEditTime: 2023-08-16 16:31:07
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -475,7 +475,7 @@ ...@@ -475,7 +475,7 @@
475 <el-form-item label="共有方式:"> 475 <el-form-item label="共有方式:">
476 <el-radio-group 476 <el-radio-group
477 :disabled="!ableOperation" 477 :disabled="!ableOperation"
478 v-model="ruleForm.qlxx.gyfs"> 478 v-model="ruleForm.sldy.gyfs">
479 <el-radio label="0">单独所有</el-radio> 479 <el-radio label="0">单独所有</el-radio>
480 <el-radio label="1">共同共有</el-radio> 480 <el-radio label="1">共同共有</el-radio>
481 <el-radio label="2">按份所有</el-radio> 481 <el-radio label="2">按份所有</el-radio>
...@@ -488,8 +488,8 @@ ...@@ -488,8 +488,8 @@
488 :tableData="ruleForm.qlrData" 488 :tableData="ruleForm.qlrData"
489 @upDateQlrxxList="upDateQlrxxList" 489 @upDateQlrxxList="upDateQlrxxList"
490 :key="key" 490 :key="key"
491 :ableOperation="ableOperation" 491 :disabled="ableOperation"
492 :gyfs="ruleForm.qlxx.gyfs" /> 492 :gyfs="ruleForm.sldy.gyfs" />
493 493
494 <div v-if="ruleForm.ywrData"> 494 <div v-if="ruleForm.ywrData">
495 <div class="slxx_title title-block"> 495 <div class="slxx_title title-block">
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-04 16:35:32 4 * @LastEditTime: 2023-08-16 16:11:20
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -15,8 +15,7 @@ ...@@ -15,8 +15,7 @@
15 :label-position="flag ? 'top' : ''" 15 :label-position="flag ? 'top' : ''"
16 :inline="flag" 16 :inline="flag"
17 :show-message="false" 17 :show-message="false"
18 label-width="145px" 18 label-width="145px">
19 >
20 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> 19 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
21 <div class="slxx_title title-block"> 20 <div class="slxx_title title-block">
22 补录信息 21 补录信息
...@@ -162,8 +161,7 @@ ...@@ -162,8 +161,7 @@
162 <el-form-item 161 <el-form-item
163 label="业务号:" 162 label="业务号:"
164 prop="qlxx.ywh" 163 prop="qlxx.ywh"
165 :rules="rules.ywhrules" 164 :rules="rules.ywhrules">
166 >
167 <el-input maxlength="20" v-model="ruleForm.qlxx.ywh" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');"></el-input> 165 <el-input maxlength="20" v-model="ruleForm.qlxx.ywh" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');"></el-input>
168 </el-form-item> 166 </el-form-item>
169 </el-col> 167 </el-col>
...@@ -188,15 +186,13 @@ ...@@ -188,15 +186,13 @@
188 <el-form-item 186 <el-form-item
189 label="登记类型: " 187 label="登记类型: "
190 prop="qlxx.djlx" 188 prop="qlxx.djlx"
191 :rules="rules.djlxrules" 189 :rules="rules.djlxrules">
192 >
193 <el-select v-model="ruleForm.qlxx.djlx" @change="djlxchange"> 190 <el-select v-model="ruleForm.qlxx.djlx" @change="djlxchange">
194 <el-option 191 <el-option
195 v-for="item in djlxlist" 192 v-for="item in djlxlist"
196 :key="item.dcode" 193 :key="item.dcode"
197 :label="item.dname" 194 :label="item.dname"
198 :value="item.dcode" 195 :value="item.dcode">
199 >
200 </el-option> 196 </el-option>
201 </el-select> 197 </el-select>
202 </el-form-item> 198 </el-form-item>
...@@ -210,8 +206,7 @@ ...@@ -210,8 +206,7 @@
210 <el-form-item 206 <el-form-item
211 label="不动产权证号:" 207 label="不动产权证号:"
212 prop="qlxx.bdcqzh" 208 prop="qlxx.bdcqzh"
213 :rules="rules.bdcqzhrules" 209 :rules="rules.bdcqzhrules">
214 >
215 <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input> 210 <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input>
216 </el-form-item> 211 </el-form-item>
217 </el-col> 212 </el-col>
...@@ -224,8 +219,7 @@ ...@@ -224,8 +219,7 @@
224 <el-form-item 219 <el-form-item
225 label="登记机构:" 220 label="登记机构:"
226 prop="qlxx.djjg" 221 prop="qlxx.djjg"
227 :rules="rules.djjgrules" 222 :rules="rules.djjgrules">
228 >
229 <el-input v-model="ruleForm.qlxx.djjg"></el-input> 223 <el-input v-model="ruleForm.qlxx.djjg"></el-input>
230 </el-form-item> 224 </el-form-item>
231 </el-col> 225 </el-col>
...@@ -233,8 +227,7 @@ ...@@ -233,8 +227,7 @@
233 <el-form-item 227 <el-form-item
234 label="登簿人:" 228 label="登簿人:"
235 prop="qlxx.dbr" 229 prop="qlxx.dbr"
236 :rules="rules.dbrrules" 230 :rules="rules.dbrrules">
237 >
238 <el-input v-model="ruleForm.qlxx.dbr"></el-input> 231 <el-input v-model="ruleForm.qlxx.dbr"></el-input>
239 </el-form-item> 232 </el-form-item>
240 </el-col> 233 </el-col>
...@@ -242,16 +235,14 @@ ...@@ -242,16 +235,14 @@
242 <el-form-item 235 <el-form-item
243 label="登记时间:" 236 label="登记时间:"
244 prop="qlxx.djsj" 237 prop="qlxx.djsj"
245 :rules="rules.djsjrules" 238 :rules="rules.djsjrules">
246 >
247 <el-date-picker 239 <el-date-picker
248 v-model="ruleForm.qlxx.djsj" 240 v-model="ruleForm.qlxx.djsj"
249 type="date" 241 type="date"
250 class="width100" 242 class="width100"
251 placeholder="选择日期" 243 placeholder="选择日期"
252 value-format="yyyy-MM-dd HH:mm:ss" 244 value-format="yyyy-MM-dd HH:mm:ss"
253 format="yyyy-MM-dd" 245 format="yyyy-MM-dd">
254 >
255 </el-date-picker> 246 </el-date-picker>
256 </el-form-item> 247 </el-form-item>
257 </el-col> 248 </el-col>
...@@ -262,8 +253,7 @@ ...@@ -262,8 +253,7 @@
262 v-for="item in qsztlist" 253 v-for="item in qsztlist"
263 :key="item.dcode" 254 :key="item.dcode"
264 :label="item.dname" 255 :label="item.dname"
265 :value="item.dcode" 256 :value="item.dcode">
266 >
267 </el-option> 257 </el-option>
268 </el-select> 258 </el-select>
269 </el-form-item> 259 </el-form-item>
...@@ -285,11 +275,8 @@ ...@@ -285,11 +275,8 @@
285 <el-tooltip 275 <el-tooltip
286 content="供役地权利人证件种类:" 276 content="供役地权利人证件种类:"
287 placement="top" 277 placement="top"
288 effect="light" 278 effect="light">
289 > 279 <span type="text" style="color: #444" size="mini">供役地权利人证件...</span>
290 <span type="text" style="color: #444" size="mini"
291 >供役地权利人证件...</span
292 >
293 </el-tooltip> 280 </el-tooltip>
294 </span> 281 </span>
295 <div class="flex"> 282 <div class="flex">
...@@ -298,8 +285,7 @@ ...@@ -298,8 +285,7 @@
298 v-for="item in dictData['A30']" 285 v-for="item in dictData['A30']"
299 :key="item.dcode" 286 :key="item.dcode"
300 :label="item.dname" 287 :label="item.dname"
301 :value="item.dcode" 288 :value="item.dcode"></el-option>
302 ></el-option>
303 </el-select> 289 </el-select>
304 </div> 290 </div>
305 </el-form-item> 291 </el-form-item>
...@@ -330,11 +316,8 @@ ...@@ -330,11 +316,8 @@
330 <el-tooltip 316 <el-tooltip
331 content="需役地权利人证件种类:" 317 content="需役地权利人证件种类:"
332 placement="top" 318 placement="top"
333 effect="light" 319 effect="light">
334 > 320 <span type="text" style="color: #444" size="mini">需役地权利人证件...</span>
335 <span type="text" style="color: #444" size="mini"
336 >需役地权利人证件...</span
337 >
338 </el-tooltip> 321 </el-tooltip>
339 </span> 322 </span>
340 <div class="flex"> 323 <div class="flex">
...@@ -343,8 +326,7 @@ ...@@ -343,8 +326,7 @@
343 v-for="item in dictData['A30']" 326 v-for="item in dictData['A30']"
344 :key="item.dcode" 327 :key="item.dcode"
345 :label="item.dname" 328 :label="item.dname"
346 :value="item.dcode" 329 :value="item.dcode"></el-option>
347 ></el-option>
348 </el-select> 330 </el-select>
349 </div> 331 </div>
350 </el-form-item> 332 </el-form-item>
...@@ -372,8 +354,7 @@ ...@@ -372,8 +354,7 @@
372 type="date" 354 type="date"
373 placeholder="选择日期" 355 placeholder="选择日期"
374 value-format="yyyy-MM-dd HH:mm:ss" 356 value-format="yyyy-MM-dd HH:mm:ss"
375 format="yyyy-MM-dd" 357 format="yyyy-MM-dd">
376 >
377 </el-date-picker> 358 </el-date-picker>
378 </el-form-item> 359 </el-form-item>
379 </el-col> 360 </el-col>
...@@ -385,8 +366,7 @@ ...@@ -385,8 +366,7 @@
385 type="date" 366 type="date"
386 placeholder="选择日期" 367 placeholder="选择日期"
387 value-format="yyyy-MM-dd HH:mm:ss" 368 value-format="yyyy-MM-dd HH:mm:ss"
388 format="yyyy-MM-dd" 369 format="yyyy-MM-dd">
389 >
390 </el-date-picker> 370 </el-date-picker>
391 </el-form-item> 371 </el-form-item>
392 </el-col> 372 </el-col>
...@@ -410,8 +390,7 @@ ...@@ -410,8 +390,7 @@
410 <el-form-item label="共有方式:"> 390 <el-form-item label="共有方式:">
411 <el-radio-group 391 <el-radio-group
412 :disabled="!ableOperation" 392 :disabled="!ableOperation"
413 v-model="ruleForm.qlxx.gyfs" 393 v-model="ruleForm.sldy.gyfs">
414 >
415 <el-radio label="0">单独所有</el-radio> 394 <el-radio label="0">单独所有</el-radio>
416 <el-radio label="1">共同共有</el-radio> 395 <el-radio label="1">共同共有</el-radio>
417 <el-radio label="2">按份所有</el-radio> 396 <el-radio label="2">按份所有</el-radio>
...@@ -424,9 +403,8 @@ ...@@ -424,9 +403,8 @@
424 :tableData="ruleForm.qlrData" 403 :tableData="ruleForm.qlrData"
425 @upDateQlrxxList="upDateQlrxxList" 404 @upDateQlrxxList="upDateQlrxxList"
426 :key="key" 405 :key="key"
427 :ableOperation="ableOperation" 406 :disabled="ableOperation"
428 :gyfs="ruleForm.qlxx.gyfs" 407 :gyfs="ruleForm.sldy.gyfs" />
429 />
430 408
431 <div> 409 <div>
432 <div class="slxx_title title-block"> 410 <div class="slxx_title title-block">
...@@ -437,9 +415,8 @@ ...@@ -437,9 +415,8 @@
437 v-if="ruleForm.ywrData" 415 v-if="ruleForm.ywrData"
438 :tableData="ruleForm.ywrData" 416 :tableData="ruleForm.ywrData"
439 :key="key" 417 :key="key"
440 :ableOperation="ableOperation" 418 :disabled="ableOperation"
441 @upDateQlrxxList="upDateYwrxxList" 419 @upDateQlrxxList="upDateYwrxxList" />
442 />
443 </div> 420 </div>
444 </div> 421 </div>
445 <el-row class="btn" v-if="ableOperation"> 422 <el-row class="btn" v-if="ableOperation">
...@@ -451,38 +428,38 @@ ...@@ -451,38 +428,38 @@
451 </div> 428 </div>
452 </template> 429 </template>
453 <script> 430 <script>
454 import ywmix from "./dataprocessing"; 431 import ywmix from "./dataprocessing";
455 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable"; 432 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable";
456 import ywrCommonTable from "@/views/djbworkflow/components/ywrCommonTable"; 433 import ywrCommonTable from "@/views/djbworkflow/components/ywrCommonTable";
457 import tdytTable from "@/views/workflow/components/tdytTable"; 434 import tdytTable from "@/views/workflow/components/tdytTable";
458 import selectTable from "@/components/selectTable/index.vue"; 435 import selectTable from "@/components/selectTable/index.vue";
459 export default { 436 export default {
460 mixins: [ywmix], 437 mixins: [ywmix],
461 components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, 438 components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable },
462 data() { 439 data () {
463 return { 440 return {
464 //传递参数\ 441 //传递参数\
465 rules: { 442 rules: {
466 ssQlxxrules: [ 443 ssQlxxrules: [
467 { required: true, message: "上手权利信息", trigger: "blur" }, 444 { required: true, message: "上手权利信息", trigger: "blur" },
468 ], 445 ],
469 ztQlxxrules: [ 446 ztQlxxrules: [
470 { required: true, message: "抵押不动产信息", trigger: "blur" }, 447 { required: true, message: "抵押不动产信息", trigger: "blur" },
471 ], 448 ],
472 bdcqzhrules: [ 449 bdcqzhrules: [
473 { required: true, message: "不动产登记证明号", trigger: "blur" }, 450 { required: true, message: "不动产登记证明号", trigger: "blur" },
474 ], 451 ],
475 djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }], 452 djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }],
476 dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], 453 dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }],
477 djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], 454 djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }],
478 djlxrules: [{ required: true, message: "登记类型", trigger: "change" }], 455 djlxrules: [{ required: true, message: "登记类型", trigger: "change" }],
479 ywhrules: [{ required: true, message: "业务号", trigger: "blur" }], 456 ywhrules: [{ required: true, message: "业务号", trigger: "blur" }],
480 }, 457 },
481 }; 458 };
482 }, 459 },
483 }; 460 };
484 </script> 461 </script>
485 <style scoped lang="scss"> 462 <style scoped lang="scss">
486 @import "~@/styles/public.scss"; 463 @import "~@/styles/public.scss";
487 @import "~@/styles/slxx/slxx.scss"; 464 @import "~@/styles/slxx/slxx.scss";
488 </style> 465 </style>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 11:06:34 4 * @LastEditTime: 2023-08-16 16:11:35
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -400,7 +400,7 @@ ...@@ -400,7 +400,7 @@
400 <el-form-item label="共有方式:"> 400 <el-form-item label="共有方式:">
401 <el-radio-group 401 <el-radio-group
402 :disabled="!ableOperation" 402 :disabled="!ableOperation"
403 v-model="ruleForm.qlxx.gyfs"> 403 v-model="ruleForm.sldy.gyfs">
404 <el-radio label="0">单独所有</el-radio> 404 <el-radio label="0">单独所有</el-radio>
405 <el-radio label="1">共同共有</el-radio> 405 <el-radio label="1">共同共有</el-radio>
406 <el-radio label="2">按份所有</el-radio> 406 <el-radio label="2">按份所有</el-radio>
...@@ -412,9 +412,9 @@ ...@@ -412,9 +412,9 @@
412 <qlrCommonTable 412 <qlrCommonTable
413 :tableData="ruleForm.qlrData" 413 :tableData="ruleForm.qlrData"
414 @upDateQlrxxList="upDateQlrxxList" 414 @upDateQlrxxList="upDateQlrxxList"
415 :ableOperation="ableOperation" 415 :disabled="ableOperation"
416 :key="key" 416 :key="key"
417 :gyfs="ruleForm.qlxx.gyfs" /> 417 :gyfs="ruleForm.sldy.gyfs" />
418 </div> 418 </div>
419 <el-row class="btn" v-if="ableOperation"> 419 <el-row class="btn" v-if="ableOperation">
420 <el-form-item> 420 <el-form-item>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-14 10:28:44 4 * @LastEditTime: 2023-08-16 15:52:24
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -253,7 +253,7 @@ ...@@ -253,7 +253,7 @@
253 <el-form-item label="共有方式:"> 253 <el-form-item label="共有方式:">
254 <el-radio-group 254 <el-radio-group
255 :disabled="!ableOperation" 255 :disabled="!ableOperation"
256 v-model="ruleForm.qlxx.gyfs"> 256 v-model="ruleForm.sldy.gyfs">
257 <el-radio label="0">单独所有</el-radio> 257 <el-radio label="0">单独所有</el-radio>
258 <el-radio label="1">共同共有</el-radio> 258 <el-radio label="1">共同共有</el-radio>
259 <el-radio label="2">按份所有</el-radio> 259 <el-radio label="2">按份所有</el-radio>
...@@ -266,8 +266,8 @@ ...@@ -266,8 +266,8 @@
266 :tableData="ruleForm.qlrData" 266 :tableData="ruleForm.qlrData"
267 @upDateQlrxxList="upDateQlrxxList" 267 @upDateQlrxxList="upDateQlrxxList"
268 :key="key" 268 :key="key"
269 :ableOperation="ableOperation" 269 :disabled="ableOperation"
270 :gyfs="ruleForm.qlxx.gyfs" /> 270 :gyfs="ruleForm.sldy.gyfs" />
271 </div> 271 </div>
272 <el-row class="btn" v-if="ableOperation"> 272 <el-row class="btn" v-if="ableOperation">
273 <el-form-item> 273 <el-form-item>
......
...@@ -354,7 +354,7 @@ ...@@ -354,7 +354,7 @@
354 <el-form-item label="共有方式:"> 354 <el-form-item label="共有方式:">
355 <el-radio-group 355 <el-radio-group
356 :disabled="!ableOperation" 356 :disabled="!ableOperation"
357 v-model="ruleForm.qlxx.gyfs"> 357 v-model="ruleForm.sldy.gyfs">
358 <el-radio label="0">单独所有</el-radio> 358 <el-radio label="0">单独所有</el-radio>
359 <el-radio label="1">共同共有</el-radio> 359 <el-radio label="1">共同共有</el-radio>
360 <el-radio label="2">按份所有</el-radio> 360 <el-radio label="2">按份所有</el-radio>
...@@ -367,8 +367,8 @@ ...@@ -367,8 +367,8 @@
367 :tableData="ruleForm.qlrData" 367 :tableData="ruleForm.qlrData"
368 @upDateQlrxxList="upDateQlrxxList" 368 @upDateQlrxxList="upDateQlrxxList"
369 :key="key" 369 :key="key"
370 :ableOperation="ableOperation" 370 :disabled="ableOperation"
371 :gyfs="ruleForm.qlxx.gyfs" /> 371 :gyfs="ruleForm.sldy.gyfs" />
372 </div> 372 </div>
373 <el-row class="btn" v-if="ableOperation"> 373 <el-row class="btn" v-if="ableOperation">
374 <el-form-item> 374 <el-form-item>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 09:42:01 4 * @LastEditTime: 2023-08-16 16:11:56
5 :show-message="false" 5 :show-message="false"
6 --> 6 -->
7 <template> 7 <template>
...@@ -450,7 +450,7 @@ ...@@ -450,7 +450,7 @@
450 <el-form-item label="共有方式:"> 450 <el-form-item label="共有方式:">
451 <el-radio-group 451 <el-radio-group
452 :disabled="!ableOperation" 452 :disabled="!ableOperation"
453 v-model="ruleForm.qlxx.gyfs"> 453 v-model="ruleForm.sldy.gyfs">
454 <el-radio label="0">单独所有</el-radio> 454 <el-radio label="0">单独所有</el-radio>
455 <el-radio label="1">共同共有</el-radio> 455 <el-radio label="1">共同共有</el-radio>
456 <el-radio label="2">按份所有</el-radio> 456 <el-radio label="2">按份所有</el-radio>
...@@ -463,8 +463,8 @@ ...@@ -463,8 +463,8 @@
463 :tableData="ruleForm.qlrData" 463 :tableData="ruleForm.qlrData"
464 @upDateQlrxxList="upDateQlrxxList" 464 @upDateQlrxxList="upDateQlrxxList"
465 :key="key" 465 :key="key"
466 :ableOperation="ableOperation" 466 :disabled="ableOperation"
467 :gyfs="ruleForm.qlxx.gyfs" /> 467 :gyfs="ruleForm.sldy.gyfs" />
468 468
469 <div v-if="ruleForm.ywrData"> 469 <div v-if="ruleForm.ywrData">
470 <div class="slxx_title title-block"> 470 <div class="slxx_title title-block">
...@@ -475,7 +475,7 @@ ...@@ -475,7 +475,7 @@
475 v-if="ruleForm.ywrData" 475 v-if="ruleForm.ywrData"
476 :tableData="ruleForm.ywrData" 476 :tableData="ruleForm.ywrData"
477 :key="key" 477 :key="key"
478 :ableOperation="ableOperation" 478 :disabled="ableOperation"
479 @upDateQlrxxList="upDateYwrxxList" /> 479 @upDateQlrxxList="upDateYwrxxList" />
480 </div> 480 </div>
481 </div> 481 </div>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-04 15:53:48 4 * @LastEditTime: 2023-08-16 16:12:12
5 :show-message="false" 5 :show-message="false"
6 --> 6 -->
7 <template> 7 <template>
...@@ -367,7 +367,7 @@ ...@@ -367,7 +367,7 @@
367 <el-form-item label="共有方式:"> 367 <el-form-item label="共有方式:">
368 <el-radio-group 368 <el-radio-group
369 :disabled="!ableOperation" 369 :disabled="!ableOperation"
370 v-model="ruleForm.qlxx.gyfs"> 370 v-model="ruleForm.sldy.gyfs">
371 <el-radio label="0">单独所有</el-radio> 371 <el-radio label="0">单独所有</el-radio>
372 <el-radio label="1">共同共有</el-radio> 372 <el-radio label="1">共同共有</el-radio>
373 <el-radio label="2">按份所有</el-radio> 373 <el-radio label="2">按份所有</el-radio>
...@@ -380,8 +380,8 @@ ...@@ -380,8 +380,8 @@
380 :tableData="ruleForm.qlrData" 380 :tableData="ruleForm.qlrData"
381 @upDateQlrxxList="upDateQlrxxList" 381 @upDateQlrxxList="upDateQlrxxList"
382 :key="key" 382 :key="key"
383 :ableOperation="ableOperation" 383 :disabled="ableOperation"
384 :gyfs="ruleForm.qlxx.gyfs" /> 384 :gyfs="ruleForm.sldy.gyfs" />
385 385
386 <div v-if="ruleForm.ywrData"> 386 <div v-if="ruleForm.ywrData">
387 <div class="slxx_title title-block"> 387 <div class="slxx_title title-block">
...@@ -392,7 +392,7 @@ ...@@ -392,7 +392,7 @@
392 v-if="ruleForm.ywrData" 392 v-if="ruleForm.ywrData"
393 :tableData="ruleForm.ywrData" 393 :tableData="ruleForm.ywrData"
394 :key="key" 394 :key="key"
395 :ableOperation="ableOperation" 395 :disabled="ableOperation"
396 @upDateQlrxxList="upDateYwrxxList" /> 396 @upDateQlrxxList="upDateYwrxxList" />
397 </div> 397 </div>
398 </div> 398 </div>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-15 10:57:30 4 * @LastEditTime: 2023-08-16 15:00:12
5 --> 5 -->
6 <template> 6 <template>
7 <div class="content"> 7 <div class="content">
...@@ -46,7 +46,6 @@ ...@@ -46,7 +46,6 @@
46 }, 46 },
47 methods: { 47 methods: {
48 getBdcdyh (val) { 48 getBdcdyh (val) {
49 console.log(val, ';222222222222');
50 // this.loadData(val); 49 // this.loadData(val);
51 }, 50 },
52 /** 51 /**
...@@ -65,6 +64,8 @@ ...@@ -65,6 +64,8 @@
65 this.$refs.tree.setCurrentKey(this.defaultNode.id); //data[0].id为默认选中的节点 64 this.$refs.tree.setCurrentKey(this.defaultNode.id); //data[0].id为默认选中的节点
66 this.loadComponent(this.defaultNode.form); 65 this.loadComponent(this.defaultNode.form);
67 }) 66 })
67 } else {
68 this.$message.error(res.message);
68 } 69 }
69 }) 70 })
70 this.currentSelectProps = { 71 this.currentSelectProps = {
...@@ -90,7 +91,6 @@ ...@@ -90,7 +91,6 @@
90 * @author: renchao 91 * @author: renchao
91 */ 92 */
92 loadComponent (form) { 93 loadComponent (form) {
93 console.log(form, 'form');
94 this.componentTag = (r) => 94 this.componentTag = (r) =>
95 require.ensure([], () => r(require("@/views/registerBook/" + form))) 95 require.ensure([], () => r(require("@/views/registerBook/" + form)))
96 } 96 }
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 14:08:42 4 * @LastEditTime: 2023-08-16 16:29:35
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
8 <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" 8 <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true"
9 :data="tableDataList"> 9 :data="tableDataList">
10 </lb-table> 10 </lb-table>
11 <addQlr v-model="dialog" :details="details" :showButton="!isDisabled" @updateDetail="handleupdateDetail" /> 11 <addQlr v-model="dialog" :details="details" :showButton="disabled" @updateDetail="handleupdateDetail" />
12 </div> 12 </div>
13 </template> 13 </template>
14 <script> 14 <script>
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
44 dataIndex: 0, 44 dataIndex: 0,
45 dialog: false, 45 dialog: false,
46 isaddupdate: false, 46 isaddupdate: false,
47 isDisabled: this.disabled,
48 details: {}, 47 details: {},
49 tableDataList: [], 48 tableDataList: [],
50 InformationTable: [ 49 InformationTable: [
...@@ -52,7 +51,7 @@ ...@@ -52,7 +51,7 @@
52 width: '50', 51 width: '50',
53 renderHeader: (h, scope) => { 52 renderHeader: (h, scope) => {
54 return <div> { 53 return <div> {
55 this.isDisabled ? '序号' : <i class="el-icon-plus pointer" onClick={() => { this.addClick() }}></i> 54 this.disabled ? '序号' : <i class="el-icon-plus pointer" onClick={() => { this.addClick() }}></i>
56 } 55 }
57 </div> 56 </div>
58 }, 57 },
...@@ -60,7 +59,7 @@ ...@@ -60,7 +59,7 @@
60 return ( 59 return (
61 <div> 60 <div>
62 { 61 {
63 this.isDisabled ? <span>{scope.$index + 1}</span> : 62 this.disabled ? <span>{scope.$index + 1}</span> :
64 <i class="el-icon-minus pointer" onClick={() => { this.deleClick(scope.$index, scope.row) }}></i> 63 <i class="el-icon-minus pointer" onClick={() => { this.deleClick(scope.$index, scope.row) }}></i>
65 } 64 }
66 </div> 65 </div>
...@@ -71,7 +70,7 @@ ...@@ -71,7 +70,7 @@
71 label: '身份证读卡器', 70 label: '身份证读卡器',
72 align: 'center', 71 align: 'center',
73 render: (h, scope) => { 72 render: (h, scope) => {
74 return <el-button type="text" icon="el-icon-tickets" disabled={this.isDisabled} onClick={() => { this.readClick(scope.row) }}>读取</el-button> 73 return <el-button type="text" icon="el-icon-tickets" disabled={!this.disabled} onClick={() => { this.readClick(scope.row) }}>读取</el-button>
75 } 74 }
76 }, 75 },
77 { 76 {
...@@ -103,13 +102,13 @@ ...@@ -103,13 +102,13 @@
103 return ( 102 return (
104 <div> 103 <div>
105 { 104 {
106 this.isDisabled ? <el-button 105 this.disabled ? <el-button
107 icon="el-icon-view" 106 icon="el-icon-edit-outline"
108 type="text" 107 type="text"
109 onClick={() => { this.queryViewClick(scope.$index, scope.row) }} disabled={this.isDisabled} > 查看</el-button> : <el-button 108 onClick={() => { this.editClick(scope.$index, scope.row) }}>编辑</el-button> : <el-button
110 icon="el-icon-edit-outline" 109 icon="el-icon-view"
111 type="text" 110 type="text"
112 onClick={() => { this.editClick(scope.$index, scope.row) }} disabled={this.isDisabled}>编辑</el-button> 111 onClick={() => { this.queryViewClick(scope.$index, scope.row) }} > 查看</el-button>
113 } 112 }
114 </div> 113 </div>
115 ) 114 )
......
1 <!-- 1 <!--
2 * @Description: 审批意见 2 * @Description: 审批意见
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:41:24 4 * @LastEditTime: 2023-08-16 14:39:55
5 --> 5 -->
6 <template> 6 <template>
7 <div class="spyj loadingtext"> 7 <div class="spyj loadingtext">
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
25 <el-col :span="24"> 25 <el-col :span="24">
26 <el-form-item label-width="0" class="opinion_item"> 26 <el-form-item label-width="0" class="opinion_item">
27 <el-input 27 <el-input
28 :disabled="!ableOperation || item.show" 28 :disabled="!viewEdit || item.show"
29 type="textarea" 29 type="textarea"
30 :rows="4" 30 :rows="4"
31 class="opinion" 31 class="opinion"
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
35 <el-button 35 <el-button
36 class="opinion_btn" 36 class="opinion_btn"
37 @click="commonOpinion(index)" 37 @click="commonOpinion(index)"
38 v-if="ableOperation" 38 v-if="viewEdit"
39 >常用意见</el-button 39 >常用意见</el-button
40 > 40 >
41 </el-form-item> 41 </el-form-item>
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
57 </div> 57 </div>
58 </el-form> 58 </el-form>
59 </div> 59 </div>
60 <div class="submit_button" v-if="ableOperation"> 60 <div class="submit_button" v-if="viewEdit">
61 <el-button type="primary" :disabled="shows" @click="onSubmit()">保存</el-button> 61 <el-button type="primary" :disabled="shows" @click="onSubmit()">保存</el-button>
62 </div> 62 </div>
63 </div> 63 </div>
...@@ -78,7 +78,7 @@ export default { ...@@ -78,7 +78,7 @@ export default {
78 currentindex: 0, 78 currentindex: 0,
79 bsmSlsq: "", 79 bsmSlsq: "",
80 refresh: 10, 80 refresh: 10,
81 ableOperation: false, 81 viewEdit: false,
82 bsmSlsq: this.$route.query.bsmSlsq, 82 bsmSlsq: this.$route.query.bsmSlsq,
83 bestepid: this.$route.query.bestepid, 83 bestepid: this.$route.query.bestepid,
84 propsParam: {}, 84 propsParam: {},
...@@ -103,8 +103,7 @@ export default { ...@@ -103,8 +103,7 @@ export default {
103 created() {}, 103 created() {},
104 mounted() { 104 mounted() {
105 this.propsParam = this.$attrs; 105 this.propsParam = this.$attrs;
106 this.ableOperation = this.$parent.currentSelectTab.ableOperation; 106 this.viewEdit = this.$parent.currentSelectTab.ableOperation;
107 // this.ableOperation = this.$parent.ableOperation;
108 this.getShList(); 107 this.getShList();
109 108
110 switch (this.$parent.dqhj) { 109 switch (this.$parent.dqhj) {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-14 12:56:43 4 * @LastEditTime: 2023-08-16 16:10:51
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
126 </el-col> 126 </el-col>
127 <el-col :span="9"> 127 <el-col :span="9">
128 <el-form-item label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px"> 128 <el-form-item label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px">
129 <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz" :disabled="!ableOperation|| isJfOperation"> 129 <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz" :disabled="!viewEdit|| isJfOperation">
130 <el-radio label="1">启用</el-radio> 130 <el-radio label="1">启用</el-radio>
131 <el-radio label="0">禁用</el-radio> 131 <el-radio label="0">禁用</el-radio>
132 </el-radio-group> 132 </el-radio-group>
...@@ -138,8 +138,8 @@ ...@@ -138,8 +138,8 @@
138 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> 138 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1">
139 <el-form-item label="被担保主债权数额:"> 139 <el-form-item label="被担保主债权数额:">
140 <div style="display:flex"> 140 <div style="display:flex">
141 <el-input v-model="ruleForm.diyaq.bdbzzqse" :disabled="!ableOperation|| isJfOperation" style="width:500%"></el-input> 141 <el-input v-model="ruleForm.diyaq.bdbzzqse" :disabled="!viewEdit|| isJfOperation" style="width:500%"></el-input>
142 <el-select v-model="ruleForm.diyaq.jedw" :disabled="!ableOperation|| isJfOperation"> 142 <el-select v-model="ruleForm.diyaq.jedw" :disabled="!viewEdit|| isJfOperation">
143 <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> 143 <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode">
144 </el-option> 144 </el-option>
145 </el-select> 145 </el-select>
...@@ -149,19 +149,19 @@ ...@@ -149,19 +149,19 @@
149 149
150 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2"> 150 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2">
151 <el-form-item label="最高债权额:"> 151 <el-form-item label="最高债权额:">
152 <el-input v-model="ruleForm.diyaq.zgzqse" :disabled="!ableOperation|| isJfOperation"></el-input> 152 <el-input v-model="ruleForm.diyaq.zgzqse" :disabled="!viewEdit|| isJfOperation"></el-input>
153 </el-form-item> 153 </el-form-item>
154 </el-col> 154 </el-col>
155 155
156 <el-col :span="8"> 156 <el-col :span="8">
157 <el-form-item label="债务履行起始时间:"> 157 <el-form-item label="债务履行起始时间:">
158 <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" :disabled="!ableOperation|| isJfOperation" type="date"> 158 <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" :disabled="!viewEdit|| isJfOperation" type="date">
159 </el-date-picker> 159 </el-date-picker>
160 </el-form-item> 160 </el-form-item>
161 </el-col> 161 </el-col>
162 <el-col :span="8"> 162 <el-col :span="8">
163 <el-form-item label="债务履行结束时间:"> 163 <el-form-item label="债务履行结束时间:">
164 <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" :disabled="!ableOperation|| isJfOperation" type="date"> 164 <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" :disabled="!viewEdit|| isJfOperation" type="date">
165 </el-date-picker> 165 </el-date-picker>
166 </el-form-item> 166 </el-form-item>
167 </el-col> 167 </el-col>
...@@ -170,21 +170,21 @@ ...@@ -170,21 +170,21 @@
170 <el-col :span="24"> 170 <el-col :span="24">
171 <el-form-item label="担保范围:"> 171 <el-form-item label="担保范围:">
172 <el-input v-model="ruleForm.diyaq.dbfw" 172 <el-input v-model="ruleForm.diyaq.dbfw"
173 :disabled="ruleForm.sldy.djlx == '300'&& !ableOperation|| isJfOperation"></el-input> 173 :disabled="ruleForm.sldy.djlx == '300'&& !viewEdit|| isJfOperation"></el-input>
174 </el-form-item> 174 </el-form-item>
175 </el-col> 175 </el-col>
176 </el-row> 176 </el-row>
177 <el-row> 177 <el-row>
178 <el-col :span="24"> 178 <el-col :span="24">
179 <el-form-item label="最高债权确定事实和数额:"> 179 <el-form-item label="最高债权确定事实和数额:">
180 <el-input v-model="ruleForm.diyaq.zgzqqdss" :disabled="!ableOperation|| isJfOperation"></el-input> 180 <el-input v-model="ruleForm.diyaq.zgzqqdss" :disabled="!viewEdit|| isJfOperation"></el-input>
181 </el-form-item> 181 </el-form-item>
182 </el-col> 182 </el-col>
183 </el-row> 183 </el-row>
184 <el-row> 184 <el-row>
185 <el-col> 185 <el-col>
186 <el-form-item label="附记:" prop="fj"> 186 <el-form-item label="附记:" prop="fj">
187 <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="!ableOperation|| isJfOperation"></el-input> 187 <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="!viewEdit|| isJfOperation"></el-input>
188 </el-form-item> 188 </el-form-item>
189 </el-col> 189 </el-col>
190 </el-row> 190 </el-row>
...@@ -196,7 +196,7 @@ ...@@ -196,7 +196,7 @@
196 <el-row :gutter="10"> 196 <el-row :gutter="10">
197 <el-col :span="12"> 197 <el-col :span="12">
198 <el-form-item label="共有方式:"> 198 <el-form-item label="共有方式:">
199 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 199 <el-radio-group :disabled="!viewEdit" v-model="ruleForm.sldy.gyfs">
200 <el-radio label="0">单独所有</el-radio> 200 <el-radio label="0">单独所有</el-radio>
201 <el-radio label="1">共同共有</el-radio> 201 <el-radio label="1">共同共有</el-radio>
202 <el-radio label="2">按份所有</el-radio> 202 <el-radio label="2">按份所有</el-radio>
...@@ -208,7 +208,7 @@ ...@@ -208,7 +208,7 @@
208 <el-form-item label="是否分别持证:"> 208 <el-form-item label="是否分别持证:">
209 <el-radio-group 209 <el-radio-group
210 v-model="ruleForm.sldy.sqfbcz" 210 v-model="ruleForm.sldy.sqfbcz"
211 :disabled="!ableOperation"> 211 :disabled="!viewEdit">
212 <el-radio :label="1"></el-radio> 212 <el-radio :label="1"></el-radio>
213 <el-radio :label="0"></el-radio> 213 <el-radio :label="0"></el-radio>
214 </el-radio-group> 214 </el-radio-group>
...@@ -221,7 +221,7 @@ ...@@ -221,7 +221,7 @@
221 <el-select 221 <el-select
222 v-model="ruleForm.czr" 222 v-model="ruleForm.czr"
223 placeholder="持证人" 223 placeholder="持证人"
224 :disabled="!ableOperation"> 224 :disabled="!viewEdit">
225 <el-option 225 <el-option
226 v-for="item in czrOptions" 226 v-for="item in czrOptions"
227 :key="item.zjh" 227 :key="item.zjh"
...@@ -232,14 +232,13 @@ ...@@ -232,14 +232,13 @@
232 </el-form-item> 232 </el-form-item>
233 </el-col> 233 </el-col>
234 </el-row> 234 </el-row>
235 <qlrCommonTable :tableData="ruleForm.qlrList" :disabled="!ableOperation" @upDateQlrxxList="upDateQlrxxList" 235 <qlrCommonTable :tableData="ruleForm.qlrList" :disabled="viewEdit" @upDateQlrxxList="upDateQlrxxList"
236 :viewtype="!ableOperation" :gyfs="ruleForm.sldy.gyfs" /> 236 :gyfs="ruleForm.sldy.gyfs" />
237 <div class="slxx_title title-block"> 237 <div class="slxx_title title-block">
238 抵押人信息 238 抵押人信息
239 <div class="triangle"></div> 239 <div class="triangle"></div>
240 </div> 240 </div>
241 <qlrCommonTable :tableData="ruleForm.ywrList" :disabled="!ableOperation" @upDateQlrxxList="upDateYwrxxList" 241 <qlrCommonTable :tableData="ruleForm.ywrList" :disabled="viewEdit" @upDateQlrxxList="upDateYwrxxList" />
242 :viewtype="!ableOperation" />
243 242
244 <div class="slxx_title title-block"> 243 <div class="slxx_title title-block">
245 登记原因 244 登记原因
...@@ -248,12 +247,12 @@ ...@@ -248,12 +247,12 @@
248 <el-row :gutter="10"> 247 <el-row :gutter="10">
249 <el-col> 248 <el-col>
250 <el-form-item v-if="ruleForm.sldy.djlx == '400'" label="注销抵押原因:" prop="djyy"> 249 <el-form-item v-if="ruleForm.sldy.djlx == '400'" label="注销抵押原因:" prop="djyy">
251 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 250 <el-input class="textArea" type="textarea" :disabled="!viewEdit"
252 v-model="ruleForm.diyaq.zxdyyy"> 251 v-model="ruleForm.diyaq.zxdyyy">
253 </el-input> 252 </el-input>
254 </el-form-item> 253 </el-form-item>
255 <el-form-item v-else label="登记原因:" prop="djyy"> 254 <el-form-item v-else label="登记原因:" prop="djyy">
256 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!ableOperation" 255 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!viewEdit"
257 v-model="ruleForm.diyaq.djyy"> 256 v-model="ruleForm.diyaq.djyy">
258 </el-input> 257 </el-input>
259 </el-form-item> 258 </el-form-item>
...@@ -261,7 +260,7 @@ ...@@ -261,7 +260,7 @@
261 </el-row> 260 </el-row>
262 261
263 </div> 262 </div>
264 <el-row class="btn" v-if="ableOperation"> 263 <el-row class="btn" v-if="viewEdit">
265 <el-form-item> 264 <el-form-item>
266 <el-button type="primary" @click="onSubmitClick()">保存</el-button> 265 <el-button type="primary" @click="onSubmitClick()">保存</el-button>
267 </el-form-item> 266 </el-form-item>
...@@ -275,7 +274,7 @@ ...@@ -275,7 +274,7 @@
275 import { mapGetters } from "vuex"; 274 import { mapGetters } from "vuex";
276 export default { 275 export default {
277 mounted () { 276 mounted () {
278 this.ableOperation = this.$parent.currentSelectTab.ableOperation 277 this.viewEdit = this.$parent.currentSelectTab.ableOperation
279 this.propsParam = this.$attrs; 278 this.propsParam = this.$attrs;
280 var formdata = new FormData(); 279 var formdata = new FormData();
281 if (this.propsParam.djlx == '400') { 280 if (this.propsParam.djlx == '400') {
...@@ -285,7 +284,7 @@ ...@@ -285,7 +284,7 @@
285 formdata.append("bsmSldy", this.propsParam.bsmSldy); 284 formdata.append("bsmSldy", this.propsParam.bsmSldy);
286 formdata.append("bsmSlsq", this.$route.query.bsmSlsq); 285 formdata.append("bsmSlsq", this.$route.query.bsmSlsq);
287 formdata.append("djlx", this.propsParam.djlx); 286 formdata.append("djlx", this.propsParam.djlx);
288 formdata.append("isEdit", this.ableOperation); 287 formdata.append("isEdit", this.viewEdit);
289 Init(formdata).then((res) => { 288 Init(formdata).then((res) => {
290 if (res.code === 200 && res.result) { 289 if (res.code === 200 && res.result) {
291 this.ruleForm = res.result; 290 this.ruleForm = res.result;
...@@ -302,7 +301,7 @@ ...@@ -302,7 +301,7 @@
302 data () { 301 data () {
303 return { 302 return {
304 //表单是否可操作 303 //表单是否可操作
305 ableOperation: true, 304 viewEdit: true,
306 disabled: true, 305 disabled: true,
307 czrOptions: [], 306 czrOptions: [],
308 ruleForm: { 307 ruleForm: {
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 11:06:29 4 * @LastEditTime: 2023-08-16 16:05:34
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
63 </el-col> 63 </el-col>
64 <el-col :span="8"> 64 <el-col :span="8">
65 <el-form-item label="坐落:"> 65 <el-form-item label="坐落:">
66 <el-input v-model="ruleForm.sldy.zl"></el-input> 66 <el-input v-model="ruleForm.sldy.zl" disabled></el-input>
67 </el-form-item> 67 </el-form-item>
68 </el-col> 68 </el-col>
69 </el-row> 69 </el-row>
...@@ -94,6 +94,7 @@ ...@@ -94,6 +94,7 @@
94 <el-col :span="8"> 94 <el-col :span="8">
95 <el-form-item label="土地性质:"> 95 <el-form-item label="土地性质:">
96 <treeselect 96 <treeselect
97 :disabled="!viewEdit"
97 v-model="ruleForm.fdcq2.tdxz" 98 v-model="ruleForm.fdcq2.tdxz"
98 noOptionsText="暂无数据" 99 noOptionsText="暂无数据"
99 placeholder="" 100 placeholder=""
...@@ -108,7 +109,7 @@ ...@@ -108,7 +109,7 @@
108 <el-col :span="8"> 109 <el-col :span="8">
109 <el-form-item label="独用土地面积:"> 110 <el-form-item label="独用土地面积:">
110 <div class="flex"> 111 <div class="flex">
111 <el-input v-model="ruleForm.fdcq2.dytdmj" 112 <el-input v-model="ruleForm.fdcq2.dytdmj" :disabled="!viewEdit"
112 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 113 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
113 <el-select 114 <el-select
114 disabled 115 disabled
...@@ -127,7 +128,7 @@ ...@@ -127,7 +128,7 @@
127 <el-col :span="8"> 128 <el-col :span="8">
128 <el-form-item label="分摊土地面积:"> 129 <el-form-item label="分摊土地面积:">
129 <div class="flex"> 130 <div class="flex">
130 <el-input v-model="ruleForm.fdcq2.fttdmj" 131 <el-input v-model="ruleForm.fdcq2.fttdmj" :disabled="!viewEdit"
131 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 132 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
132 <el-select 133 <el-select
133 disabled 134 disabled
...@@ -145,7 +146,7 @@ ...@@ -145,7 +146,7 @@
145 </el-col> 146 </el-col>
146 <el-col :span="8"> 147 <el-col :span="8">
147 <el-form-item label="房屋性质:"> 148 <el-form-item label="房屋性质:">
148 <el-select v-model="ruleForm.fdcq2.fwxz"> 149 <el-select v-model="ruleForm.fdcq2.fwxz" :disabled="!viewEdit">
149 <el-option 150 <el-option
150 v-for="item in dictData['A19']" 151 v-for="item in dictData['A19']"
151 :key="item.dcode" 152 :key="item.dcode"
...@@ -161,6 +162,7 @@ ...@@ -161,6 +162,7 @@
161 <el-form-item label="房屋用途:"> 162 <el-form-item label="房屋用途:">
162 <treeselect 163 <treeselect
163 v-model="ruleForm.fdcq2.ghyt" 164 v-model="ruleForm.fdcq2.ghyt"
165 :disabled="!viewEdit"
164 noOptionsText="" 166 noOptionsText=""
165 placeholder="" 167 placeholder=""
166 :normalizer="normalizer" 168 :normalizer="normalizer"
...@@ -171,7 +173,7 @@ ...@@ -171,7 +173,7 @@
171 </el-col> 173 </el-col>
172 <el-col :span="8"> 174 <el-col :span="8">
173 <el-form-item label="房屋结构:"> 175 <el-form-item label="房屋结构:">
174 <el-select v-model="ruleForm.fdcq2.fwjg"> 176 <el-select v-model="ruleForm.fdcq2.fwjg" :disabled="!viewEdit">
175 <el-option 177 <el-option
176 v-for="item in dictData['A46']" 178 v-for="item in dictData['A46']"
177 :key="item.dcode" 179 :key="item.dcode"
...@@ -190,19 +192,19 @@ ...@@ -190,19 +192,19 @@
190 type="date" 192 type="date"
191 placeholder="选择日期" 193 placeholder="选择日期"
192 value-format="yyyy-MM-dd" 194 value-format="yyyy-MM-dd"
193 :disabled="!ableOperation || ableEdit || isJfOperation"></el-date-picker> 195 :disabled="!viewEdit || ableEdit || isJfOperation"></el-date-picker>
194 </el-form-item> 196 </el-form-item>
195 </el-col> 197 </el-col>
196 </el-row> 198 </el-row>
197 <el-row :gutter="10" v-if="ruleForm.qlxx"> 199 <el-row :gutter="10" v-if="ruleForm.qlxx">
198 <el-col :span="8"> 200 <el-col :span="8">
199 <el-form-item label="所在层:"> 201 <el-form-item label="所在层:">
200 <el-input v-model="ruleForm.fdcq2.szc"></el-input> 202 <el-input v-model="ruleForm.fdcq2.szc" :disabled="!viewEdit"></el-input>
201 </el-form-item> 203 </el-form-item>
202 </el-col> 204 </el-col>
203 <el-col :span="8"> 205 <el-col :span="8">
204 <el-form-item label="总层数:"> 206 <el-form-item label="总层数:">
205 <el-input v-model.number="ruleForm.fdcq2.zcs" oninput="value=value.replace(/[^0-9]/g,'')"></el-input> 207 <el-input :disabled="!viewEdit" v-model.number="ruleForm.fdcq2.zcs" oninput="value=value.replace(/[^0-9]/g,'')"></el-input>
206 </el-form-item> 208 </el-form-item>
207 </el-col> 209 </el-col>
208 <el-col :span="8"> 210 <el-col :span="8">
...@@ -211,8 +213,9 @@ ...@@ -211,8 +213,9 @@
211 <el-input 213 <el-input
212 v-model="ruleForm.fdcq2.fdcjyjg" 214 v-model="ruleForm.fdcq2.fdcjyjg"
213 style="width: 500%" 215 style="width: 500%"
216 :disabled="!viewEdit"
214 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 217 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
215 <el-select v-model="ruleForm.fdcq2.jedw"> 218 <el-select v-model="ruleForm.fdcq2.jedw" :disabled="!viewEdit">
216 <el-option 219 <el-option
217 v-for="item in dictData['A57']" 220 v-for="item in dictData['A57']"
218 :key="item.dcode" 221 :key="item.dcode"
...@@ -228,7 +231,7 @@ ...@@ -228,7 +231,7 @@
228 <el-col :span="8"> 231 <el-col :span="8">
229 <el-form-item label="建筑面积:"> 232 <el-form-item label="建筑面积:">
230 <div class="flex"> 233 <div class="flex">
231 <el-input v-model="ruleForm.fdcq2.jzmj" 234 <el-input v-model="ruleForm.fdcq2.jzmj" :disabled="!viewEdit"
232 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 235 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
233 <el-select 236 <el-select
234 disabled 237 disabled
...@@ -247,7 +250,7 @@ ...@@ -247,7 +250,7 @@
247 <el-col :span="8"> 250 <el-col :span="8">
248 <el-form-item label="专有建筑面积:"> 251 <el-form-item label="专有建筑面积:">
249 <div class="flex"> 252 <div class="flex">
250 <el-input v-model="ruleForm.fdcq2.zyjzmj" 253 <el-input v-model="ruleForm.fdcq2.zyjzmj" :disabled="!viewEdit"
251 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 254 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
252 <el-select 255 <el-select
253 disabled 256 disabled
...@@ -266,7 +269,7 @@ ...@@ -266,7 +269,7 @@
266 <el-col :span="8"> 269 <el-col :span="8">
267 <el-form-item label="分摊建筑面积:"> 270 <el-form-item label="分摊建筑面积:">
268 <div class="flex"> 271 <div class="flex">
269 <el-input v-model="ruleForm.fdcq2.ftjzmj" 272 <el-input v-model="ruleForm.fdcq2.ftjzmj" :disabled="!viewEdit"
270 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 273 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
271 <el-select 274 <el-select
272 disabled 275 disabled
...@@ -286,7 +289,7 @@ ...@@ -286,7 +289,7 @@
286 <el-row :gutter="10"> 289 <el-row :gutter="10">
287 <el-col :span="24"> 290 <el-col :span="24">
288 <el-form-item label="附记:"> 291 <el-form-item label="附记:">
289 <el-input v-model="ruleForm.fdcq2.fj"></el-input> 292 <el-input v-model="ruleForm.fdcq2.fj" :disabled="!viewEdit"></el-input>
290 </el-form-item> 293 </el-form-item>
291 </el-col> 294 </el-col>
292 </el-row> 295 </el-row>
...@@ -295,7 +298,7 @@ ...@@ -295,7 +298,7 @@
295 <div class="triangle"></div> 298 <div class="triangle"></div>
296 </div> 299 </div>
297 <tdytTable 300 <tdytTable
298 :ableOperation="ableOperation" 301 :ableOperation="viewEdit"
299 :tableData="ruleForm.tdytqxList" 302 :tableData="ruleForm.tdytqxList"
300 @upDateTdytxxList="upDateTdytxxList" /> 303 @upDateTdytxxList="upDateTdytxxList" />
301 <div class="slxx_title title-block"> 304 <div class="slxx_title title-block">
...@@ -305,7 +308,7 @@ ...@@ -305,7 +308,7 @@
305 <el-row :gutter="10"> 308 <el-row :gutter="10">
306 <el-col :span="12" v-if="ruleForm.qlxx"> 309 <el-col :span="12" v-if="ruleForm.qlxx">
307 <el-form-item label="共有方式:"> 310 <el-form-item label="共有方式:">
308 <el-radio-group :disabled="!ableOperation" 311 <el-radio-group :disabled="!viewEdit"
309 v-model="ruleForm.sldy.gyfs"> 312 v-model="ruleForm.sldy.gyfs">
310 <el-radio label="0">单独所有</el-radio> 313 <el-radio label="0">单独所有</el-radio>
311 <el-radio label="1">共同共有</el-radio> 314 <el-radio label="1">共同共有</el-radio>
...@@ -318,7 +321,7 @@ ...@@ -318,7 +321,7 @@
318 <el-form-item label="是否分别持证:"> 321 <el-form-item label="是否分别持证:">
319 <el-radio-group 322 <el-radio-group
320 v-model="ruleForm.sldy.sqfbcz" 323 v-model="ruleForm.sldy.sqfbcz"
321 :disabled="!ableOperation"> 324 :disabled="!viewEdit">
322 <el-radio :label="1"></el-radio> 325 <el-radio :label="1"></el-radio>
323 <el-radio :label="0"></el-radio> 326 <el-radio :label="0"></el-radio>
324 </el-radio-group> 327 </el-radio-group>
...@@ -331,7 +334,7 @@ ...@@ -331,7 +334,7 @@
331 <el-select 334 <el-select
332 v-model="ruleForm.czr" 335 v-model="ruleForm.czr"
333 placeholder="持证人" 336 placeholder="持证人"
334 :disabled="!ableOperation"> 337 :disabled="!viewEdit">
335 <el-option 338 <el-option
336 v-for="item in czrOptions" 339 v-for="item in czrOptions"
337 :key="item.zjh" 340 :key="item.zjh"
...@@ -342,8 +345,8 @@ ...@@ -342,8 +345,8 @@
342 </el-form-item> 345 </el-form-item>
343 </el-col> 346 </el-col>
344 </el-row> 347 </el-row>
345 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" 348 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="viewEdit"
346 :gyfs="ruleForm.qlxx.gyfs" /> 349 :gyfs="ruleForm.sldy.gyfs" />
347 350
348 <div v-if="ruleForm.ywrList && ruleForm.qlxx.djlx == '200'"> 351 <div v-if="ruleForm.ywrList && ruleForm.qlxx.djlx == '200'">
349 <div class="slxx_title title-block"> 352 <div class="slxx_title title-block">
...@@ -351,7 +354,7 @@ ...@@ -351,7 +354,7 @@
351 <div class="triangle"></div> 354 <div class="triangle"></div>
352 </div> 355 </div>
353 <qlrCommonTable v-if="ruleForm.qlxx" @upDateQlrxxList="upDateYwrxxList" :tableData="ruleForm.ywrList" 356 <qlrCommonTable v-if="ruleForm.qlxx" @upDateQlrxxList="upDateYwrxxList" :tableData="ruleForm.ywrList"
354 :gyfs="ruleForm.qlxx.gyfs" /> 357 :gyfs="ruleForm.sldy.gyfs" />
355 </div> 358 </div>
356 <div class="slxx_title title-block"> 359 <div class="slxx_title title-block">
357 登记原因 360 登记原因
...@@ -360,14 +363,14 @@ ...@@ -360,14 +363,14 @@
360 <el-row :gutter="10"> 363 <el-row :gutter="10">
361 <el-col> 364 <el-col>
362 <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy"> 365 <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy">
363 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!ableOperation" 366 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!viewEdit"
364 v-model="ruleForm.fdcq2.djyy"> 367 v-model="ruleForm.fdcq2.djyy">
365 </el-input> 368 </el-input>
366 </el-form-item> 369 </el-form-item>
367 </el-col> 370 </el-col>
368 </el-row> 371 </el-row>
369 </div> 372 </div>
370 <el-row class="btn" v-if="ableOperation"> 373 <el-row class="btn" v-if="viewEdit">
371 <el-form-item> 374 <el-form-item>
372 <el-button type="primary" @click="onSubmit">保存</el-button> 375 <el-button type="primary" @click="onSubmit">保存</el-button>
373 </el-form-item> 376 </el-form-item>
...@@ -384,12 +387,12 @@ ...@@ -384,12 +387,12 @@
384 export default { 387 export default {
385 mixins: [ywmix], 388 mixins: [ywmix],
386 mounted () { 389 mounted () {
387 this.ableOperation = this.$parent.currentSelectTab.ableOperation 390 this.viewEdit = this.$parent.currentSelectTab.ableOperation
388 this.propsParam = this.$attrs; 391 this.propsParam = this.$attrs;
389 var formdata = new FormData(); 392 var formdata = new FormData();
390 formdata.append("bsmSldy", this.propsParam.bsmSldy); 393 formdata.append("bsmSldy", this.propsParam.bsmSldy);
391 formdata.append("djlx", this.propsParam.djlx); 394 formdata.append("djlx", this.propsParam.djlx);
392 formdata.append("isEdit", this.ableOperation); 395 formdata.append("isEdit", this.viewEdit);
393 Init(formdata).then((res) => { 396 Init(formdata).then((res) => {
394 if (res.code === 200 && res.result) { 397 if (res.code === 200 && res.result) {
395 this.ruleForm = { 398 this.ruleForm = {
...@@ -447,7 +450,7 @@ ...@@ -447,7 +450,7 @@
447 //传递参数 450 //传递参数
448 propsParam: this.$attrs, 451 propsParam: this.$attrs,
449 //表单是否可操作 452 //表单是否可操作
450 ableOperation: true, 453 viewEdit: true,
451 rules: {} 454 rules: {}
452 } 455 }
453 }, 456 },
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 09:53:32 4 * @LastEditTime: 2023-08-16 15:53:25
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
226 </el-col> 226 </el-col>
227 </el-row> 227 </el-row>
228 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :disabled="!viewEdit" :tableData="ruleForm.qlrList" 228 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :disabled="!viewEdit" :tableData="ruleForm.qlrList"
229 :gyfs="ruleForm.slsq.gyfs" /> 229 :gyfs="ruleForm.sldy.gyfs" />
230 <div class="slxx_title title-block"> 230 <div class="slxx_title title-block">
231 登记原因 231 登记原因
232 <div class="triangle"></div> 232 <div class="triangle"></div>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 09:54:46 4 * @LastEditTime: 2023-08-16 16:12:58
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -146,7 +146,8 @@ ...@@ -146,7 +146,8 @@
146 </el-radio-group> 146 </el-radio-group>
147 </el-form-item> 147 </el-form-item>
148 </el-col> 148 </el-col>
149 <el-col :span="5" v-show="ruleForm.gyfs == '2'"> 149
150 <el-col :span="5" v-show="ruleForm.gyfs != '1'">
150 <el-form-item label="是否分别持证:"> 151 <el-form-item label="是否分别持证:">
151 <el-radio-group v-model="ruleForm.sffbcz" :disabled="!viewEdit"> 152 <el-radio-group v-model="ruleForm.sffbcz" :disabled="!viewEdit">
152 <el-radio label="1"></el-radio> 153 <el-radio label="1"></el-radio>
...@@ -154,7 +155,7 @@ ...@@ -154,7 +155,7 @@
154 </el-radio-group> 155 </el-radio-group>
155 </el-form-item> 156 </el-form-item>
156 </el-col> 157 </el-col>
157 <el-col :span="5" v-show="ruleForm.gyfs == '2'"> 158 <el-col :span="5" v-show="ruleForm.gyfs != '1' && ruleForm.sffbcz=='0'">
158 <el-form-item label="持证人:"> 159 <el-form-item label="持证人:">
159 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!viewEdit"> 160 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!viewEdit">
160 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 161 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value">
...@@ -163,7 +164,7 @@ ...@@ -163,7 +164,7 @@
163 </el-form-item> 164 </el-form-item>
164 </el-col> 165 </el-col>
165 </el-row> 166 </el-row>
166 <qlrCommonTable :tableData="ruleForm.qlrList" :gyfs="ruleForm.gyfs" :disabled="!viewEdit" /> 167 <qlrCommonTable :tableData="ruleForm.qlrList" :gyfs="ruleForm.gyfs" :disabled="viewEdit" />
167 <div class="slxx_title title-block"> 168 <div class="slxx_title title-block">
168 登记原因 169 登记原因
169 <div class="triangle"></div> 170 <div class="triangle"></div>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-14 13:04:38 4 * @LastEditTime: 2023-08-16 16:13:05
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
142 <div class="triangle"></div> 142 <div class="triangle"></div>
143 </div> 143 </div>
144 <tdytTable 144 <tdytTable
145 :ableOperation="ableOperation" 145 :ableOperation="viewEdit"
146 :tableData="ruleForm.tdytqxList" 146 :tableData="ruleForm.tdytqxList"
147 @upDateTdytxxList="upDateTdytxxList" /> 147 @upDateTdytxxList="upDateTdytxxList" />
148 <div class="slxx_title title-block"> 148 <div class="slxx_title title-block">
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
152 <el-row :gutter="10"> 152 <el-row :gutter="10">
153 <el-col :span="12"> 153 <el-col :span="12">
154 <el-form-item label="共有方式:"> 154 <el-form-item label="共有方式:">
155 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 155 <el-radio-group :disabled="!viewEdit" v-model="ruleForm.sldy.gyfs">
156 <el-radio label="0">单独所有</el-radio> 156 <el-radio label="0">单独所有</el-radio>
157 <el-radio label="1">共同共有</el-radio> 157 <el-radio label="1">共同共有</el-radio>
158 <el-radio label="2">按份所有</el-radio> 158 <el-radio label="2">按份所有</el-radio>
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
164 <el-form-item label="是否分别持证:"> 164 <el-form-item label="是否分别持证:">
165 <el-radio-group 165 <el-radio-group
166 v-model="ruleForm.sldy.sqfbcz" 166 v-model="ruleForm.sldy.sqfbcz"
167 :disabled="!ableOperation"> 167 :disabled="!viewEdit">
168 <el-radio :label="1"></el-radio> 168 <el-radio :label="1"></el-radio>
169 <el-radio :label="0"></el-radio> 169 <el-radio :label="0"></el-radio>
170 </el-radio-group> 170 </el-radio-group>
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
177 <el-select 177 <el-select
178 v-model="ruleForm.czr" 178 v-model="ruleForm.czr"
179 placeholder="持证人" 179 placeholder="持证人"
180 :disabled="!ableOperation"> 180 :disabled="!viewEdit">
181 <el-option 181 <el-option
182 v-for="(item,index) in czrOptions" 182 v-for="(item,index) in czrOptions"
183 :key="index" 183 :key="index"
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
189 </el-col> 189 </el-col>
190 </el-row> 190 </el-row>
191 <qlrCommonTable :tableData="ruleForm.qlrList" 191 <qlrCommonTable :tableData="ruleForm.qlrList"
192 :disabled="!ableOperation" 192 :disabled="viewEdit"
193 @upDateQlrxxList="upDateQlrxxList" :key="key" :gyfs="ruleForm.sldy.gyfs" /> 193 @upDateQlrxxList="upDateQlrxxList" :key="key" :gyfs="ruleForm.sldy.gyfs" />
194 194
195 <div v-if="ruleForm.ywrList && ruleForm.ywrList.length > 0"> 195 <div v-if="ruleForm.ywrList && ruleForm.ywrList.length > 0">
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
197 义务人信息 197 义务人信息
198 <div class="triangle"></div> 198 <div class="triangle"></div>
199 </div> 199 </div>
200 <qlrCommonTable v-if="ruleForm.ywrList" :disabled="!ableOperation" :tableData="ruleForm.ywrList" :key="key" @upDateQlrxxList="upDateYwrxxList" /> 200 <qlrCommonTable v-if="ruleForm.ywrList" :disabled="viewEdit" :tableData="ruleForm.ywrList" :key="key" @upDateQlrxxList="upDateYwrxxList" />
201 </div> 201 </div>
202 202
203 <div class="slxx_title title-block"> 203 <div class="slxx_title title-block">
...@@ -207,14 +207,14 @@ ...@@ -207,14 +207,14 @@
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" maxlength="500" show-word-limit :disabled="!ableOperation" 210 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!viewEdit"
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>
214 </el-col> 214 </el-col>
215 </el-row> 215 </el-row>
216 </div> 216 </div>
217 <el-row class="btn" v-if="ableOperation"> 217 <el-row class="btn" v-if="viewEdit">
218 <el-form-item> 218 <el-form-item>
219 <el-button type="primary" @click="onSubmit">保存</el-button> 219 <el-button type="primary" @click="onSubmit">保存</el-button>
220 </el-form-item> 220 </el-form-item>
...@@ -231,14 +231,14 @@ ...@@ -231,14 +231,14 @@
231 export default { 231 export default {
232 mixins: [ywmix], 232 mixins: [ywmix],
233 mounted () { 233 mounted () {
234 this.ableOperation = this.$parent.currentSelectTab.ableOperation 234 this.viewEdit = this.$parent.currentSelectTab.ableOperation
235 this.propsParam = this.$attrs; 235 this.propsParam = this.$attrs;
236 var formdata = new FormData(); 236 var formdata = new FormData();
237 let that = this 237 let that = this
238 this.$startLoading(); 238 this.$startLoading();
239 formdata.append("bsmSldy", this.propsParam.bsmSldy); 239 formdata.append("bsmSldy", this.propsParam.bsmSldy);
240 formdata.append("djlx", this.propsParam.djlx); 240 formdata.append("djlx", this.propsParam.djlx);
241 formdata.append("isEdit", this.ableOperation); 241 formdata.append("isEdit", this.viewEdit);
242 Init(formdata).then((res) => { 242 Init(formdata).then((res) => {
243 this.$nextTick(() => { 243 this.$nextTick(() => {
244 that.ruleForm = res.result; 244 that.ruleForm = res.result;
...@@ -253,7 +253,7 @@ ...@@ -253,7 +253,7 @@
253 ...mapGetters(["dictData", "flag"]), 253 ...mapGetters(["dictData", "flag"]),
254 // 根据流程判断表单是否为只读 254 // 根据流程判断表单是否为只读
255 editDisabled () { 255 editDisabled () {
256 if (!this.ableOperation) { 256 if (!this.viewEdit) {
257 //只读状态 257 //只读状态
258 return true; 258 return true;
259 } 259 }
...@@ -264,7 +264,7 @@ ...@@ -264,7 +264,7 @@
264 return { 264 return {
265 mjdw: "1", 265 mjdw: "1",
266 //表单是否可操作 266 //表单是否可操作
267 ableOperation: true, 267 viewEdit: true,
268 key: 0, 268 key: 0,
269 isShow: false, 269 isShow: false,
270 disabled: true, 270 disabled: true,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 <!-- 2 <!--
3 * @Description: 3 * @Description:
4 * @Autor: renchao 4 * @Autor: renchao
5 * @LastEditTime: 2023-08-16 09:56:08 5 * @LastEditTime: 2023-08-16 16:13:20
6 --> 6 -->
7 <template> 7 <template>
8 <!-- 受理信息 --> 8 <!-- 受理信息 -->
...@@ -185,7 +185,7 @@ ...@@ -185,7 +185,7 @@
185 </el-row> 185 </el-row>
186 <qlrCommonTable 186 <qlrCommonTable
187 :tableData="ruleForm.qlrList" 187 :tableData="ruleForm.qlrList"
188 :disabled="!viewEdit" 188 :disabled="viewEdit"
189 @upDateQlrxxList="upDateQlrxxList" 189 @upDateQlrxxList="upDateQlrxxList"
190 :gyfs="ruleForm.sldy.gyfs" /> 190 :gyfs="ruleForm.sldy.gyfs" />
191 <div class="slxx_title title-block"> 191 <div class="slxx_title title-block">
......
1 <!-- 1 <!--
2 * @Description: 房屋多幢受理信息 2 * @Description: 房屋多幢受理信息
3 * @Autor: ssq 3 * @Autor: ssq
4 * @LastEditTime: 2023-08-16 09:06:27 4 * @LastEditTime: 2023-08-16 16:14:03
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
152 <div class="triangle"></div> 152 <div class="triangle"></div>
153 </div> 153 </div>
154 <tdytTable 154 <tdytTable
155 :ableOperation="ableOperation" 155 :ableOperation="viewEdit"
156 :tableData="ruleForm.tdytqxList" 156 :tableData="ruleForm.tdytqxList"
157 @upDateTdytxxList="upDateTdytxxList" /> 157 @upDateTdytxxList="upDateTdytxxList" />
158 <div class="slxx_title title-block"> 158 <div class="slxx_title title-block">
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
163 <el-col :span="12" v-if="ruleForm.qlxx"> 163 <el-col :span="12" v-if="ruleForm.qlxx">
164 <el-form-item label="共有方式:"> 164 <el-form-item label="共有方式:">
165 <el-radio-group 165 <el-radio-group
166 :disabled="!ableOperation" 166 :disabled="!viewEdit"
167 v-model="ruleForm.sldy.gyfs"> 167 v-model="ruleForm.sldy.gyfs">
168 <el-radio label="0">单独所有</el-radio> 168 <el-radio label="0">单独所有</el-radio>
169 <el-radio label="1">共同共有</el-radio> 169 <el-radio label="1">共同共有</el-radio>
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
176 <el-form-item label="是否分别持证:"> 176 <el-form-item label="是否分别持证:">
177 <el-radio-group 177 <el-radio-group
178 v-model="ruleForm.sldy.sqfbcz" 178 v-model="ruleForm.sldy.sqfbcz"
179 :disabled="!ableOperation"> 179 :disabled="!viewEdit">
180 <el-radio :label="1"></el-radio> 180 <el-radio :label="1"></el-radio>
181 <el-radio :label="0"></el-radio> 181 <el-radio :label="0"></el-radio>
182 </el-radio-group> 182 </el-radio-group>
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
189 <el-select 189 <el-select
190 v-model="ruleForm.czr" 190 v-model="ruleForm.czr"
191 placeholder="持证人" 191 placeholder="持证人"
192 :disabled="!ableOperation"> 192 :disabled="!viewEdit">
193 <el-option 193 <el-option
194 v-for="(item,index) in czrOptions" 194 v-for="(item,index) in czrOptions"
195 :key="index" 195 :key="index"
...@@ -203,8 +203,8 @@ ...@@ -203,8 +203,8 @@
203 <qlrCommonTable 203 <qlrCommonTable
204 @upDateQlrxxList="upDateQlrxxList" 204 @upDateQlrxxList="upDateQlrxxList"
205 :tableData="ruleForm.qlrList" 205 :tableData="ruleForm.qlrList"
206 :disabled="!ableOperation" 206 :disabled="viewEdit"
207 :gyfs="ruleForm.slsq.gyfs" /> 207 :gyfs="ruleForm.sldy.gyfs" />
208 208
209 <div v-if="ruleForm.ywrList && ruleForm.slsq.djlx == '200'"> 209 <div v-if="ruleForm.ywrList && ruleForm.slsq.djlx == '200'">
210 <div class="slxx_title title-block"> 210 <div class="slxx_title title-block">
...@@ -215,7 +215,7 @@ ...@@ -215,7 +215,7 @@
215 v-if="ruleForm.qlxx" 215 v-if="ruleForm.qlxx"
216 @upDateQlrxxList="upDateYwrxxList" 216 @upDateQlrxxList="upDateYwrxxList"
217 :tableData="ruleForm.ywrList" 217 :tableData="ruleForm.ywrList"
218 :gyfs="ruleForm.qlxx.gyfs" /> 218 :gyfs="ruleForm.sldy.gyfs" />
219 </div> 219 </div>
220 <div class="slxx_title title-block"> 220 <div class="slxx_title title-block">
221 登记原因 221 登记原因
...@@ -228,14 +228,14 @@ ...@@ -228,14 +228,14 @@
228 class="textArea" 228 class="textArea"
229 type="textarea" 229 type="textarea"
230 maxlength="500" show-word-limit 230 maxlength="500" show-word-limit
231 :disabled="!ableOperation" 231 :disabled="!viewEdit"
232 v-model="ruleForm.lq.djyy"> 232 v-model="ruleForm.lq.djyy">
233 </el-input> 233 </el-input>
234 </el-form-item> 234 </el-form-item>
235 </el-col> 235 </el-col>
236 </el-row> 236 </el-row>
237 </div> 237 </div>
238 <el-row class="btn" v-if="ableOperation"> 238 <el-row class="btn" v-if="viewEdit">
239 <el-form-item> 239 <el-form-item>
240 <el-button type="primary" @click="onSubmit">保存</el-button> 240 <el-button type="primary" @click="onSubmit">保存</el-button>
241 </el-form-item> 241 </el-form-item>
...@@ -252,12 +252,12 @@ ...@@ -252,12 +252,12 @@
252 export default { 252 export default {
253 mixins: [ywmix], 253 mixins: [ywmix],
254 mounted () { 254 mounted () {
255 this.ableOperation = this.$parent.currentSelectTab.ableOperation; 255 this.viewEdit = this.$parent.currentSelectTab.viewEdit;
256 this.propsParam = this.$attrs; 256 this.propsParam = this.$attrs;
257 var formdata = new FormData(); 257 var formdata = new FormData();
258 formdata.append("bsmSldy", this.propsParam.bsmSldy); 258 formdata.append("bsmSldy", this.propsParam.bsmSldy);
259 formdata.append("djlx", this.propsParam.djlx); 259 formdata.append("djlx", this.propsParam.djlx);
260 formdata.append("isEdit", this.ableOperation); 260 formdata.append("isEdit", this.viewEdit);
261 Init(formdata).then((res) => { 261 Init(formdata).then((res) => {
262 if (res.code === 200 && res.result) { 262 if (res.code === 200 && res.result) {
263 this.ruleForm = { 263 this.ruleForm = {
...@@ -303,7 +303,7 @@ ...@@ -303,7 +303,7 @@
303 //传递参数 303 //传递参数
304 propsParam: this.$attrs, 304 propsParam: this.$attrs,
305 //表单是否可操作 305 //表单是否可操作
306 ableOperation: true, 306 viewEdit: true,
307 rules: {}, 307 rules: {},
308 }; 308 };
309 }, 309 },
......
...@@ -212,12 +212,13 @@ ...@@ -212,12 +212,13 @@
212 </el-form-item> 212 </el-form-item>
213 </el-col> 213 </el-col>
214 </el-row> 214 </el-row>
215 <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" :disabled="!viewEdit" :gyfs="ruleForm.slywxx.gyfs" /> 215 <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" :disabled="viewEdit"
216 :gyfs="ruleForm.sldy.gyfs" />
216 <div class="slxx_title title-block"> 217 <div class="slxx_title title-block">
217 家庭成员 218 家庭成员
218 <div class="triangle"></div> 219 <div class="triangle"></div>
219 </div> 220 </div>
220 <JtcyTable :tableData="ruleForm.jtcyList" @upDateJtcyList="upDateJtcyList" :disabled="!viewEdit" :gyfs="ruleForm.slywxx.gyfs" /> 221 <JtcyTable :tableData="ruleForm.jtcyList" @upDateJtcyList="upDateJtcyList" :disabled="viewEdit" :gyfs="ruleForm.sldy.gyfs" />
221 <div class="slxx_title title-block"> 222 <div class="slxx_title title-block">
222 登记原因 223 登记原因
223 <div class="triangle"></div> 224 <div class="triangle"></div>
......
...@@ -90,17 +90,17 @@ ...@@ -90,17 +90,17 @@
90 <el-row :gutter="10"> 90 <el-row :gutter="10">
91 <el-col :span="8"> 91 <el-col :span="8">
92 <el-form-item label="发包方名称:"> 92 <el-form-item label="发包方名称:">
93 <el-input v-model="ruleForm.nydsyq.fbfmc" :disabled="!ableOperation"></el-input> 93 <el-input v-model="ruleForm.nydsyq.fbfmc" :disabled="!viewEdit"></el-input>
94 </el-form-item> 94 </el-form-item>
95 </el-col> 95 </el-col>
96 <el-col :span="8"> 96 <el-col :span="8">
97 <el-form-item label="发包方代码:"> 97 <el-form-item label="发包方代码:">
98 <el-input v-model="ruleForm.nydsyq.fbfdm" :disabled="!ableOperation"></el-input> 98 <el-input v-model="ruleForm.nydsyq.fbfdm" :disabled="!viewEdit"></el-input>
99 </el-form-item> 99 </el-form-item>
100 </el-col> 100 </el-col>
101 <el-col :span="8"> 101 <el-col :span="8">
102 <el-form-item label="土地所有权性质:"> 102 <el-form-item label="土地所有权性质:">
103 <el-select v-model="ruleForm.nydsyq.tdsyqxzmc" class="width100" :disabled="!ableOperation" filterable clearable> 103 <el-select v-model="ruleForm.nydsyq.tdsyqxzmc" class="width100" :disabled="!viewEdit" filterable clearable>
104 <el-option v-for="item in dictData['A45']" :key="item.dname" :label="item.dname" :value="item.dname"> 104 <el-option v-for="item in dictData['A45']" :key="item.dname" :label="item.dname" :value="item.dname">
105 </el-option> 105 </el-option>
106 </el-select> 106 </el-select>
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
122 <el-row :gutter="10"> 122 <el-row :gutter="10">
123 <el-col :span="8"> 123 <el-col :span="8">
124 <el-form-item label="水域滩涂类型:"> 124 <el-form-item label="水域滩涂类型:">
125 <el-select v-model="ruleForm.nydsyq.syttlx" :disabled="!ableOperation" class="width100" filterable clearable @change="changeSyttlx"> 125 <el-select v-model="ruleForm.nydsyq.syttlx" :disabled="!viewEdit" class="width100" filterable clearable @change="changeSyttlx">
126 <el-option v-for="item in dictData['A23']" :key="item.dcode" :label="item.dname" :value="item.dcode"> 126 <el-option v-for="item in dictData['A23']" :key="item.dcode" :label="item.dname" :value="item.dcode">
127 </el-option> 127 </el-option>
128 </el-select> 128 </el-select>
...@@ -130,7 +130,7 @@ ...@@ -130,7 +130,7 @@
130 </el-col> 130 </el-col>
131 <el-col :span="8"> 131 <el-col :span="8">
132 <el-form-item label="养殖业方式:"> 132 <el-form-item label="养殖业方式:">
133 <el-select v-model="ruleForm.nydsyq.yzyfs" :disabled="!ableOperation" class="width100" filterable clearable @change="changeYzyfs"> 133 <el-select v-model="ruleForm.nydsyq.yzyfs" :disabled="!viewEdit" class="width100" filterable clearable @change="changeYzyfs">
134 <el-option v-for="item in dictData['A24']" :key="item.dcode" :label="item.dname" :value="item.dcode"> 134 <el-option v-for="item in dictData['A24']" :key="item.dcode" :label="item.dname" :value="item.dcode">
135 </el-option> 135 </el-option>
136 </el-select> 136 </el-select>
...@@ -138,19 +138,19 @@ ...@@ -138,19 +138,19 @@
138 </el-col> 138 </el-col>
139 <el-col :span="8"> 139 <el-col :span="8">
140 <el-form-item label="草原质量:"> 140 <el-form-item label="草原质量:">
141 <el-input v-model="ruleForm.nydsyq.cyzl" :disabled="!ableOperation"></el-input> 141 <el-input v-model="ruleForm.nydsyq.cyzl" :disabled="!viewEdit"></el-input>
142 </el-form-item> 142 </el-form-item>
143 </el-col> 143 </el-col>
144 </el-row> 144 </el-row>
145 <el-row :gutter="10"> 145 <el-row :gutter="10">
146 <el-col :span="8"> 146 <el-col :span="8">
147 <el-form-item label="适宜载畜量:"> 147 <el-form-item label="适宜载畜量:">
148 <el-input v-model="ruleForm.nydsyq.syzcl" :disabled="!ableOperation" oninput="value=value.replace(/[^\d.]/g,'')"></el-input> 148 <el-input v-model="ruleForm.nydsyq.syzcl" :disabled="!viewEdit" oninput="value=value.replace(/[^\d.]/g,'')"></el-input>
149 </el-form-item> 149 </el-form-item>
150 </el-col> 150 </el-col>
151 <el-col :span="8"> 151 <el-col :span="8">
152 <el-form-item label="用地用海分类:"> 152 <el-form-item label="用地用海分类:">
153 <el-select v-model="ruleForm.nydsyq.ydyhfl" :disabled="!ableOperation" class="width100" filterable clearable @change="changeYdyhfl"> 153 <el-select v-model="ruleForm.nydsyq.ydyhfl" :disabled="!viewEdit" class="width100" filterable clearable @change="changeYdyhfl">
154 <el-option v-for="item in dictData['A51']" :key="item.dcode" :label="item.dname" :value="item.dcode"> 154 <el-option v-for="item in dictData['A51']" :key="item.dcode" :label="item.dname" :value="item.dcode">
155 </el-option> 155 </el-option>
156 </el-select> 156 </el-select>
...@@ -158,14 +158,14 @@ ...@@ -158,14 +158,14 @@
158 </el-col> 158 </el-col>
159 <el-col :span="8"> 159 <el-col :span="8">
160 <el-form-item label="土地承包合同:"> 160 <el-form-item label="土地承包合同:">
161 <el-input v-model="ruleForm.nydsyq.tdcbht" :disabled="!ableOperation"></el-input> 161 <el-input v-model="ruleForm.nydsyq.tdcbht" :disabled="!viewEdit"></el-input>
162 </el-form-item> 162 </el-form-item>
163 </el-col> 163 </el-col>
164 </el-row> 164 </el-row>
165 <el-row :gutter="10"> 165 <el-row :gutter="10">
166 <el-col> 166 <el-col>
167 <el-form-item label="附记:" prop="fj"> 167 <el-form-item label="附记:" prop="fj">
168 <el-input type="textarea" v-model="ruleForm.nydsyq.fj" :disabled="!ableOperation"></el-input> 168 <el-input type="textarea" v-model="ruleForm.nydsyq.fj" :disabled="!viewEdit"></el-input>
169 </el-form-item> 169 </el-form-item>
170 </el-col> 170 </el-col>
171 </el-row> 171 </el-row>
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
176 <el-row :gutter="10"> 176 <el-row :gutter="10">
177 <el-col :span="12"> 177 <el-col :span="12">
178 <el-form-item label="共有方式:"> 178 <el-form-item label="共有方式:">
179 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 179 <el-radio-group :disabled="!viewEdit" v-model="ruleForm.sldy.gyfs">
180 <el-radio label="0">单独所有</el-radio> 180 <el-radio label="0">单独所有</el-radio>
181 <el-radio label="1">共同共有</el-radio> 181 <el-radio label="1">共同共有</el-radio>
182 <el-radio label="2">按份所有</el-radio> 182 <el-radio label="2">按份所有</el-radio>
...@@ -188,7 +188,7 @@ ...@@ -188,7 +188,7 @@
188 <el-form-item label="是否分别持证:"> 188 <el-form-item label="是否分别持证:">
189 <el-radio-group 189 <el-radio-group
190 v-model="ruleForm.sldy.sqfbcz" 190 v-model="ruleForm.sldy.sqfbcz"
191 :disabled="!ableOperation"> 191 :disabled="!viewEdit">
192 <el-radio :label="1"></el-radio> 192 <el-radio :label="1"></el-radio>
193 <el-radio :label="0"></el-radio> 193 <el-radio :label="0"></el-radio>
194 </el-radio-group> 194 </el-radio-group>
...@@ -201,7 +201,7 @@ ...@@ -201,7 +201,7 @@
201 <el-select 201 <el-select
202 v-model="ruleForm.czr" 202 v-model="ruleForm.czr"
203 placeholder="持证人" 203 placeholder="持证人"
204 :disabled="!ableOperation"> 204 :disabled="!viewEdit">
205 <el-option 205 <el-option
206 v-for="item in czrOptions" 206 v-for="item in czrOptions"
207 :key="item.zjh" 207 :key="item.zjh"
...@@ -212,17 +212,18 @@ ...@@ -212,17 +212,18 @@
212 </el-form-item> 212 </el-form-item>
213 </el-col> 213 </el-col>
214 </el-row> 214 </el-row>
215 <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" :disabled="!ableOperation" :gyfs="ruleForm.sldy.gyfs" /> 215 <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" :disabled="viewEdit"
216 :gyfs="ruleForm.sldy.gyfs" />
216 <div class="slxx_title title-block"> 217 <div class="slxx_title title-block">
217 义务人信息 218 义务人信息
218 <div class="triangle"></div> 219 <div class="triangle"></div>
219 </div> 220 </div>
220 <qlrCommonTable :tableData="ruleForm.ywrList" @upDateQlrxxList="upDateYwrxxList" :disabled="!ableOperation" /> 221 <qlrCommonTable :tableData="ruleForm.ywrList" @upDateQlrxxList="upDateYwrxxList" :disabled="viewEdit" />
221 <div class="slxx_title title-block"> 222 <div class="slxx_title title-block">
222 家庭成员 223 家庭成员
223 <div class="triangle"></div> 224 <div class="triangle"></div>
224 </div> 225 </div>
225 <JtcyTable :tableData="ruleForm.jtcyList" :disabled="!ableOperation" @upDateJtcyList="upDateJtcyList" :gyfs="ruleForm.slywxx.gyfs" /> 226 <JtcyTable :tableData="ruleForm.jtcyList" :disabled="!viewEdit" @upDateJtcyList="upDateJtcyList" :gyfs="ruleForm.slywxx.gyfs" />
226 <div class="slxx_title title-block"> 227 <div class="slxx_title title-block">
227 登记原因 228 登记原因
228 <div class="triangle"></div> 229 <div class="triangle"></div>
...@@ -230,14 +231,14 @@ ...@@ -230,14 +231,14 @@
230 <el-row :gutter="10"> 231 <el-row :gutter="10">
231 <el-col> 232 <el-col>
232 <el-form-item label="登记原因:" prop="djyy"> 233 <el-form-item label="登记原因:" prop="djyy">
233 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!ableOperation" 234 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!viewEdit"
234 v-model="ruleForm.nydsyq.djyy"> 235 v-model="ruleForm.nydsyq.djyy">
235 </el-input> 236 </el-input>
236 </el-form-item> 237 </el-form-item>
237 </el-col> 238 </el-col>
238 </el-row> 239 </el-row>
239 </div> 240 </div>
240 <el-row class="btn" v-if="ableOperation"> 241 <el-row class="btn" v-if="viewEdit">
241 <el-form-item> 242 <el-form-item>
242 <el-button type="primary" @click="onSubmit">保存</el-button> 243 <el-button type="primary" @click="onSubmit">保存</el-button>
243 </el-form-item> 244 </el-form-item>
...@@ -254,13 +255,13 @@ ...@@ -254,13 +255,13 @@
254 export default { 255 export default {
255 mixins: [ywmix], 256 mixins: [ywmix],
256 mounted () { 257 mounted () {
257 this.ableOperation = this.$parent.currentSelectTab.ableOperation 258 this.viewEdit = this.$parent.currentSelectTab.ableOperation
258 this.propsParam = this.$attrs; 259 this.propsParam = this.$attrs;
259 var formdata = new FormData(); 260 var formdata = new FormData();
260 this.$startLoading(); 261 this.$startLoading();
261 formdata.append("bsmSldy", this.propsParam.bsmSldy); 262 formdata.append("bsmSldy", this.propsParam.bsmSldy);
262 formdata.append("djlx", this.propsParam.djlx); 263 formdata.append("djlx", this.propsParam.djlx);
263 formdata.append("isEdit", this.ableOperation); 264 formdata.append("isEdit", this.viewEdit);
264 Init(formdata).then((res) => { 265 Init(formdata).then((res) => {
265 this.ruleForm = res.result; 266 this.ruleForm = res.result;
266 this.czrOptions = this.ruleForm.qlrList; 267 this.czrOptions = this.ruleForm.qlrList;
...@@ -275,7 +276,7 @@ ...@@ -275,7 +276,7 @@
275 data () { 276 data () {
276 return { 277 return {
277 //表单是否可操作 278 //表单是否可操作
278 ableOperation: true, 279 viewEdit: true,
279 disabled: true, 280 disabled: true,
280 czrOptions: [], 281 czrOptions: [],
281 ruleForm: {}, 282 ruleForm: {},
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-16 09:58:36 4 * @LastEditTime: 2023-08-16 16:09:58
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -294,7 +294,7 @@ ...@@ -294,7 +294,7 @@
294 </el-row> 294 </el-row>
295 <qlrCommonTable 295 <qlrCommonTable
296 :tableData="ruleForm.qlrList" 296 :tableData="ruleForm.qlrList"
297 :disabled="!viewEdit" 297 :disabled="viewEdit"
298 @upDateQlrxxList="upDateQlrxxList" 298 @upDateQlrxxList="upDateQlrxxList"
299 :key="key" 299 :key="key"
300 :gyfs="ruleForm.sldy.gyfs" /> 300 :gyfs="ruleForm.sldy.gyfs" />
...@@ -306,7 +306,7 @@ ...@@ -306,7 +306,7 @@
306 </div> 306 </div>
307 <qlrCommonTable 307 <qlrCommonTable
308 v-if="ruleForm.ywrList" 308 v-if="ruleForm.ywrList"
309 :disabled="!viewEdit" 309 :disabled="viewEdit"
310 :tableData="ruleForm.ywrList" 310 :tableData="ruleForm.ywrList"
311 :key="key" 311 :key="key"
312 @upDateQlrxxList="upDateYwrxxList" /> 312 @upDateQlrxxList="upDateYwrxxList" />
......
...@@ -113,7 +113,7 @@ ...@@ -113,7 +113,7 @@
113 <el-input v-model="ruleForm.ygdj.qdjg"></el-input> 113 <el-input v-model="ruleForm.ygdj.qdjg"></el-input>
114 <el-select 114 <el-select
115 v-model="ruleForm.ygdj.jedw" 115 v-model="ruleForm.ygdj.jedw"
116 :disabled="!ableOperation" 116 :disabled="!viewEdit"
117 style="width: 68px"> 117 style="width: 68px">
118 <el-option 118 <el-option
119 v-for="item in dictData['A57']" 119 v-for="item in dictData['A57']"
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
145 <el-row :gutter="10"> 145 <el-row :gutter="10">
146 <el-col :span="14" v-if="ruleForm.qlxx"> 146 <el-col :span="14" v-if="ruleForm.qlxx">
147 <el-form-item label="共有方式:"> 147 <el-form-item label="共有方式:">
148 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 148 <el-radio-group :disabled="!viewEdit" v-model="ruleForm.sldy.gyfs">
149 <el-radio label="0">单独所有</el-radio> 149 <el-radio label="0">单独所有</el-radio>
150 <el-radio label="1">共同共有</el-radio> 150 <el-radio label="1">共同共有</el-radio>
151 <el-radio label="2">按份所有</el-radio> 151 <el-radio label="2">按份所有</el-radio>
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
157 <el-form-item label="是否分别持证:"> 157 <el-form-item label="是否分别持证:">
158 <el-radio-group 158 <el-radio-group
159 v-model="ruleForm.sldy.sqfbcz" 159 v-model="ruleForm.sldy.sqfbcz"
160 :disabled="!ableOperation"> 160 :disabled="!viewEdit">
161 <el-radio :label="1"></el-radio> 161 <el-radio :label="1"></el-radio>
162 <el-radio :label="0"></el-radio> 162 <el-radio :label="0"></el-radio>
163 </el-radio-group> 163 </el-radio-group>
...@@ -170,7 +170,7 @@ ...@@ -170,7 +170,7 @@
170 <el-select 170 <el-select
171 v-model="ruleForm.czr" 171 v-model="ruleForm.czr"
172 placeholder="持证人" 172 placeholder="持证人"
173 :disabled="!ableOperation"> 173 :disabled="!viewEdit">
174 <el-option 174 <el-option
175 v-for="item in czrOptions" 175 v-for="item in czrOptions"
176 :key="item.zjh" 176 :key="item.zjh"
...@@ -181,14 +181,14 @@ ...@@ -181,14 +181,14 @@
181 </el-form-item> 181 </el-form-item>
182 </el-col> 182 </el-col>
183 </el-row> 183 </el-row>
184 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :disabled="!ableOperation" :tableData="ruleForm.qlrList" 184 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :disabled="viewEdit" :tableData="ruleForm.qlrList"
185 :gyfs="ruleForm.qlxx.gyfs" /> 185 :gyfs="ruleForm.sldy.gyfs" />
186 <div class="slxx_title title-block"> 186 <div class="slxx_title title-block">
187 义务人信息 187 义务人信息
188 <div class="triangle"></div> 188 <div class="triangle"></div>
189 </div> 189 </div>
190 <qlrCommonTable @upDateQlrxxList="upDateYwrxxList" :disabled="!ableOperation" :tableData="ruleForm.ywrList" 190 <qlrCommonTable @upDateQlrxxList="upDateYwrxxList" :disabled="viewEdit" :tableData="ruleForm.ywrList"
191 :gyfs="ruleForm.qlxx.gyfs" /> 191 :gyfs="ruleForm.sldy.gyfs" />
192 <div class="slxx_title title-block"> 192 <div class="slxx_title title-block">
193 登记原因 193 登记原因
194 <div class="triangle"></div> 194 <div class="triangle"></div>
...@@ -196,14 +196,14 @@ ...@@ -196,14 +196,14 @@
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" maxlength="500" show-word-limit :disabled="!ableOperation" 199 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!viewEdit"
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>
203 </el-col> 203 </el-col>
204 </el-row> 204 </el-row>
205 </div> 205 </div>
206 <el-row class="btn" v-if="ableOperation"> 206 <el-row class="btn" v-if="viewEdit">
207 <el-form-item> 207 <el-form-item>
208 <el-button type="primary" @click="onSubmit">保存</el-button> 208 <el-button type="primary" @click="onSubmit">保存</el-button>
209 </el-form-item> 209 </el-form-item>
...@@ -219,13 +219,13 @@ ...@@ -219,13 +219,13 @@
219 export default { 219 export default {
220 mixins: [ywmix], 220 mixins: [ywmix],
221 created () { 221 created () {
222 this.ableOperation = this.$parent.currentSelectTab.ableOperation 222 this.viewEdit = this.$parent.currentSelectTab.ableOperation
223 this.propsParam = this.$attrs; 223 this.propsParam = this.$attrs;
224 this.$startLoading(); 224 this.$startLoading();
225 var formdata = new FormData(); 225 var formdata = new FormData();
226 formdata.append("bsmSldy", this.propsParam.bsmSldy); 226 formdata.append("bsmSldy", this.propsParam.bsmSldy);
227 formdata.append("djlx", this.propsParam.djlx); 227 formdata.append("djlx", this.propsParam.djlx);
228 formdata.append("isEdit", this.ableOperation); 228 formdata.append("isEdit", this.viewEdit);
229 Init(formdata).then(res => { 229 Init(formdata).then(res => {
230 if (res.code === 200 && res.result) { 230 if (res.code === 200 && res.result) {
231 this.ruleForm = res.result; 231 this.ruleForm = res.result;
...@@ -241,7 +241,7 @@ ...@@ -241,7 +241,7 @@
241 data () { 241 data () {
242 return { 242 return {
243 //表单是否可操作 243 //表单是否可操作
244 ableOperation: true, 244 viewEdit: true,
245 disabled: true, 245 disabled: true,
246 tdytOption: [], 246 tdytOption: [],
247 czrOptions: [], 247 czrOptions: [],
......
...@@ -149,13 +149,13 @@ ...@@ -149,13 +149,13 @@
149 </el-form-item> 149 </el-form-item>
150 </el-col> 150 </el-col>
151 </el-row> 151 </el-row>
152 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!viewEdit" 152 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="viewEdit"
153 :gyfs="ruleForm.sldy.gyfs" /> 153 :gyfs="ruleForm.sldy.gyfs" />
154 <div class="slxx_title title-block"> 154 <div class="slxx_title title-block">
155 义务人信息 155 义务人信息
156 <div class="triangle"></div> 156 <div class="triangle"></div>
157 </div> 157 </div>
158 <qlrCommonTable @upDateQlrxxList="upDateYwrxxList" :tableData="ruleForm.ywrList" :disabled="!viewEdit" 158 <qlrCommonTable @upDateQlrxxList="upDateYwrxxList" :tableData="ruleForm.ywrList" :disabled="viewEdit"
159 :gyfs="ruleForm.sldy.gyfs" /> 159 :gyfs="ruleForm.sldy.gyfs" />
160 <div class="slxx_title title-block"> 160 <div class="slxx_title title-block">
161 登记原因 161 登记原因
......
...@@ -117,10 +117,10 @@ ...@@ -117,10 +117,10 @@
117 <el-col :span="8"> 117 <el-col :span="8">
118 <el-form-item label="被担保主债权数额:"> 118 <el-form-item label="被担保主债权数额:">
119 <div class="flex"> 119 <div class="flex">
120 <el-input v-model="ruleForm.ygdj.qdjg" :disabled="!ableOperation"></el-input> 120 <el-input v-model="ruleForm.ygdj.qdjg" :disabled="!viewEdit"></el-input>
121 <el-select 121 <el-select
122 v-model="ruleForm.ygdj.jedw" 122 v-model="ruleForm.ygdj.jedw"
123 :disabled="!ableOperation" 123 :disabled="!viewEdit"
124 style="width: 68px"> 124 style="width: 68px">
125 <el-option 125 <el-option
126 v-for="item in dictData['A57']" 126 v-for="item in dictData['A57']"
...@@ -134,13 +134,13 @@ ...@@ -134,13 +134,13 @@
134 </el-col> 134 </el-col>
135 <el-col :span="8"> 135 <el-col :span="8">
136 <el-form-item label="债务履行起始时间:"> 136 <el-form-item label="债务履行起始时间:">
137 <el-date-picker v-model="ruleForm.ygdj.zwlxqssj" :disabled="!ableOperation" type="date"> 137 <el-date-picker v-model="ruleForm.ygdj.zwlxqssj" :disabled="!viewEdit" type="date">
138 </el-date-picker> 138 </el-date-picker>
139 </el-form-item> 139 </el-form-item>
140 </el-col> 140 </el-col>
141 <el-col :span="8"> 141 <el-col :span="8">
142 <el-form-item label="债务履行结束时间:"> 142 <el-form-item label="债务履行结束时间:">
143 <el-date-picker v-model="ruleForm.ygdj.zwlxjssj" :disabled="!ableOperation" type="date"> 143 <el-date-picker v-model="ruleForm.ygdj.zwlxjssj" :disabled="!viewEdit" type="date">
144 </el-date-picker> 144 </el-date-picker>
145 </el-form-item> 145 </el-form-item>
146 </el-col> 146 </el-col>
...@@ -149,13 +149,13 @@ ...@@ -149,13 +149,13 @@
149 <el-col :span="16"> 149 <el-col :span="16">
150 <el-form-item label="是否存在禁止或限制转让抵押不动产的约定:"> 150 <el-form-item label="是否存在禁止或限制转让抵押不动产的约定:">
151 <el-input v-model="ruleForm.ygdj.sfczjzhxz" 151 <el-input v-model="ruleForm.ygdj.sfczjzhxz"
152 :disabled="ruleForm.sldy.djlx == '300' && !ableOperation"></el-input> 152 :disabled="ruleForm.sldy.djlx == '300' && !viewEdit"></el-input>
153 </el-form-item> 153 </el-form-item>
154 </el-col> 154 </el-col>
155 <el-col :span="8"> 155 <el-col :span="8">
156 <el-form-item label="担保范围:"> 156 <el-form-item label="担保范围:">
157 <el-input v-model="ruleForm.ygdj.dbfw" 157 <el-input v-model="ruleForm.ygdj.dbfw"
158 :disabled="ruleForm.sldy.djlx == '300' && !ableOperation"></el-input> 158 :disabled="ruleForm.sldy.djlx == '300' && !viewEdit"></el-input>
159 </el-form-item> 159 </el-form-item>
160 </el-col> 160 </el-col>
161 161
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
163 <el-row> 163 <el-row>
164 <el-col :span="24"> 164 <el-col :span="24">
165 <el-form-item label="附记:" prop="fj"> 165 <el-form-item label="附记:" prop="fj">
166 <el-input type="textarea" v-model="ruleForm.ygdj.fj" :disabled="!ableOperation"></el-input> 166 <el-input type="textarea" v-model="ruleForm.ygdj.fj" :disabled="!viewEdit"></el-input>
167 </el-form-item> 167 </el-form-item>
168 </el-col> 168 </el-col>
169 </el-row> 169 </el-row>
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
174 <el-row :gutter="10"> 174 <el-row :gutter="10">
175 <el-col :span="12"> 175 <el-col :span="12">
176 <el-form-item label="共有方式:"> 176 <el-form-item label="共有方式:">
177 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 177 <el-radio-group :disabled="!viewEdit" v-model="ruleForm.sldy.gyfs">
178 <el-radio label="0">单独所有</el-radio> 178 <el-radio label="0">单独所有</el-radio>
179 <el-radio label="1">共同共有</el-radio> 179 <el-radio label="1">共同共有</el-radio>
180 <el-radio label="2">按份所有</el-radio> 180 <el-radio label="2">按份所有</el-radio>
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
186 <el-form-item label="是否分别持证:"> 186 <el-form-item label="是否分别持证:">
187 <el-radio-group 187 <el-radio-group
188 v-model="ruleForm.sldy.sqfbcz" 188 v-model="ruleForm.sldy.sqfbcz"
189 :disabled="!ableOperation"> 189 :disabled="!viewEdit">
190 <el-radio :label="1"></el-radio> 190 <el-radio :label="1"></el-radio>
191 <el-radio :label="0"></el-radio> 191 <el-radio :label="0"></el-radio>
192 </el-radio-group> 192 </el-radio-group>
...@@ -199,7 +199,7 @@ ...@@ -199,7 +199,7 @@
199 <el-select 199 <el-select
200 v-model="ruleForm.czr" 200 v-model="ruleForm.czr"
201 placeholder="持证人" 201 placeholder="持证人"
202 :disabled="!ableOperation"> 202 :disabled="!viewEdit">
203 <el-option 203 <el-option
204 v-for="item in czrOptions" 204 v-for="item in czrOptions"
205 :key="item.zjh" 205 :key="item.zjh"
...@@ -210,13 +210,13 @@ ...@@ -210,13 +210,13 @@
210 </el-form-item> 210 </el-form-item>
211 </el-col> 211 </el-col>
212 </el-row> 212 </el-row>
213 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" 213 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="viewEdit"
214 :gyfs="ruleForm.sldy.gyfs" /> 214 :gyfs="ruleForm.sldy.gyfs" />
215 <div class="slxx_title title-block"> 215 <div class="slxx_title title-block">
216 义务人信息 216 义务人信息
217 <div class="triangle"></div> 217 <div class="triangle"></div>
218 </div> 218 </div>
219 <qlrCommonTable @upDateQlrxxList="upDateYwrxxList" :tableData="ruleForm.ywrList" :disabled="!ableOperation" 219 <qlrCommonTable @upDateQlrxxList="upDateYwrxxList" :tableData="ruleForm.ywrList" :disabled="viewEdit"
220 :gyfs="ruleForm.sldy.gyfs" /> 220 :gyfs="ruleForm.sldy.gyfs" />
221 <div class="slxx_title title-block"> 221 <div class="slxx_title title-block">
222 登记原因 222 登记原因
...@@ -225,14 +225,14 @@ ...@@ -225,14 +225,14 @@
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" maxlength="500" show-word-limit :disabled="!ableOperation" 228 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!viewEdit"
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>
232 </el-col> 232 </el-col>
233 </el-row> 233 </el-row>
234 </div> 234 </div>
235 <el-row class="btn" v-if="ableOperation"> 235 <el-row class="btn" v-if="viewEdit">
236 <el-form-item> 236 <el-form-item>
237 <el-button type="primary" @click="onSubmit">保存</el-button> 237 <el-button type="primary" @click="onSubmit">保存</el-button>
238 </el-form-item> 238 </el-form-item>
...@@ -248,7 +248,7 @@ ...@@ -248,7 +248,7 @@
248 export default { 248 export default {
249 mixins: [ywmix], 249 mixins: [ywmix],
250 created () { 250 created () {
251 this.ableOperation = this.$parent.currentSelectTab.ableOperation 251 this.viewEdit = this.$parent.currentSelectTab.ableOperation
252 this.propsParam = this.$attrs; 252 this.propsParam = this.$attrs;
253 var formdata = new FormData(); 253 var formdata = new FormData();
254 let that = this 254 let that = this
...@@ -256,7 +256,7 @@ ...@@ -256,7 +256,7 @@
256 formdata.append("bsmSldy", this.propsParam.bsmSldy); 256 formdata.append("bsmSldy", this.propsParam.bsmSldy);
257 formdata.append("bsmSlsq", this.$route.query.bsmSlsq); 257 formdata.append("bsmSlsq", this.$route.query.bsmSlsq);
258 formdata.append("djlx", this.propsParam.djlx); 258 formdata.append("djlx", this.propsParam.djlx);
259 formdata.append("isEdit", this.ableOperation); 259 formdata.append("isEdit", this.viewEdit);
260 Init(formdata).then((res) => { 260 Init(formdata).then((res) => {
261 if (res.code === 200 && res.result) { 261 if (res.code === 200 && res.result) {
262 that.ruleForm = res.result; 262 that.ruleForm = res.result;
...@@ -274,7 +274,7 @@ ...@@ -274,7 +274,7 @@
274 data () { 274 data () {
275 return { 275 return {
276 //表单是否可操作 276 //表单是否可操作
277 ableOperation: true, 277 viewEdit: true,
278 loading: false, 278 loading: false,
279 disabled: true, 279 disabled: true,
280 tdytOption: [], 280 tdytOption: [],
......
...@@ -170,12 +170,12 @@ ...@@ -170,12 +170,12 @@
170 </el-col> 170 </el-col>
171 </el-row> 171 </el-row>
172 <qlrCommonTable v-if="ruleForm.sldyList && ruleForm.sldyList.length>0" :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" 172 <qlrCommonTable v-if="ruleForm.sldyList && ruleForm.sldyList.length>0" :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList"
173 :disabled="!viewEdit" :gyfs="ruleForm.sldyList[0].gyfs" /> 173 :disabled="viewEdit" :gyfs="ruleForm.sldyList[0].gyfs" />
174 <div class="slxx_title title-block"> 174 <div class="slxx_title title-block">
175 抵押人信息 175 抵押人信息
176 <div class="triangle"></div> 176 <div class="triangle"></div>
177 </div> 177 </div>
178 <qlrCommonTable :tableData="ruleForm.ywrList" @upDateQlrxxList="upDateYwrxxList" :disabled="!viewEdit" /> 178 <qlrCommonTable :tableData="ruleForm.ywrList" @upDateQlrxxList="upDateYwrxxList" :disabled="viewEdit" />
179 179
180 <div class="slxx_title title-block"> 180 <div class="slxx_title title-block">
181 登记原因 181 登记原因
......
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
122 </el-col> 122 </el-col>
123 <el-col :span="16"> 123 <el-col :span="16">
124 <el-form-item label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px"> 124 <el-form-item label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px">
125 <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz" :disabled="!ableOperation"> 125 <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz" :disabled="!viewEdit">
126 <el-radio label="1">启用</el-radio> 126 <el-radio label="1">启用</el-radio>
127 <el-radio label="0">禁用</el-radio> 127 <el-radio label="0">禁用</el-radio>
128 </el-radio-group> 128 </el-radio-group>
...@@ -133,8 +133,8 @@ ...@@ -133,8 +133,8 @@
133 <el-row :gutter="10"> 133 <el-row :gutter="10">
134 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> 134 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1">
135 <el-form-item label="被担保主债权数额:"> 135 <el-form-item label="被担保主债权数额:">
136 <el-input v-model="ruleForm.diyaq.bdbzzqse" :disabled="!ableOperation"></el-input> 136 <el-input v-model="ruleForm.diyaq.bdbzzqse" :disabled="!viewEdit"></el-input>
137 <el-select v-model="ruleForm.diyaq.jedw" :disabled="!ableOperation"> 137 <el-select v-model="ruleForm.diyaq.jedw" :disabled="!viewEdit">
138 <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> 138 <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode">
139 </el-option> 139 </el-option>
140 </el-select> 140 </el-select>
...@@ -143,8 +143,8 @@ ...@@ -143,8 +143,8 @@
143 143
144 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2"> 144 <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2">
145 <el-form-item label="最高债权额:"> 145 <el-form-item label="最高债权额:">
146 <el-input v-model="ruleForm.diyaq.zgzqse" :disabled="!ableOperation"></el-input> 146 <el-input v-model="ruleForm.diyaq.zgzqse" :disabled="!viewEdit"></el-input>
147 <el-select v-model="ruleForm.diyaq.jedw" :disabled="!ableOperation"> 147 <el-select v-model="ruleForm.diyaq.jedw" :disabled="!viewEdit">
148 <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> 148 <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode">
149 </el-option> 149 </el-option>
150 </el-select> 150 </el-select>
...@@ -153,13 +153,13 @@ ...@@ -153,13 +153,13 @@
153 153
154 <el-col :span="8"> 154 <el-col :span="8">
155 <el-form-item label="债务履行起始时间:"> 155 <el-form-item label="债务履行起始时间:">
156 <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" :disabled="!ableOperation" type="date"> 156 <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" :disabled="!viewEdit" type="date">
157 </el-date-picker> 157 </el-date-picker>
158 </el-form-item> 158 </el-form-item>
159 </el-col> 159 </el-col>
160 <el-col :span="8"> 160 <el-col :span="8">
161 <el-form-item label="债务履行结束时间:"> 161 <el-form-item label="债务履行结束时间:">
162 <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" :disabled="!ableOperation" type="date"> 162 <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" :disabled="!viewEdit" type="date">
163 </el-date-picker> 163 </el-date-picker>
164 </el-form-item> 164 </el-form-item>
165 </el-col> 165 </el-col>
...@@ -169,21 +169,21 @@ ...@@ -169,21 +169,21 @@
169 <el-col :span="24"> 169 <el-col :span="24">
170 <el-form-item label="担保范围:"> 170 <el-form-item label="担保范围:">
171 <el-input v-model="ruleForm.diyaq.dbfw" 171 <el-input v-model="ruleForm.diyaq.dbfw"
172 :disabled="ruleForm.sldy.djlx == '300' && !ableOperation"></el-input> 172 :disabled="ruleForm.sldy.djlx == '300' && !viewEdit"></el-input>
173 </el-form-item> 173 </el-form-item>
174 </el-col> 174 </el-col>
175 </el-row> 175 </el-row>
176 <el-row> 176 <el-row>
177 <el-col :span="24"> 177 <el-col :span="24">
178 <el-form-item label="最高债权确定事实和数额:"> 178 <el-form-item label="最高债权确定事实和数额:">
179 <el-input v-model="ruleForm.diyaq.zgzqqdss" :disabled="!ableOperation"></el-input> 179 <el-input v-model="ruleForm.diyaq.zgzqqdss" :disabled="!viewEdit"></el-input>
180 </el-form-item> 180 </el-form-item>
181 </el-col> 181 </el-col>
182 </el-row> 182 </el-row>
183 <el-row> 183 <el-row>
184 <el-col> 184 <el-col>
185 <el-form-item label="附记:" prop="fj"> 185 <el-form-item label="附记:" prop="fj">
186 <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="!ableOperation"></el-input> 186 <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="!viewEdit"></el-input>
187 </el-form-item> 187 </el-form-item>
188 </el-col> 188 </el-col>
189 </el-row> 189 </el-row>
...@@ -195,7 +195,7 @@ ...@@ -195,7 +195,7 @@
195 <el-row :gutter="10"> 195 <el-row :gutter="10">
196 <el-col :span="14"> 196 <el-col :span="14">
197 <el-form-item label="共有方式:"> 197 <el-form-item label="共有方式:">
198 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 198 <el-radio-group :disabled="!viewEdit" v-model="ruleForm.sldy.gyfs">
199 <el-radio label="0">单独所有</el-radio> 199 <el-radio label="0">单独所有</el-radio>
200 <el-radio label="1">共同共有</el-radio> 200 <el-radio label="1">共同共有</el-radio>
201 <el-radio label="2">按份所有</el-radio> 201 <el-radio label="2">按份所有</el-radio>
...@@ -207,7 +207,7 @@ ...@@ -207,7 +207,7 @@
207 <el-form-item label="是否分别持证:"> 207 <el-form-item label="是否分别持证:">
208 <el-radio-group 208 <el-radio-group
209 v-model="ruleForm.sldy.sqfbcz" 209 v-model="ruleForm.sldy.sqfbcz"
210 :disabled="!ableOperation"> 210 :disabled="!viewEdit">
211 <el-radio :label="1"></el-radio> 211 <el-radio :label="1"></el-radio>
212 <el-radio :label="0"></el-radio> 212 <el-radio :label="0"></el-radio>
213 </el-radio-group> 213 </el-radio-group>
...@@ -220,7 +220,7 @@ ...@@ -220,7 +220,7 @@
220 <el-select 220 <el-select
221 v-model="ruleForm.czr" 221 v-model="ruleForm.czr"
222 placeholder="持证人" 222 placeholder="持证人"
223 :disabled="!ableOperation"> 223 :disabled="!viewEdit">
224 <el-option 224 <el-option
225 v-for="item in czrOptions" 225 v-for="item in czrOptions"
226 :key="item.zjh" 226 :key="item.zjh"
...@@ -231,12 +231,12 @@ ...@@ -231,12 +231,12 @@
231 </el-form-item> 231 </el-form-item>
232 </el-col> 232 </el-col>
233 </el-row> 233 </el-row>
234 <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" :disabled="!ableOperation" :gyfs="ruleForm.sldy.gyfs" /> 234 <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" :disabled="viewEdit" :gyfs="ruleForm.sldy.gyfs" />
235 <div class="slxx_title title-block"> 235 <div class="slxx_title title-block">
236 抵押人信息 236 抵押人信息
237 <div class="triangle"></div> 237 <div class="triangle"></div>
238 </div> 238 </div>
239 <qlrCommonTable :tableData="ruleForm.ywrList" @upDateQlrxxList="upDateYwrxxList" :disabled="!ableOperation" /> 239 <qlrCommonTable :tableData="ruleForm.ywrList" @upDateQlrxxList="upDateYwrxxList" :disabled="viewEdit" />
240 240
241 <div class="slxx_title title-block"> 241 <div class="slxx_title title-block">
242 登记原因 242 登记原因
...@@ -245,19 +245,19 @@ ...@@ -245,19 +245,19 @@
245 <el-row :gutter="10"> 245 <el-row :gutter="10">
246 <el-col> 246 <el-col>
247 <el-form-item v-if="ruleForm.sldy.djlx == '400'" label="注销抵押原因:" prop="djyy"> 247 <el-form-item v-if="ruleForm.sldy.djlx == '400'" label="注销抵押原因:" prop="djyy">
248 <el-input class="textArea" type="textarea" :disabled="!ableOperation" 248 <el-input class="textArea" type="textarea" :disabled="!viewEdit"
249 v-model="ruleForm.diyaq.zxdyyy"> 249 v-model="ruleForm.diyaq.zxdyyy">
250 </el-input> 250 </el-input>
251 </el-form-item> 251 </el-form-item>
252 <el-form-item v-else label="登记原因:" prop="djyy"> 252 <el-form-item v-else label="登记原因:" prop="djyy">
253 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!ableOperation " 253 <el-input class="textArea" type="textarea" maxlength="500" show-word-limit :disabled="!viewEdit "
254 v-model="ruleForm.diyaq.djyy"> 254 v-model="ruleForm.diyaq.djyy">
255 </el-input> 255 </el-input>
256 </el-form-item> 256 </el-form-item>
257 </el-col> 257 </el-col>
258 </el-row> 258 </el-row>
259 </div> 259 </div>
260 <el-row class="btn" v-if="ableOperation"> 260 <el-row class="btn" v-if="viewEdit">
261 <el-form-item> 261 <el-form-item>
262 <el-button type="primary" @click="onSubmitClick()">保存</el-button> 262 <el-button type="primary" @click="onSubmitClick()">保存</el-button>
263 </el-form-item> 263 </el-form-item>
...@@ -271,13 +271,13 @@ ...@@ -271,13 +271,13 @@
271 import { mapGetters } from "vuex"; 271 import { mapGetters } from "vuex";
272 export default { 272 export default {
273 mounted () { 273 mounted () {
274 this.ableOperation = this.$parent.currentSelectTab.ableOperation 274 this.viewEdit = this.$parent.currentSelectTab.ableOperation
275 this.propsParam = this.$attrs; 275 this.propsParam = this.$attrs;
276 var formdata = new FormData(); 276 var formdata = new FormData();
277 this.$startLoading(); 277 this.$startLoading();
278 formdata.append("bsmSldy", this.propsParam.bsmSldy); 278 formdata.append("bsmSldy", this.propsParam.bsmSldy);
279 formdata.append("djlx", this.propsParam.djlx); 279 formdata.append("djlx", this.propsParam.djlx);
280 formdata.append("isEdit", this.ableOperation); 280 formdata.append("isEdit", this.viewEdit);
281 Init(formdata).then((res) => { 281 Init(formdata).then((res) => {
282 if (res.code === 200 && res.result) { 282 if (res.code === 200 && res.result) {
283 this.ruleForm = res.result; 283 this.ruleForm = res.result;
...@@ -293,7 +293,7 @@ ...@@ -293,7 +293,7 @@
293 data () { 293 data () {
294 return { 294 return {
295 //表单是否可操作 295 //表单是否可操作
296 ableOperation: true, 296 viewEdit: true,
297 disabled: true, 297 disabled: true,
298 czrOptions: [], 298 czrOptions: [],
299 ruleForm: {}, 299 ruleForm: {},
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-02 09:53:35 4 * @LastEditTime: 2023-08-16 14:59:46
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -239,7 +239,6 @@ ...@@ -239,7 +239,6 @@
239 * @author: miaofang 239 * @author: miaofang
240 */ 240 */
241 openBook (row) { 241 openBook (row) {
242 console.log("的急急急急急急");
243 var param = { 242 var param = {
244 bdcdyid: row.bdcdyid, 243 bdcdyid: row.bdcdyid,
245 qllx: row.qllx, 244 qllx: row.qllx,
......
...@@ -38,8 +38,9 @@ class data extends filter { ...@@ -38,8 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> 41 {/*<a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>*/}
42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> 42 <span v-show={scope.row.qqzt == 1}>已确权</span>
43 <span v-show={scope.row.qqzt == 0}>未确权</span>
43 </div> 44 </div>
44 ) 45 )
45 } 46 }
......