Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
4 changed files
with
116 additions
and
2 deletions
... | @@ -54,7 +54,9 @@ service.interceptors.response.use( | ... | @@ -54,7 +54,9 @@ 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 { | 57 | }else if (response.status == 2002){ |
58 | Message.error(response.message); | ||
59 | }else { | ||
58 | handleErrorData(response.data); | 60 | handleErrorData(response.data); |
59 | } | 61 | } |
60 | return response; | 62 | return response; | ... | ... |
... | @@ -24,6 +24,116 @@ class data extends filter { | ... | @@ -24,6 +24,116 @@ class data extends filter { |
24 | label: "历史", | 24 | label: "历史", |
25 | }, | 25 | }, |
26 | ], | 26 | ], |
27 | TDSYQ: [ | ||
28 | { | ||
29 | prop: "qszt", | ||
30 | label: "权属状态", | ||
31 | }, | ||
32 | { | ||
33 | prop: "sjlx", | ||
34 | label: "数据类型", | ||
35 | }, | ||
36 | { | ||
37 | prop: "qllxmc", | ||
38 | label: "权利类型", | ||
39 | }, | ||
40 | { | ||
41 | prop: "djlxmc", | ||
42 | label: "登记类型", | ||
43 | }, | ||
44 | { | ||
45 | prop: "ssywh", | ||
46 | label: "上手业务号", | ||
47 | }, | ||
48 | { | ||
49 | prop: "dah", | ||
50 | label: "档案号", | ||
51 | }, | ||
52 | { | ||
53 | prop: "ywh", | ||
54 | label: "业务号", | ||
55 | }, | ||
56 | { | ||
57 | prop: "bdcdyh", | ||
58 | label: "不动产单元号", | ||
59 | }, | ||
60 | { | ||
61 | prop: "zl", | ||
62 | label: "坐落", | ||
63 | }, | ||
64 | { | ||
65 | prop: "gyqk", | ||
66 | label: "共有情况", | ||
67 | }, | ||
68 | { | ||
69 | prop: "qlrlx", | ||
70 | label: "权利人类型", | ||
71 | }, | ||
72 | { | ||
73 | prop: "qlrmc", | ||
74 | label: "权利人", | ||
75 | }, | ||
76 | { | ||
77 | prop: "qlrzjzl", | ||
78 | label: "证件种类", | ||
79 | }, | ||
80 | { | ||
81 | prop: "qlrzjhm", | ||
82 | label: "证件号", | ||
83 | }, | ||
84 | { | ||
85 | prop: "ytmc", | ||
86 | label: "土地用途", | ||
87 | }, | ||
88 | { | ||
89 | prop: "mjdw", | ||
90 | label: "面积单位", | ||
91 | }, | ||
92 | { | ||
93 | prop: "gdmj", | ||
94 | label: "耕地面积", | ||
95 | }, | ||
96 | { | ||
97 | prop: "ldmj", | ||
98 | label: "林地面积", | ||
99 | }, | ||
100 | { | ||
101 | prop: "cdmj", | ||
102 | label: "草地面积", | ||
103 | }, | ||
104 | { | ||
105 | prop: "qtnydmj", | ||
106 | label: "其他农用地面积", | ||
107 | }, | ||
108 | { | ||
109 | prop: "jsydmj", | ||
110 | label: "建设用地面积", | ||
111 | }, | ||
112 | { | ||
113 | prop: "wlydmj", | ||
114 | label: "未利用地面积", | ||
115 | }, | ||
116 | { | ||
117 | prop: "djyy", | ||
118 | label: "登记原因", | ||
119 | }, | ||
120 | { | ||
121 | prop: "bdcqzh", | ||
122 | label: "不动产权证号", | ||
123 | }, | ||
124 | { | ||
125 | prop: "djsj", | ||
126 | label: "登记时间", | ||
127 | }, | ||
128 | { | ||
129 | prop: "dbr", | ||
130 | label: "登簿人", | ||
131 | }, | ||
132 | { | ||
133 | prop: "fj", | ||
134 | label: "附记", | ||
135 | }, | ||
136 | ], | ||
27 | JSYDSYQ: [ | 137 | JSYDSYQ: [ |
28 | { | 138 | { |
29 | prop: "qszt", | 139 | prop: "qszt", | ... | ... |
... | @@ -78,7 +78,7 @@ | ... | @@ -78,7 +78,7 @@ |
78 | //空列值个数 | 78 | //空列值个数 |
79 | emptycolNum: datas.columns().emptycolNum, | 79 | emptycolNum: datas.columns().emptycolNum, |
80 | //列名称对象 | 80 | //列名称对象 |
81 | columns: datas.columns().JSYDSYQ, | 81 | columns: datas.columns().TDSYQ, |
82 | }; | 82 | }; |
83 | }, | 83 | }, |
84 | created () { | 84 | created () { | ... | ... |
... | @@ -211,6 +211,7 @@ | ... | @@ -211,6 +211,7 @@ |
211 | */ | 211 | */ |
212 | getNextNode (bsmSqyw) { | 212 | getNextNode (bsmSqyw) { |
213 | getNextNode(bsmSqyw).then(res => { | 213 | getNextNode(bsmSqyw).then(res => { |
214 | if (res.result) { | ||
214 | if (res.result.djqx) { | 215 | if (res.result.djqx) { |
215 | this.djqxList = res.result.djqx; | 216 | this.djqxList = res.result.djqx; |
216 | this.djqxList.forEach(item => { | 217 | this.djqxList.forEach(item => { |
... | @@ -223,6 +224,7 @@ | ... | @@ -223,6 +224,7 @@ |
223 | this.$set(item, 'selected', false); | 224 | this.$set(item, 'selected', false); |
224 | }); | 225 | }); |
225 | } | 226 | } |
227 | } | ||
226 | }) | 228 | }) |
227 | }, | 229 | }, |
228 | 230 | ... | ... |
-
Please register or sign in to post a comment