修改登簿逻辑
Showing
2 changed files
with
24 additions
and
10 deletions
| ... | @@ -62,7 +62,6 @@ export default { | ... | @@ -62,7 +62,6 @@ export default { |
| 62 | }; | 62 | }; |
| 63 | }, | 63 | }, |
| 64 | handleNodeClick (data, node, elem) { | 64 | handleNodeClick (data, node, elem) { |
| 65 | console.log(data.form); | ||
| 66 | this.loadComponent(data.form); | 65 | this.loadComponent(data.form); |
| 67 | }, | 66 | }, |
| 68 | loadComponent (form) { | 67 | loadComponent (form) { | ... | ... |
| ... | @@ -421,29 +421,44 @@ class data extends filter { | ... | @@ -421,29 +421,44 @@ class data extends filter { |
| 421 | label: "不动产单元号", | 421 | label: "不动产单元号", |
| 422 | }, | 422 | }, |
| 423 | { | 423 | { |
| 424 | prop: "zjjzwzl", | 424 | prop: "zl", |
| 425 | label: "在建建筑物坐落", | 425 | label: "在建建筑物坐落", |
| 426 | }, | 426 | }, |
| 427 | |||
| 428 | { | 427 | { |
| 429 | prop: "dyqr", | 428 | prop: "qlrmc", |
| 430 | label: "抵押权人", | 429 | label: "抵押权人", |
| 431 | }, | 430 | }, |
| 432 | { | 431 | { |
| 433 | prop: "zjzl", | 432 | prop: "qlrzjzl", |
| 434 | label: "证件种类", | 433 | label: "抵押权人证件种类", |
| 435 | }, | 434 | }, |
| 436 | { | 435 | { |
| 437 | prop: "zjh", | 436 | prop: "qlrzjhm", |
| 438 | label: "证件号", | 437 | label: "抵押权人证件号", |
| 439 | }, | 438 | }, |
| 440 | { | 439 | { |
| 441 | prop: "dyr", | 440 | prop: "ywrmc", |
| 442 | label: "抵押人", | 441 | label: "抵押人", |
| 443 | }, | 442 | }, |
| 444 | { | 443 | { |
| 444 | prop: "ywrzjzl", | ||
| 445 | label: "抵押人证件种类", | ||
| 446 | }, | ||
| 447 | { | ||
| 448 | prop: "ywrzjhm", | ||
| 449 | label: "抵押人证件号", | ||
| 450 | }, | ||
| 451 | { | ||
| 445 | prop: "dyfs", | 452 | prop: "dyfs", |
| 446 | label: "抵押方式", | 453 | label: "抵押方式", |
| 454 | render: (h, scope) => { | ||
| 455 | return ( | ||
| 456 | <div> | ||
| 457 | <span v-show={scope.row.dyfs == '1'}>一般抵押权</span> | ||
| 458 | <span v-show={scope.row.dyfs == '2'}>最高额抵押权</span> | ||
| 459 | </div> | ||
| 460 | ) | ||
| 461 | } | ||
| 447 | }, | 462 | }, |
| 448 | { | 463 | { |
| 449 | prop: "sfygdj", | 464 | prop: "sfygdj", |
| ... | @@ -490,7 +505,7 @@ class data extends filter { | ... | @@ -490,7 +505,7 @@ class data extends filter { |
| 490 | label: "登记原因", | 505 | label: "登记原因", |
| 491 | }, | 506 | }, |
| 492 | { | 507 | { |
| 493 | prop: "bdcdjzmh", | 508 | prop: "bdcqzh", |
| 494 | label: "不动产登记证明号", | 509 | label: "不动产登记证明号", |
| 495 | }, | 510 | }, |
| 496 | { | 511 | { | ... | ... |
-
Please register or sign in to post a comment