杜函宇 1 year ago
parent a3d138bfab
commit 6384a623a4

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

Loading…
Cancel
Save