93385dc2 by xiaomiao

--no commit message

1 parent 0a75f0ce
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 ref="ruleForm" 13 ref="ruleForm"
14 :label-position="flag ? 'top' : ''" 14 :label-position="flag ? 'top' : ''"
15 :inline="flag" 15 :inline="flag"
16 label-width="127px" 16 label-width="145px"
17 > 17 >
18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> 18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
19 <div class="slxx_title title-block"> 19 <div class="slxx_title title-block">
...@@ -39,9 +39,37 @@ ...@@ -39,9 +39,37 @@
39 </el-row> 39 </el-row>
40 <div class="slxx_title title-block"> 40 <div class="slxx_title title-block">
41 查封不动产情况 41 查封不动产情况
42 <div>请选择查封不动产信息,请选择上手权利信息</div>
43 <div class="triangle"></div> 42 <div class="triangle"></div>
44 </div> 43 </div>
44 <el-row :gutter="10">
45 <el-col :span="8">
46 <el-form-item label="抵押不动产信息:">
47 <select-table v-model="ruleForm.ztQlxx" :table-width="550" :tableData="ztQlxxList"
48 :props="props" @change="ztQlxxchange">
49 <el-table-column prop="qllxmc" width="130" label="权利类型"></el-table-column>
50 <el-table-column prop="bdcqzh" width="160" label="不动产权证书"></el-table-column>
51 <el-table-column prop="qlrmc" label="权利人"></el-table-column>
52 <el-table-column prop="mjmc" label="面积"></el-table-column>
53 <el-table-column prop="ytmc" label="用途"></el-table-column>
54 <el-table-column prop="zl" label="坐落"></el-table-column>
55 </select-table>
56 </el-form-item>
57 </el-col>
58
59 <el-col :span="8" v-if="ssqlxxshow">
60 <el-form-item label="上手权利信息:">
61 <select-table v-model="ruleForm.ssQlxx" :table-width="550" :tableData="ssQlxxList"
62 :props="props" @change="ssQlxxchange">
63 <el-table-column prop="qllxmc" width="130" label="权利类型"></el-table-column>
64 <el-table-column prop="bdcqzh" width="160" label="不动产权证书"></el-table-column>
65 <el-table-column prop="qlrmc" label="权利人"></el-table-column>
66 <el-table-column prop="mjmc" label="面积"></el-table-column>
67 <el-table-column prop="ytmc" label="用途"></el-table-column>
68 <el-table-column prop="zl" label="坐落"></el-table-column>
69 </select-table>
70 </el-form-item>
71 </el-col>
72 </el-row>
45 <el-row :gutter="10" v-if="ruleForm.ztQlxx != null"> 73 <el-row :gutter="10" v-if="ruleForm.ztQlxx != null">
46 <el-col :span="8"> 74 <el-col :span="8">
47 <el-form-item label="权利人:"> 75 <el-form-item label="权利人:">
...@@ -94,7 +122,7 @@ ...@@ -94,7 +122,7 @@
94 </el-col> 122 </el-col>
95 </el-row> 123 </el-row>
96 <div class="slxx_title title-block"> 124 <div class="slxx_title title-block">
97 房地产权(独幢、层、套、间房屋) 125 查封登记信息
98 <div class="triangle"></div> 126 <div class="triangle"></div>
99 </div> 127 </div>
100 <el-row :gutter="10"> 128 <el-row :gutter="10">
...@@ -115,14 +143,14 @@ ...@@ -115,14 +143,14 @@
115 </el-col> 143 </el-col>
116 </el-row> 144 </el-row>
117 <el-row :gutter="10"> 145 <el-row :gutter="10">
118 <!-- <el-col :span="8"> 146 <el-col :span="8">
119 <el-form-item label="权利类型:"> 147 <el-form-item label="权利类型:">
120 <el-input disabled v-model="ruleForm.qlxx.qllxmc"></el-input> 148 <el-input disabled v-model="ruleForm.qlxx.qllxmc"></el-input>
121 </el-form-item> 149 </el-form-item>
122 </el-col> 150 </el-col>
123 <el-col :span="8"> 151 <el-col :span="8">
124 <el-form-item label="登记类型:"> 152 <el-form-item label="登记类型:">
125 <el-select v-model="ruleForm.qlxx.djlx"> 153 <el-select v-model="ruleForm.qlxx.djlx" @change="djlxchange">
126 <el-option 154 <el-option
127 v-for="item in dictData['A21']" 155 v-for="item in dictData['A21']"
128 :key="item.dcode" 156 :key="item.dcode"
...@@ -141,7 +169,7 @@ ...@@ -141,7 +169,7 @@
141 <el-form-item label="不动产权证号:"> 169 <el-form-item label="不动产权证号:">
142 <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input> 170 <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input>
143 </el-form-item> 171 </el-form-item>
144 </el-col> --> 172 </el-col>
145 <el-col :span="8"> 173 <el-col :span="8">
146 <el-form-item label="登记机构:"> 174 <el-form-item label="登记机构:">
147 <el-input v-model="ruleForm.qlxx.djjg"></el-input> 175 <el-input v-model="ruleForm.qlxx.djjg"></el-input>
...@@ -263,18 +291,6 @@ ...@@ -263,18 +291,6 @@
263 :gyfs="ruleForm.qlxx.gyfs" 291 :gyfs="ruleForm.qlxx.gyfs"
264 /> 292 />
265 293
266 <div>
267 <div class="slxx_title title-block">
268 义务人信息
269 <div class="triangle"></div>
270 </div>
271 <ywrCommonTable
272 v-if="ruleForm.ywrData"
273 :tableData="ruleForm.ywrData"
274 :key="key"
275 @upDateQlrxxList="upDateYwrxxList"
276 />
277 </div>
278 </div> 294 </div>
279 <el-row class="btn"> 295 <el-row class="btn">
280 <el-form-item> 296 <el-form-item>
...@@ -286,12 +302,13 @@ ...@@ -286,12 +302,13 @@
286 </template> 302 </template>
287 <script> 303 <script>
288 import { mapGetters } from "vuex"; 304 import { mapGetters } from "vuex";
289 import { init, save } from "@/api/djbbl.js"; 305 import { init,getSsQlxx, getZtQlxx, save } from "@/api/djbbl.js";
290 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable"; 306 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable";
291 import ywrCommonTable from "@/views/djbworkflow/components/ywrCommonTable"; 307 import ywrCommonTable from "@/views/djbworkflow/components/ywrCommonTable";
292 import tdytTable from "@/views/workflow/components/tdytTable"; 308 import tdytTable from "@/views/workflow/components/tdytTable";
309 import selectTable from "@/components/selectTable/index.vue";
293 export default { 310 export default {
294 components: { qlrCommonTable, ywrCommonTable, tdytTable }, 311 components: { qlrCommonTable, ywrCommonTable, tdytTable,selectTable },
295 computed: { 312 computed: {
296 ...mapGetters(["dictData", "flag"]), 313 ...mapGetters(["dictData", "flag"]),
297 }, 314 },
...@@ -301,11 +318,18 @@ export default { ...@@ -301,11 +318,18 @@ export default {
301 propsParam: this.$attrs, 318 propsParam: this.$attrs,
302 key: 0, 319 key: 0,
303 isShow: false, 320 isShow: false,
321 ssqlxxshow:true,
304 disabled: true, 322 disabled: true,
305 czrOptions: [], 323 czrOptions: [],
306 ruleForm: {}, 324 ruleForm: {},
307 //传递参数\ 325 //传递参数\
308 rules: {}, 326 rules: {},
327 props: {
328 label: "bdcqzh",
329 value: "bdcdyid"
330 },
331 ssQlxxList: [],
332 ztQlxxList: [],
309 }; 333 };
310 }, 334 },
311 created() { 335 created() {
...@@ -313,28 +337,53 @@ export default { ...@@ -313,28 +337,53 @@ export default {
313 }, 337 },
314 mounted() {}, 338 mounted() {},
315 methods: { 339 methods: {
340 ztQlxxchange (val) {
341 this.ruleForm.ztQlxx = val
342 },
343 ssQlxxchange (val) {
344 this.ruleForm.ssQlxx = val
345 },
346 djlxchange(val){
347 if(val==null||val==100){
348 this.ssqlxxshow=false
349 }else{
350 this.ssqlxxshow=true
351 }
352
353 },
316 loadData() { 354 loadData() {
317 console.log("查封登记", this.propsParam);
318 this.propsParam.isEdit = this.$parent.isEdit; 355 this.propsParam.isEdit = this.$parent.isEdit;
319 init(this.propsParam).then((res) => { 356 init(this.propsParam).then((res) => {
320 if (res.code == 200) { 357 if (res.code == 200) {
321 this.ruleForm = res.result; 358 this.ruleForm = res.result;
322 console.log("this.ruleForm", this.ruleForm);
323 this.isShow = true; 359 this.isShow = true;
360 let djlx= this.ruleForm.qlxx.djlx
361 if(djlx==null||djlx==100){
362 this.ssqlxxshow=false
363 }
364 }
365 });
366 //获取主体信息
367 getSsQlxx({ bdcdyid: this.propsParam.bdcdyid, qllx: this.propsParam.qllx }).then((res) => {
368 if (res.code == 200) {
369 this.ssQlxxList = res.result;
370 }
371 });
372 //获取上手信息
373 getZtQlxx({ bdcdyid: this.propsParam.bdcdyid }).then((res) => {
374 if (res.code == 200) {
375 this.ztQlxxList = res.result;
324 } 376 }
325 }); 377 });
326 }, 378 },
327 // 更新土地用途信息 379 // 更新土地用途信息
328 upDateTdytxxList(val) { 380 upDateTdytxxList(val) {
329 console.log("VAL", val);
330 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); 381 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
331 this.key++; 382 this.key++;
332 }, 383 },
333 // 更新权利人信息 384 // 更新权利人信息
334 upDateQlrxxList(val) { 385 upDateQlrxxList(val) {
335 console.log("val", val);
336 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); 386 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
337 console.log("this.ruleForm.qlrData", this.ruleForm.qlrData);
338 this.czrOptions = this.ruleForm.qlrData; 387 this.czrOptions = this.ruleForm.qlrData;
339 this.key++; 388 this.key++;
340 }, 389 },
...@@ -344,7 +393,6 @@ export default { ...@@ -344,7 +393,6 @@ export default {
344 this.key++; 393 this.key++;
345 }, 394 },
346 onSubmit() { 395 onSubmit() {
347 console.log("this.ruleForm大信息", this.ruleForm);
348 if (this.ruleForm.qlrData.length == 0) { 396 if (this.ruleForm.qlrData.length == 0) {
349 this.$message({ 397 this.$message({
350 showClose: true, 398 showClose: true,
......
...@@ -38,6 +38,8 @@ ...@@ -38,6 +38,8 @@
38 </el-row> 38 </el-row>
39 <div class="slxx_title title-block"> 39 <div class="slxx_title title-block">
40 抵押不动产情况 40 抵押不动产情况
41 <div class="triangle"></div>
42 </div>
41 <el-row :gutter="10"> 43 <el-row :gutter="10">
42 <el-col :span="8"> 44 <el-col :span="8">
43 <el-form-item label="抵押不动产信息:"> 45 <el-form-item label="抵押不动产信息:">
...@@ -53,7 +55,7 @@ ...@@ -53,7 +55,7 @@
53 </el-form-item> 55 </el-form-item>
54 </el-col> 56 </el-col>
55 57
56 <el-col :span="8"> 58 <el-col :span="8" v-if="ssqlxxshow">
57 <el-form-item label="上手权利信息:"> 59 <el-form-item label="上手权利信息:">
58 <select-table v-model="ruleForm.ssQlxx" :table-width="550" :tableData="ssQlxxList" 60 <select-table v-model="ruleForm.ssQlxx" :table-width="550" :tableData="ssQlxxList"
59 :props="props" @change="ssQlxxchange"> 61 :props="props" @change="ssQlxxchange">
...@@ -67,8 +69,7 @@ ...@@ -67,8 +69,7 @@
67 </el-form-item> 69 </el-form-item>
68 </el-col> 70 </el-col>
69 </el-row> 71 </el-row>
70 <div class="triangle"></div> 72
71 </div>
72 <el-row :gutter="10" v-if="ruleForm.ztQlxx!=null"> 73 <el-row :gutter="10" v-if="ruleForm.ztQlxx!=null">
73 <el-col :span="8"> 74 <el-col :span="8">
74 <el-form-item label="权利人:"> 75 <el-form-item label="权利人:">
...@@ -149,7 +150,7 @@ ...@@ -149,7 +150,7 @@
149 </el-col> 150 </el-col>
150 <el-col :span="8"> 151 <el-col :span="8">
151 <el-form-item label="登记类型:"> 152 <el-form-item label="登记类型:">
152 <el-select v-model="ruleForm.qlxx.djlx"> 153 <el-select v-model="ruleForm.qlxx.djlx" @change="djlxchange">
153 <el-option 154 <el-option
154 v-for="item in djlxlist" 155 v-for="item in djlxlist"
155 :key="item.dcode" 156 :key="item.dcode"
...@@ -403,7 +404,7 @@ ...@@ -403,7 +404,7 @@
403 :key="key" 404 :key="key"
404 :gyfs="ruleForm.qlxx.gyfs" /> 405 :gyfs="ruleForm.qlxx.gyfs" />
405 406
406 <div> 407 <div v-if="ruleForm.ywrData && ruleForm.ywrData.length > 0">
407 <div class="slxx_title title-block"> 408 <div class="slxx_title title-block">
408 义务人信息 409 义务人信息
409 <div class="triangle"></div> 410 <div class="triangle"></div>
...@@ -412,7 +413,8 @@ ...@@ -412,7 +413,8 @@
412 v-if="ruleForm.ywrData" 413 v-if="ruleForm.ywrData"
413 :tableData="ruleForm.ywrData" 414 :tableData="ruleForm.ywrData"
414 :key="key" 415 :key="key"
415 @upDateQlrxxList="upDateYwrxxList" /> 416 @upDateQlrxxList="upDateYwrxxList"
417 />
416 </div> 418 </div>
417 </div> 419 </div>
418 <el-row class="btn"> 420 <el-row class="btn">
...@@ -446,6 +448,7 @@ ...@@ -446,6 +448,7 @@
446 key: 0, 448 key: 0,
447 isShow: false, 449 isShow: false,
448 disabled: true, 450 disabled: true,
451 ssqlxxshow:true,
449 czrOptions: [], 452 czrOptions: [],
450 ruleForm: {}, 453 ruleForm: {},
451 //传递参数 454 //传递参数
...@@ -496,6 +499,7 @@ ...@@ -496,6 +499,7 @@
496 created () { 499 created () {
497 this.loadData(); 500 this.loadData();
498 }, 501 },
502
499 methods: { 503 methods: {
500 ztQlxxchange (val) { 504 ztQlxxchange (val) {
501 this.ruleForm.ztQlxx = val 505 this.ruleForm.ztQlxx = val
...@@ -503,12 +507,26 @@ ...@@ -503,12 +507,26 @@
503 ssQlxxchange (val) { 507 ssQlxxchange (val) {
504 this.ruleForm.ssQlxx = val 508 this.ruleForm.ssQlxx = val
505 }, 509 },
510 djlxchange(val){
511 if(val==null||val==100){
512 this.ssqlxxshow=false
513 }else{
514 this.ssqlxxshow=true
515 }
516
517 },
506 loadData () { 518 loadData () {
507 this.propsParam.isEdit = this.$parent.isEdit; 519 this.propsParam.isEdit = this.$parent.isEdit;
508 init(this.propsParam).then((res) => { 520 init(this.propsParam).then((res) => {
509 if (res.code == 200) { 521 if (res.code == 200) {
510 this.ruleForm = res.result; 522 this.ruleForm = res.result;
511 this.isShow = true; 523 this.isShow = true;
524 let djlx= this.ruleForm.qlxx.djlx
525 if(djlx==null||djlx==100){
526 this.ssqlxxshow=false
527 }
528
529
512 } 530 }
513 }); 531 });
514 //获取主体信息 532 //获取主体信息
...@@ -532,7 +550,6 @@ ...@@ -532,7 +550,6 @@
532 // 更新权利人信息 550 // 更新权利人信息
533 upDateQlrxxList (val) { 551 upDateQlrxxList (val) {
534 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); 552 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
535 console.log("this.ruleForm.qlrData", this.ruleForm.qlrData);
536 this.czrOptions = this.ruleForm.qlrData; 553 this.czrOptions = this.ruleForm.qlrData;
537 this.key++; 554 this.key++;
538 }, 555 },
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 ref="ruleForm" 13 ref="ruleForm"
14 :label-position="flag ? 'top' : ''" 14 :label-position="flag ? 'top' : ''"
15 :inline="flag" 15 :inline="flag"
16 label-width="127px"> 16 label-width="145px">
17 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> 17 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
18 <div class="slxx_title title-block"> 18 <div class="slxx_title title-block">
19 补录信息 19 补录信息
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
37 </el-col> 37 </el-col>
38 </el-row> 38 </el-row>
39 <div class="slxx_title title-block"> 39 <div class="slxx_title title-block">
40 房地产权(独幢、层、套、间房屋) 40 地役权信息
41 <div class="triangle"></div> 41 <div class="triangle"></div>
42 </div> 42 </div>
43 <el-row :gutter="10"> 43 <el-row :gutter="10">
...@@ -303,27 +303,22 @@ ...@@ -303,27 +303,22 @@
303 mounted () { }, 303 mounted () { },
304 methods: { 304 methods: {
305 loadData () { 305 loadData () {
306 console.log("地役权", this.propsParam);
307 this.propsParam.isEdit=this.$parent.isEdit 306 this.propsParam.isEdit=this.$parent.isEdit
308 init(this.propsParam).then((res) => { 307 init(this.propsParam).then((res) => {
309 if (res.code == 200) { 308 if (res.code == 200) {
310 this.ruleForm = res.result; 309 this.ruleForm = res.result;
311 console.log("this.ruleForm", this.ruleForm);
312 this.isShow = true; 310 this.isShow = true;
313 } 311 }
314 }); 312 });
315 }, 313 },
316 // 更新土地用途信息 314 // 更新土地用途信息
317 upDateTdytxxList (val) { 315 upDateTdytxxList (val) {
318 console.log("VAL", val);
319 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); 316 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
320 this.key++; 317 this.key++;
321 }, 318 },
322 // 更新权利人信息 319 // 更新权利人信息
323 upDateQlrxxList (val) { 320 upDateQlrxxList (val) {
324 console.log("val", val);
325 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); 321 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
326 console.log("this.ruleForm.qlrData", this.ruleForm.qlrData);
327 this.czrOptions = this.ruleForm.qlrData; 322 this.czrOptions = this.ruleForm.qlrData;
328 this.key++; 323 this.key++;
329 }, 324 },
...@@ -333,7 +328,6 @@ ...@@ -333,7 +328,6 @@
333 this.key++; 328 this.key++;
334 }, 329 },
335 onSubmit () { 330 onSubmit () {
336 console.log("this.ruleForm大信息", this.ruleForm);
337 if (this.ruleForm.qlrData.length == 0) { 331 if (this.ruleForm.qlrData.length == 0) {
338 this.$message({ 332 this.$message({
339 showClose: true, 333 showClose: true,
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 ref="ruleForm" 13 ref="ruleForm"
14 :label-position="flag ? 'top' : ''" 14 :label-position="flag ? 'top' : ''"
15 :inline="flag" 15 :inline="flag"
16 label-width="127px" 16 label-width="145px"
17 > 17 >
18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> 18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
19 <div class="slxx_title title-block"> 19 <div class="slxx_title title-block">
...@@ -314,14 +314,14 @@ ...@@ -314,14 +314,14 @@
314 :gyfs="ruleForm.qlxx.gyfs" 314 :gyfs="ruleForm.qlxx.gyfs"
315 /> 315 />
316 316
317 <div v-if="ruleForm.ywrList && ruleForm.ywrList.length > 0"> 317 <div v-if="ruleForm.ywrData && ruleForm.ywrData.length > 0">
318 <div class="slxx_title title-block"> 318 <div class="slxx_title title-block">
319 义务人信息 319 义务人信息
320 <div class="triangle"></div> 320 <div class="triangle"></div>
321 </div> 321 </div>
322 <qlrCommonTable 322 <qlrCommonTable
323 v-if="ruleForm.ywrList" 323 v-if="ruleForm.ywrData"
324 :tableData="ruleForm.ywrList" 324 :tableData="ruleForm.ywrData"
325 :key="key" 325 :key="key"
326 @upDateQlrxxList="upDateYwrxxList" 326 @upDateQlrxxList="upDateYwrxxList"
327 /> 327 />
...@@ -419,7 +419,7 @@ export default { ...@@ -419,7 +419,7 @@ export default {
419 }, 419 },
420 // 更新义务人信息 420 // 更新义务人信息
421 upDateYwrxxList(val) { 421 upDateYwrxxList(val) {
422 this.ruleForm.ywrList && (this.ruleForm.ywrList = _.cloneDeep(val)); 422 this.ruleForm.ywrData && (this.ruleForm.ywrData = _.cloneDeep(val));
423 this.key++; 423 this.key++;
424 }, 424 },
425 onSubmit() { 425 onSubmit() {
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 ref="ruleForm" 13 ref="ruleForm"
14 :label-position="flag ? 'top' : ''" 14 :label-position="flag ? 'top' : ''"
15 :inline="flag" 15 :inline="flag"
16 label-width="127px" 16 label-width="145px"
17 > 17 >
18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> 18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
19 <div class="slxx_title title-block"> 19 <div class="slxx_title title-block">
...@@ -238,14 +238,14 @@ ...@@ -238,14 +238,14 @@
238 :gyfs="ruleForm.qlxx.gyfs" 238 :gyfs="ruleForm.qlxx.gyfs"
239 /> 239 />
240 240
241 <div v-if="ruleForm.ywrList && ruleForm.ywrList.length > 0"> 241 <div v-if="ruleForm.ywrData && ruleForm.ywrData.length > 0">
242 <div class="slxx_title title-block"> 242 <div class="slxx_title title-block">
243 义务人信息 243 义务人信息
244 <div class="triangle"></div> 244 <div class="triangle"></div>
245 </div> 245 </div>
246 <qlrCommonTable 246 <ywrCommonTable
247 v-if="ruleForm.ywrList" 247 v-if="ruleForm.ywrData"
248 :tableData="ruleForm.ywrList" 248 :tableData="ruleForm.ywrData"
249 :key="key" 249 :key="key"
250 @upDateQlrxxList="upDateYwrxxList" 250 @upDateQlrxxList="upDateYwrxxList"
251 :viewtype="$route.query.viewtype" 251 :viewtype="$route.query.viewtype"
...@@ -327,32 +327,27 @@ export default { ...@@ -327,32 +327,27 @@ export default {
327 }else{ 327 }else{
328 this.tdxz=null 328 this.tdxz=null
329 } 329 }
330 console.log("this.ruleForm", this.ruleForm);
331 this.isShow = true; 330 this.isShow = true;
332 } 331 }
333 }); 332 });
334 }, 333 },
335 // 更新土地用途信息 334 // 更新土地用途信息
336 upDateTdytxxList(val) { 335 upDateTdytxxList(val) {
337 console.log("VAL", val);
338 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); 336 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
339 this.key++; 337 this.key++;
340 }, 338 },
341 // 更新权利人信息 339 // 更新权利人信息
342 upDateQlrxxList(val) { 340 upDateQlrxxList(val) {
343 console.log("val", val);
344 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); 341 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
345 console.log("this.ruleForm.qlrData", this.ruleForm.qlrData);
346 this.czrOptions = this.ruleForm.qlrData; 342 this.czrOptions = this.ruleForm.qlrData;
347 this.key++; 343 this.key++;
348 }, 344 },
349 // 更新义务人信息 345 // 更新义务人信息
350 upDateYwrxxList(val) { 346 upDateYwrxxList(val) {
351 this.ruleForm.ywrList && (this.ruleForm.ywrList = _.cloneDeep(val)); 347 this.ruleForm.ywrData && (this.ruleForm.ywrData = _.cloneDeep(val));
352 this.key++; 348 this.key++;
353 }, 349 },
354 onSubmit() { 350 onSubmit() {
355 console.log("this.ruleForm大信息", this.ruleForm);
356 if (this.ruleForm.qlrData.length == 0) { 351 if (this.ruleForm.qlrData.length == 0) {
357 this.$message({ 352 this.$message({
358 showClose: true, 353 showClose: true,
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 ref="ruleForm" 13 ref="ruleForm"
14 :label-position="flag ? 'top' : ''" 14 :label-position="flag ? 'top' : ''"
15 :inline="flag" 15 :inline="flag"
16 label-width="127px" 16 label-width="145px"
17 > 17 >
18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> 18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
19 <div class="slxx_title title-block"> 19 <div class="slxx_title title-block">
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
38 </el-col> 38 </el-col>
39 </el-row> 39 </el-row>
40 <div class="slxx_title title-block"> 40 <div class="slxx_title title-block">
41 预告买卖登记信息 41 预告登记信息
42 <div class="triangle"></div> 42 <div class="triangle"></div>
43 </div> 43 </div>
44 <el-row :gutter="10"> 44 <el-row :gutter="10">
...@@ -277,7 +277,7 @@ ...@@ -277,7 +277,7 @@
277 :gyfs="ruleForm.qlxx.gyfs" 277 :gyfs="ruleForm.qlxx.gyfs"
278 /> 278 />
279 279
280 <div> 280 <div v-if="ruleForm.ywrData && ruleForm.ywrData.length > 0">
281 <div class="slxx_title title-block"> 281 <div class="slxx_title title-block">
282 义务人信息 282 义务人信息
283 <div class="triangle"></div> 283 <div class="triangle"></div>
...@@ -344,22 +344,18 @@ export default { ...@@ -344,22 +344,18 @@ export default {
344 init(this.propsParam).then((res) => { 344 init(this.propsParam).then((res) => {
345 if (res.code == 200) { 345 if (res.code == 200) {
346 this.ruleForm = res.result; 346 this.ruleForm = res.result;
347 console.log("this.ruleForm", this.ruleForm);
348 this.isShow = true; 347 this.isShow = true;
349 } 348 }
350 }); 349 });
351 }, 350 },
352 // 更新土地用途信息 351 // 更新土地用途信息
353 upDateTdytxxList(val) { 352 upDateTdytxxList(val) {
354 console.log("VAL", val);
355 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); 353 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
356 this.key++; 354 this.key++;
357 }, 355 },
358 // 更新权利人信息 356 // 更新权利人信息
359 upDateQlrxxList(val) { 357 upDateQlrxxList(val) {
360 console.log("val", val);
361 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); 358 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
362 console.log("this.ruleForm.qlrData", this.ruleForm.qlrData);
363 this.czrOptions = this.ruleForm.qlrData; 359 this.czrOptions = this.ruleForm.qlrData;
364 this.key++; 360 this.key++;
365 }, 361 },
...@@ -369,7 +365,6 @@ export default { ...@@ -369,7 +365,6 @@ export default {
369 this.key++; 365 this.key++;
370 }, 366 },
371 onSubmit() { 367 onSubmit() {
372 console.log("this.ruleForm大信息", this.ruleForm);
373 if (this.ruleForm.qlrData.length == 0) { 368 if (this.ruleForm.qlrData.length == 0) {
374 this.$message({ 369 this.$message({
375 showClose: true, 370 showClose: true,
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 ref="ruleForm" 13 ref="ruleForm"
14 :label-position="flag ? 'top' : ''" 14 :label-position="flag ? 'top' : ''"
15 :inline="flag" 15 :inline="flag"
16 label-width="127px" 16 label-width="145px"
17 > 17 >
18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> 18 <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
19 <div class="slxx_title title-block"> 19 <div class="slxx_title title-block">
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
38 </el-col> 38 </el-col>
39 </el-row> 39 </el-row>
40 <div class="slxx_title title-block"> 40 <div class="slxx_title title-block">
41 房地产权(独幢、层、套、间房屋) 41 异议登记信息
42 <div class="triangle"></div> 42 <div class="triangle"></div>
43 </div> 43 </div>
44 <el-row :gutter="10"> 44 <el-row :gutter="10">
...@@ -189,8 +189,7 @@ ...@@ -189,8 +189,7 @@
189 :key="key" 189 :key="key"
190 :gyfs="ruleForm.qlxx.gyfs" 190 :gyfs="ruleForm.qlxx.gyfs"
191 /> 191 />
192 192 <div v-if="ruleForm.ywrData && ruleForm.ywrData.length > 0">
193 <div>
194 <div class="slxx_title title-block"> 193 <div class="slxx_title title-block">
195 义务人信息 194 义务人信息
196 <div class="triangle"></div> 195 <div class="triangle"></div>
...@@ -257,22 +256,18 @@ export default { ...@@ -257,22 +256,18 @@ export default {
257 init(this.propsParam).then((res) => { 256 init(this.propsParam).then((res) => {
258 if (res.code == 200) { 257 if (res.code == 200) {
259 this.ruleForm = res.result; 258 this.ruleForm = res.result;
260 console.log("this.ruleForm", this.ruleForm);
261 this.isShow = true; 259 this.isShow = true;
262 } 260 }
263 }); 261 });
264 }, 262 },
265 // 更新土地用途信息 263 // 更新土地用途信息
266 upDateTdytxxList(val) { 264 upDateTdytxxList(val) {
267 console.log("VAL", val);
268 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); 265 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
269 this.key++; 266 this.key++;
270 }, 267 },
271 // 更新权利人信息 268 // 更新权利人信息
272 upDateQlrxxList(val) { 269 upDateQlrxxList(val) {
273 console.log("val", val);
274 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); 270 this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
275 console.log("this.ruleForm.qlrData", this.ruleForm.qlrData);
276 this.czrOptions = this.ruleForm.qlrData; 271 this.czrOptions = this.ruleForm.qlrData;
277 this.key++; 272 this.key++;
278 }, 273 },
...@@ -282,7 +277,6 @@ export default { ...@@ -282,7 +277,6 @@ export default {
282 this.key++; 277 this.key++;
283 }, 278 },
284 onSubmit() { 279 onSubmit() {
285 console.log("this.ruleForm大信息", this.ruleForm);
286 if (this.ruleForm.qlrData.length == 0) { 280 if (this.ruleForm.qlrData.length == 0) {
287 this.$message({ 281 this.$message({
288 showClose: true, 282 showClose: true,
......
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
101 getSpyjList(formdata).then((res) => { 101 getSpyjList(formdata).then((res) => {
102 this.$endLoading() 102 this.$endLoading()
103 if (res.code === 200 && res.result) { 103 if (res.code === 200 && res.result) {
104 104 console.log("this.tableData this.tableData this.tableData ",this.tableData );
105 this.tableData = res.result ? res.result : [] 105 this.tableData = res.result ? res.result : []
106 console.log("this.tableDatathis.tableDatathis.tableDatathis.tableData",this.tableData); 106 console.log("this.tableDatathis.tableDatathis.tableDatathis.tableData",this.tableData);
107 if (res.result.length == 0) { 107 if (res.result.length == 0) {
......
...@@ -131,6 +131,7 @@ export default { ...@@ -131,6 +131,7 @@ export default {
131 }, 131 },
132 ]); 132 ]);
133 if( that.tableDataList.length>0){ 133 if( that.tableDataList.length>0){
134 console.log("that.tableDataList",that.tableDataList);
134 this.tdyt=that.tableDataList[0].yt?that.tableDataList[0].yt:null 135 this.tdyt=that.tableDataList[0].yt?that.tableDataList[0].yt:null
135 }else{ 136 }else{
136 this.tdyt=null 137 this.tdyt=null
...@@ -138,6 +139,7 @@ export default { ...@@ -138,6 +139,7 @@ export default {
138 } else { 139 } else {
139 that.tableDataList = _.cloneDeep(val); 140 that.tableDataList = _.cloneDeep(val);
140 if( that.tableDataList.length>0){ 141 if( that.tableDataList.length>0){
142 console.log("that.tableDataList",that.tableDataList);
141 this.tdyt=that.tableDataList[0].yt?that.tableDataList[0].yt:null 143 this.tdyt=that.tableDataList[0].yt?that.tableDataList[0].yt:null
142 }else{ 144 }else{
143 this.tdyt=null 145 this.tdyt=null
......