|
|
|
@ -117,7 +117,7 @@
|
|
|
|
|
header-align="center"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ componendDistrict(scope.row.subdistrict) || '/' }}</span>
|
|
|
|
|
<span>{{ componendDistrict(scope.row.subdistrict) || "/" }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
@ -643,7 +643,11 @@ export default {
|
|
|
|
|
this.listDes.forEach((value1, index1) => {
|
|
|
|
|
if (key == value1.eng) {
|
|
|
|
|
this.listDes[index1].value =
|
|
|
|
|
this.details[key] == "无" ? "/" : this.details[key];
|
|
|
|
|
this.details[key] == "无"
|
|
|
|
|
? "/"
|
|
|
|
|
: this.details[key] == "null"
|
|
|
|
|
? "/"
|
|
|
|
|
: this.details[key];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -723,7 +727,7 @@ export default {
|
|
|
|
|
value1.value
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (value1.value == null) {
|
|
|
|
|
if (value1.value == null ) {
|
|
|
|
|
this.listDes[index1].value = "/";
|
|
|
|
|
}
|
|
|
|
|
if (value1.value == "false") {
|
|
|
|
|