1111
Showing
2 changed files
with
53 additions
and
29 deletions
... | @@ -13,6 +13,14 @@ class data extends filter { | ... | @@ -13,6 +13,14 @@ class data extends filter { |
13 | { | 13 | { |
14 | prop: 'qszt', | 14 | prop: 'qszt', |
15 | label: '权属状态', | 15 | label: '权属状态', |
16 | render: (h, scope) => { | ||
17 | if (scope.row.qszt == '1') { | ||
18 | return <div>现势</div> | ||
19 | } | ||
20 | else{ | ||
21 | return <div>历史</div> | ||
22 | } | ||
23 | } | ||
16 | }, | 24 | }, |
17 | { | 25 | { |
18 | prop: 'bdcqzh', | 26 | prop: 'bdcqzh', |
... | @@ -32,11 +40,20 @@ class data extends filter { | ... | @@ -32,11 +40,20 @@ class data extends filter { |
32 | label: '网签时间', | 40 | label: '网签时间', |
33 | }, | 41 | }, |
34 | { | 42 | { |
43 | prop: 'qdjgmc', | ||
44 | label: '取得价格', | ||
45 | }, | ||
46 | { | ||
35 | prop: 'bdcdyh', | 47 | prop: 'bdcdyh', |
36 | width: 150, | 48 | width: 150, |
37 | label: '不动产单元号', | 49 | label: '不动产单元号', |
38 | }, | 50 | }, |
39 | { | 51 | { |
52 | prop: 'zl', | ||
53 | width: 120, | ||
54 | label: '房地坐落', | ||
55 | }, | ||
56 | { | ||
40 | prop: 'gyfs', | 57 | prop: 'gyfs', |
41 | label: '共有方式', | 58 | label: '共有方式', |
42 | }, | 59 | }, |
... | @@ -50,33 +67,42 @@ class data extends filter { | ... | @@ -50,33 +67,42 @@ class data extends filter { |
50 | width: 120, | 67 | width: 120, |
51 | }, | 68 | }, |
52 | { | 69 | { |
53 | prop: 'fdzl', | 70 | prop: 'qlxzmc', |
54 | width: 120, | 71 | width: 120, |
55 | label: '房地坐落', | 72 | label: '性质', |
56 | }, | 73 | }, |
57 | { | 74 | { |
58 | prop: 'fwmj', | 75 | prop: 'qlmjmc', |
59 | width: 120, | 76 | width: 120, |
60 | label: '建筑面积(㎡)', | 77 | label: '面积', |
61 | }, | 78 | }, |
62 | { | 79 | { |
63 | prop: 'fwyt', | 80 | prop: 'qlytmc', |
64 | label: '房屋用途', | 81 | label: '用途', |
65 | }, | 82 | }, |
66 | { | 83 | { |
67 | 84 | label: '是否抵押', | |
68 | label: '登记状态', | ||
69 | align: 'center', | 85 | align: 'center', |
70 | fixed: 'right', | 86 | fixed: 'right', |
71 | render: (h, scope) => { | 87 | render: (h, scope) => { |
72 | if (scope.row.dyzt != '0' && scope.row.cfzt != '0') { | 88 | if (scope.row.dyzt == '0') { |
73 | return <div>抵押、查封</div> | 89 | return <div>否</div> |
90 | } | ||
91 | else{ | ||
92 | return <div>是</div> | ||
74 | } | 93 | } |
75 | if (scope.row.dyzt != '0') { | 94 | } |
76 | return <div>抵押</div> | 95 | }, |
96 | { | ||
97 | label: '是否查封', | ||
98 | align: 'center', | ||
99 | fixed: 'right', | ||
100 | render: (h, scope) => { | ||
101 | if (scope.row.cfzt == '0') { | ||
102 | return <div>否</div> | ||
77 | } | 103 | } |
78 | if (scope.row.cfzt != '0') { | 104 | else{ |
79 | return <div>查封</div> | 105 | return <div>是</div> |
80 | } | 106 | } |
81 | } | 107 | } |
82 | } | 108 | } | ... | ... |
... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
7 | <div class="printView" style="width:100%;padding:20px"> | 7 | <div class="printView" style="width:100%;padding:20px"> |
8 | <h1 style="color: red; | 8 | <h1 style="color: red; |
9 | text-align: center; | 9 | text-align: center; |
10 | font-size: 38px;">城固县不动产登记交易服务中心</h1> | 10 | font-size: 38px;">{{form.djSqcxDO.ssqy}}不动产登记交易服务中心</h1> |
11 | <p style="width:100%;border-bottom: 1px solid red;margin-top: 20px; | 11 | <p style="width:100%;border-bottom: 1px solid red;margin-top: 20px; |
12 | margin-bottom: 10px;"></p> | 12 | margin-bottom: 10px;"></p> |
13 | <h2 style="font-size: 36px; | 13 | <h2 style="font-size: 36px; |
... | @@ -28,6 +28,8 @@ | ... | @@ -28,6 +28,8 @@ |
28 | <thead> | 28 | <thead> |
29 | <tr> | 29 | <tr> |
30 | <th style="background-color: #f2f2f2; | 30 | <th style="background-color: #f2f2f2; |
31 | text-align: center;height:36px">不动产权证号</th> | ||
32 | <th style="background-color: #f2f2f2; | ||
31 | text-align: center;height:36px">权利人</th> | 33 | text-align: center;height:36px">权利人</th> |
32 | <th style="background-color: #f2f2f2; | 34 | <th style="background-color: #f2f2f2; |
33 | text-align: center;height:36px">证号</th> | 35 | text-align: center;height:36px">证号</th> |
... | @@ -36,9 +38,9 @@ | ... | @@ -36,9 +38,9 @@ |
36 | <th style="background-color: #f2f2f2; | 38 | <th style="background-color: #f2f2f2; |
37 | text-align: center;height:36px">面积</th> | 39 | text-align: center;height:36px">面积</th> |
38 | <th style="background-color: #f2f2f2; | 40 | <th style="background-color: #f2f2f2; |
39 | text-align: center;height:36px">共有人</th> | 41 | text-align: center;height:36px">是否抵押</th> |
40 | <th style="background-color: #f2f2f2; | 42 | <th style="background-color: #f2f2f2; |
41 | text-align: center;height:36px">状态</th> | 43 | text-align: center;height:36px">是否查封</th> |
42 | </tr> | 44 | </tr> |
43 | </thead> | 45 | </thead> |
44 | <tbody> | 46 | <tbody> |
... | @@ -46,35 +48,31 @@ | ... | @@ -46,35 +48,31 @@ |
46 | <td style="border: 1px solid #ccc; | 48 | <td style="border: 1px solid #ccc; |
47 | text-align: center; | 49 | text-align: center; |
48 | padding: 8px; | 50 | padding: 8px; |
49 | text-align: left;">{{ item.qlrmc }}</td> | 51 | text-align: left;">{{ item.bdcqzh }}</td> |
50 | <td style="border: 1px solid #ccc; | ||
51 | text-align: center; | ||
52 | padding: 8px; | ||
53 | text-align: left;">{{ item.zjhm }}</td> | ||
54 | <td style="border: 1px solid #ccc; | 52 | <td style="border: 1px solid #ccc; |
55 | text-align: center; | 53 | text-align: center; |
56 | padding: 8px; | 54 | padding: 8px; |
57 | text-align: left;">{{ item.fdzl }}</td> | 55 | text-align: left;">{{ item.qlrmc }}</td> |
58 | <td style="border: 1px solid #ccc; | 56 | <td style="border: 1px solid #ccc; |
59 | text-align: center; | 57 | text-align: center; |
60 | padding: 8px; | 58 | padding: 8px; |
61 | text-align: left;">{{ item.fwmj }}</td> | 59 | text-align: left;">{{ item.zjhm }}</td> |
62 | <td style="border: 1px solid #ccc; | 60 | <td style="border: 1px solid #ccc; |
63 | text-align: center; | 61 | text-align: center; |
64 | padding: 8px; | 62 | padding: 8px; |
65 | text-align: left;">{{ item.gyr }}</td> | 63 | text-align: left;">{{ item.zl }}</td> |
66 | <td style="border: 1px solid #ccc; | 64 | <td style="border: 1px solid #ccc; |
67 | text-align: center; | 65 | text-align: center; |
68 | padding: 8px; | 66 | padding: 8px; |
69 | text-align: left;" v-if="item.dyzt != '0' && item.cfzt != '0'">抵押、查封</td> | 67 | text-align: left;">{{ item.fwmj }}</td> |
70 | <td style="border: 1px solid #ccc; | 68 | <td style="border: 1px solid #ccc; |
71 | text-align: center; | 69 | text-align: center; |
72 | padding: 8px; | 70 | padding: 8px; |
73 | text-align: left;" v-if="item.dyzt != '0'">抵押</td> | 71 | text-align: left;">{{ item.dyzt=='0'?"否":"是" }}</td> |
74 | <td style="border: 1px solid #ccc; | 72 | <td style="border: 1px solid #ccc; |
75 | text-align: center; | 73 | text-align: center; |
76 | padding: 8px; | 74 | padding: 8px; |
77 | text-align: left;" v-if="item.cfzt != '0'">查封</td> | 75 | text-align: left;">{{ item.cfzt=='0'?"否":"是" }}</td> |
78 | </tr> | 76 | </tr> |
79 | </tbody> | 77 | </tbody> |
80 | </table> | 78 | </table> |
... | @@ -87,7 +85,7 @@ | ... | @@ -87,7 +85,7 @@ |
87 | <ul style="text-align: right; | 85 | <ul style="text-align: right; |
88 | line-height: 36px; | 86 | line-height: 36px; |
89 | font-size: 18px;"> | 87 | font-size: 18px;"> |
90 | <li style="list-style: none;">城固县不动产登记交易服务中心</li> | 88 | <li style="list-style: none;">{{form.djSqcxDO.ssqy}}不动产登记交易服务中心</li> |
91 | <li style="list-style: none;">{{newDate}}</li> | 89 | <li style="list-style: none;">{{newDate}}</li> |
92 | </ul> | 90 | </ul> |
93 | <ol style="margin-left: 20px; | 91 | <ol style="margin-left: 20px; | ... | ... |
-
Please register or sign in to post a comment