|
|
|
@ -4,7 +4,11 @@
|
|
|
|
|
<div class="one-line">
|
|
|
|
|
<div class="select-input">
|
|
|
|
|
<div class="select-span">行政区划:</div>
|
|
|
|
|
<executive @quhua="quhua" @quhuadizhi="quhuadizhi" ref="executive"></executive>
|
|
|
|
|
<executive
|
|
|
|
|
@quhua="quhua"
|
|
|
|
|
@quhuadizhi="quhuadizhi"
|
|
|
|
|
ref="executive"
|
|
|
|
|
></executive>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="select-input">
|
|
|
|
|
<div class="select-span">经济类型:</div>
|
|
|
|
@ -192,7 +196,11 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pagination">
|
|
|
|
|
<my-pagination :total="total" @pagesChange="pagesChange" ref="mypagination"></my-pagination>
|
|
|
|
|
<my-pagination
|
|
|
|
|
:total="total"
|
|
|
|
|
@pagesChange="pagesChange"
|
|
|
|
|
ref="mypagination"
|
|
|
|
|
></my-pagination>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 查看 -->
|
|
|
|
|
<el-dialog
|
|
|
|
@ -620,7 +628,8 @@ export default {
|
|
|
|
|
for (let key in this.details) {
|
|
|
|
|
this.listDes.forEach((value1, index1) => {
|
|
|
|
|
if (key == value1.eng) {
|
|
|
|
|
this.listDes[index1].value = this.details[key] == '无' ? '/' : this.details[key];
|
|
|
|
|
this.listDes[index1].value =
|
|
|
|
|
this.details[key] == "无" ? "/" : this.details[key];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -639,7 +648,7 @@ export default {
|
|
|
|
|
this.dict.type.economic_categories,
|
|
|
|
|
value1.value
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//经济类型小类
|
|
|
|
|
if (value1.eng == "ecoTypeSmall") {
|
|
|
|
|
this.listDes[index1].value = this.filterTable(
|
|
|
|
@ -700,11 +709,14 @@ export default {
|
|
|
|
|
value1.value
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (value1.value == null ) {
|
|
|
|
|
this.listDes[index1].value = '/'
|
|
|
|
|
if (value1.value == null) {
|
|
|
|
|
this.listDes[index1].value = "/";
|
|
|
|
|
}
|
|
|
|
|
if (value1.value == "false") {
|
|
|
|
|
this.listDes[index1].value = "否";
|
|
|
|
|
}
|
|
|
|
|
if ( value1.value == 'false') {
|
|
|
|
|
this.listDes[index1].value = '否'
|
|
|
|
|
if (value1.value == "true") {
|
|
|
|
|
this.listDes[index1].value = "是";
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|