|
@@ -113,6 +113,14 @@ export default {
|
|
gcjzmc: this.search,
|
|
gcjzmc: this.search,
|
|
})
|
|
})
|
|
.then((res) => {
|
|
.then((res) => {
|
|
|
|
+ let list=res.data.rows
|
|
|
|
+ list.map(item=>{
|
|
|
|
+ if(item.fxdjYs=='低风险(蓝色)'){
|
|
|
|
+ item.newFexj='较低风险'
|
|
|
|
+ }else{
|
|
|
|
+ item.newFexj=item.fxdj
|
|
|
|
+ }
|
|
|
|
+ })
|
|
this.tableData = res.data.rows;
|
|
this.tableData = res.data.rows;
|
|
this.total = res.data.total;
|
|
this.total = res.data.total;
|
|
this.loading = false;
|
|
this.loading = false;
|
|
@@ -383,7 +391,8 @@ export default {
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="jcnd" label="建筑年代"> </el-table-column>
|
|
<el-table-column prop="jcnd" label="建筑年代"> </el-table-column>
|
|
<el-table-column prop="yhs" label="隐患数"> </el-table-column>
|
|
<el-table-column prop="yhs" label="隐患数"> </el-table-column>
|
|
- <el-table-column prop="fxdj" label="风险等级" show-overflow-tooltip>
|
|
|
|
|
|
+ <el-table-column prop="newFexj" label="风险等级" show-overflow-tooltip>
|
|
|
|
+
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="wlw" label="物联网"> </el-table-column>
|
|
<el-table-column prop="wlw" label="物联网"> </el-table-column>
|
|
</basic-table>
|
|
</basic-table>
|