|
@@ -49,6 +49,11 @@
|
|
|
</div>
|
|
|
|
|
|
<el-table v-loading="loading" :data="hList">
|
|
|
+ <el-table-column label="设施" align="center" prop="objName">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.objName }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>>
|
|
|
<el-table-column label="日期" align="center" prop="date" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.date, '{y}-{m}-{d}') }}</span>
|
|
@@ -261,6 +266,7 @@ export default {
|
|
|
handleNodeClick(data) {
|
|
|
this.queryParams.areaCode = data.id
|
|
|
this.selectedLabel = data.label
|
|
|
+ this.objCode = null
|
|
|
this.handleQuery()
|
|
|
},
|
|
|
reset() {
|