This commit is contained in:
2022-03-18 08:26:53 +08:00
parent 504cf1af05
commit d894c8bbfa
18 changed files with 1646 additions and 82 deletions

View File

@@ -107,6 +107,16 @@
label="车辆名称"
>
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
align="center"
width="80"
label="能耗情况">
<template slot-scope="scope">
<el-button type="text" size="small" @click="eleHandle(scope.row.id)">详情</el-button>
</template>
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
@@ -208,6 +218,12 @@ export default {
},
LocationBtn (id) {
this.$router.push({ name: 'report-task-history-detail', query: { id } })
},
eleHandle (taskId) {
this.$router.push({
name: 'report-task-ele',
query: { taskId }
})
}
}
}