bdcsj
Showing
4 changed files
with
14 additions
and
213 deletions
... | @@ -7,7 +7,7 @@ class data extends filter { | ... | @@ -7,7 +7,7 @@ class data extends filter { |
7 | return [ | 7 | return [ |
8 | { | 8 | { |
9 | label: "行政区", | 9 | label: "行政区", |
10 | width: 80, | 10 | width: 80, |
11 | render: (h, scope) => { | 11 | render: (h, scope) => { |
12 | return ( | 12 | return ( |
13 | <div> | 13 | <div> |
... | @@ -18,7 +18,7 @@ class data extends filter { | ... | @@ -18,7 +18,7 @@ class data extends filter { |
18 | }, | 18 | }, |
19 | { | 19 | { |
20 | label: "权属状态", | 20 | label: "权属状态", |
21 | width: 80, | 21 | width: 80, |
22 | render: (h, scope) => { | 22 | render: (h, scope) => { |
23 | return ( | 23 | return ( |
24 | <div> | 24 | <div> |
... | @@ -26,10 +26,10 @@ class data extends filter { | ... | @@ -26,10 +26,10 @@ class data extends filter { |
26 | </div> | 26 | </div> |
27 | ) | 27 | ) |
28 | }, | 28 | }, |
29 | }, | 29 | }, |
30 | { | 30 | { |
31 | label: "权利类型", | 31 | label: "权利类型", |
32 | width: 80, | 32 | width: 80, |
33 | render: (h, scope) => { | 33 | render: (h, scope) => { |
34 | return ( | 34 | return ( |
35 | <div> | 35 | <div> |
... | @@ -40,7 +40,7 @@ class data extends filter { | ... | @@ -40,7 +40,7 @@ class data extends filter { |
40 | }, | 40 | }, |
41 | { | 41 | { |
42 | label: "登记类型", | 42 | label: "登记类型", |
43 | width: 80, | 43 | width: 80, |
44 | render: (h, scope) => { | 44 | render: (h, scope) => { |
45 | return ( | 45 | return ( |
46 | <div> | 46 | <div> |
... | @@ -57,11 +57,12 @@ class data extends filter { | ... | @@ -57,11 +57,12 @@ class data extends filter { |
57 | { | 57 | { |
58 | label: "不动产单元号", | 58 | label: "不动产单元号", |
59 | prop: "BDCDYH", | 59 | prop: "BDCDYH", |
60 | width: 150, | 60 | width: 150, |
61 | }, | 61 | }, |
62 | { | 62 | { |
63 | label: "不动产权证号", | 63 | label: "不动产权证号", |
64 | prop: "BDCQZH" | 64 | prop: "BDCQZH", |
65 | width: 150, | ||
65 | }, | 66 | }, |
66 | { | 67 | { |
67 | label: "权利人", | 68 | label: "权利人", |
... | @@ -74,13 +75,13 @@ class data extends filter { | ... | @@ -74,13 +75,13 @@ class data extends filter { |
74 | { | 75 | { |
75 | label: "使用权面积", | 76 | label: "使用权面积", |
76 | prop: "SYQMJ", | 77 | prop: "SYQMJ", |
77 | width: 90, | 78 | width: 90, |
78 | }, | 79 | }, |
79 | { | 80 | { |
80 | label: "坐落", | 81 | label: "坐落", |
81 | prop: "zl" | 82 | prop: "zl" |
82 | }, | 83 | }, |
83 | 84 | ||
84 | { | 85 | { |
85 | label: "登记时间", | 86 | label: "登记时间", |
86 | width: 140, | 87 | width: 140, | ... | ... |
... | @@ -36,11 +36,13 @@ class data extends filter { | ... | @@ -36,11 +36,13 @@ class data extends filter { |
36 | }, | 36 | }, |
37 | { | 37 | { |
38 | label: "不动产单元号", | 38 | label: "不动产单元号", |
39 | prop: "BDCDYH" | 39 | prop: "BDCDYH", |
40 | width: 150, | ||
40 | }, | 41 | }, |
41 | { | 42 | { |
42 | label: "不动产权证号", | 43 | label: "不动产权证号", |
43 | prop: "BDCQZH" | 44 | prop: "BDCQZH", |
45 | width: 150, | ||
44 | }, | 46 | }, |
45 | { | 47 | { |
46 | label: "地籍号", | 48 | label: "地籍号", | ... | ... |
1 | import filter from '@/utils/filter.js' | ||
2 | class data extends filter { | ||
3 | constructor() { | ||
4 | super() | ||
5 | } | ||
6 | columns () { | ||
7 | return [ | ||
8 | { | ||
9 | label: "行政区", | ||
10 | width: 80, | ||
11 | render: (h, scope) => { | ||
12 | return ( | ||
13 | <div> | ||
14 | <span>{this.dicStatus(scope.row.QXDM, 'A20')}</span> | ||
15 | </div> | ||
16 | ) | ||
17 | }, | ||
18 | }, | ||
19 | { | ||
20 | label: "权属状态", | ||
21 | width: 80, | ||
22 | render: (h, scope) => { | ||
23 | return ( | ||
24 | <div> | ||
25 | <span>{this.dicStatus(scope.row.QSZT, 'A22')}</span> | ||
26 | </div> | ||
27 | ) | ||
28 | }, | ||
29 | }, | ||
30 | { | ||
31 | label: "权利类型", | ||
32 | width: 80, | ||
33 | render: (h, scope) => { | ||
34 | return ( | ||
35 | <div> | ||
36 | <span>{this.dicStatus(scope.row.QLLX, 'A8')}</span> | ||
37 | </div> | ||
38 | ) | ||
39 | }, | ||
40 | }, | ||
41 | { | ||
42 | label: "登记类型", | ||
43 | width: 80, | ||
44 | render: (h, scope) => { | ||
45 | return ( | ||
46 | <div> | ||
47 | <span>{this.dicStatus(scope.row.DJLX, 'A21')}</span> | ||
48 | </div> | ||
49 | ) | ||
50 | }, | ||
51 | }, | ||
52 | { | ||
53 | label: "业务号", | ||
54 | prop: "YWH", | ||
55 | width: 95 | ||
56 | }, | ||
57 | { | ||
58 | label: "不动产单元号", | ||
59 | prop: "BDCDYH", | ||
60 | width: 150, | ||
61 | }, | ||
62 | { | ||
63 | label: "不动产权证号", | ||
64 | prop: "BDCQZH", | ||
65 | width: 150, | ||
66 | }, | ||
67 | { | ||
68 | label: "权利人", | ||
69 | prop: "qlrmc" | ||
70 | }, | ||
71 | { | ||
72 | label: "用途", | ||
73 | prop: "YT" | ||
74 | }, | ||
75 | { | ||
76 | label: "使用权面积", | ||
77 | prop: "SYQMJ", | ||
78 | width: 90, | ||
79 | }, | ||
80 | { | ||
81 | label: "坐落", | ||
82 | prop: "zl" | ||
83 | }, | ||
84 | |||
85 | { | ||
86 | label: "登记时间", | ||
87 | width: 140, | ||
88 | prop: "DJSJ" | ||
89 | }, | ||
90 | { | ||
91 | label: "登记机构", | ||
92 | prop: "DJJG" | ||
93 | } | ||
94 | ] | ||
95 | } | ||
96 | } | ||
97 | export default new data() |
1 | import filter from '@/utils/filter.js' | ||
2 | class data extends filter { | ||
3 | constructor() { | ||
4 | super() | ||
5 | } | ||
6 | columns () { | ||
7 | return [ | ||
8 | { | ||
9 | label: "行政区", | ||
10 | render: (h, scope) => { | ||
11 | return ( | ||
12 | <div> | ||
13 | <span>{this.dicStatus(scope.row.XZQ, 'A20')}</span> | ||
14 | </div> | ||
15 | ) | ||
16 | }, | ||
17 | }, | ||
18 | { | ||
19 | label: "权属状态", | ||
20 | render: (h, scope) => { | ||
21 | return ( | ||
22 | <div> | ||
23 | <span>{this.dicStatus(scope.row.ZXYWH, 'A22')}</span> | ||
24 | </div> | ||
25 | ) | ||
26 | }, | ||
27 | }, | ||
28 | { | ||
29 | label: "业务号", | ||
30 | prop: "YWH", | ||
31 | width: 150 | ||
32 | }, | ||
33 | { | ||
34 | label: "业务号", | ||
35 | prop: "BDCDYH" | ||
36 | }, | ||
37 | { | ||
38 | label: "不动产单元号", | ||
39 | prop: "BDCDYH", | ||
40 | width: 150, | ||
41 | }, | ||
42 | { | ||
43 | label: "不动产权证号", | ||
44 | prop: "BDCQZH", | ||
45 | width: 150, | ||
46 | }, | ||
47 | { | ||
48 | label: "地籍号", | ||
49 | prop: "DJH" | ||
50 | }, | ||
51 | { | ||
52 | label: "发包方", | ||
53 | prop: "DJH" | ||
54 | }, | ||
55 | { | ||
56 | label: "权利人", | ||
57 | prop: "qlr" | ||
58 | }, | ||
59 | { | ||
60 | label: "用途", | ||
61 | prop: "yt" | ||
62 | }, | ||
63 | { | ||
64 | label: "权利类型", | ||
65 | render: (h, scope) => { | ||
66 | return ( | ||
67 | <div> | ||
68 | <span>{this.dicStatus(scope.row.QLLX, 'A8')}</span> | ||
69 | </div> | ||
70 | ) | ||
71 | }, | ||
72 | }, | ||
73 | { | ||
74 | label: "权利性质", | ||
75 | render: (h, scope) => { | ||
76 | return ( | ||
77 | <div> | ||
78 | <span>{this.dicStatus(scope.row.BDCQZH, 'A9')}</span> | ||
79 | </div> | ||
80 | ) | ||
81 | }, | ||
82 | }, | ||
83 | { | ||
84 | label: "登记类型", | ||
85 | render: (h, scope) => { | ||
86 | return ( | ||
87 | <div> | ||
88 | <span>{this.dicStatus(scope.row.QLLX, 'A21')}</span> | ||
89 | </div> | ||
90 | ) | ||
91 | }, | ||
92 | }, | ||
93 | { | ||
94 | label: "登记时间", | ||
95 | width: 140, | ||
96 | prop: "DJSJ" | ||
97 | }, | ||
98 | { | ||
99 | label: "登记机构", | ||
100 | prop: "DJJG" | ||
101 | } | ||
102 | ] | ||
103 | } | ||
104 | } | ||
105 | export default new data() |
-
Please register or sign in to post a comment