|
@@ -11,7 +11,8 @@
|
|
|
</div>
|
|
|
<!-- 数据表格 -->
|
|
|
<div class="table-area">
|
|
|
- <el-table :data="tableData" style="width: 100%" height="calc(100% - 32px)" v-loading="loading" :header-cell-style="headerStyle" @row-click="handleClickRow">
|
|
|
+ <el-table :data="tableData" style="width: 100%" height="calc(100% - 32px)" v-loading="loading" :header-cell-style="headerStyle"
|
|
|
+ @row-click="handleClickRow">
|
|
|
<el-table-column prop='' label='' show-overflow-tooltip width="35" header-align='center'>
|
|
|
<template slot-scope="scope">
|
|
|
<el-tooltip v-if="scope.row.DataQuality!=0" content="已断数,请检查" effect="dark" placement="top">
|
|
@@ -132,8 +133,8 @@ export default {
|
|
|
this.drawers[index].drawer = true;
|
|
|
}
|
|
|
},
|
|
|
- handleClickRow(row,column,event){//点击表格行
|
|
|
- lStorage.set('screen_data', {path: this.$route.path, data: {MeterFunc: row.MeterFunc, RelatedInstance: row.RelatedInstance}})
|
|
|
+ handleClickRow(row, column, event) {//点击表格行
|
|
|
+ lStorage.set('screen_data', { path: this.$route.path, data: { MeterFunc: row.MeterFunc, RelatedInstance: row.RelatedInstance } })
|
|
|
},
|
|
|
//获取统计数据
|
|
|
getOverViewList() {
|
|
@@ -248,4 +249,7 @@ export default {
|
|
|
/deep/ .el-dialog__body {
|
|
|
padding-bottom: 20px;
|
|
|
}
|
|
|
+/deep/ .el-drawer__header>:first-child:focus{
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
</style>
|