af574d3d by 任超
2 parents a5a7d0ed dbc419ef
...@@ -220,12 +220,13 @@ export default { ...@@ -220,12 +220,13 @@ export default {
220 overflow-x: scroll; 220 overflow-x: scroll;
221 } 221 }
222 222
223 .xxTable > tr th:not(:first-child) { 223 // .xxTable > tr th:not(:first-child) {
224 width: 223px; 224 // width: 223px;
225 } 225 // }
226 .xxTable > tr:first-child th { 226 .xxTable > tr:first-child th {
227 width: 140px; 227 width: 140px;
228 } 228 }
229
229 .xxTable { 230 .xxTable {
230 border-spacing: 1px; 231 border-spacing: 1px;
231 tr > th { 232 tr > th {
......
...@@ -176,11 +176,20 @@ export default { ...@@ -176,11 +176,20 @@ export default {
176 this.$store.dispatch("djbxx/setDjbxx", obj); 176 this.$store.dispatch("djbxx/setDjbxx", obj);
177 _this.isDialog = true; 177 _this.isDialog = true;
178 178
179 // if (scope.row.qllxmc == "预告买卖登记") { 179 // 弹窗打开,自动切换到对应的登记类型
180 // this.$refs.djbxxDialog.showTab = "ygdj"; 180 if (scope.row.qllxmc == "国有建设用地使用权") {
181 // } else if (scope.row.qllx == "查封登记") { 181 this.$refs.djbxxDialog.showType = "JSYDSYQ";
182 // this.$refs.djbxxDialog.showTab = "cfdj"; 182 } else if (scope.row.qllxmc == "抵押权") {
183 // } 183 this.$refs.djbxxDialog.showType = "DYAQ";
184 } else if (scope.row.qllxmc == "地役权") {
185 this.$refs.djbxxDialog.showType = "DYIQ";
186 } else if (scope.row.qllxmc == "预告登记") {
187 this.$refs.djbxxDialog.showType = "YGDJ";
188 } else if (scope.row.qllxmc == "异议登记") {
189 this.$refs.djbxxDialog.showType = "YYDJ";
190 } else if (scope.row.qllxmc == "查封登记") {
191 this.$refs.djbxxDialog.showType = "CFDJ";
192 }
184 }); 193 });
185 }, 194 },
186 }, 195 },
......