|
@@ -3,7 +3,8 @@
|
|
|
<div>
|
|
|
<img src="~@/assets/img/data_m/set_icon.png" alt="" style="cursor: pointer;float:right" @click="showSetTableCols=true">
|
|
|
</div>
|
|
|
- <el-table
|
|
|
+ <el-table
|
|
|
+ v-loading="tableLoading"
|
|
|
ref="tableIns"
|
|
|
:data="tableData"
|
|
|
border
|
|
@@ -14,9 +15,27 @@
|
|
|
:column-key="col.ColumnKey"
|
|
|
:label="col.ColumnName"
|
|
|
:prop="col.ColumnKey"
|
|
|
- :sortable="col.IsSort===1?'custom':false"
|
|
|
align="center"
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot="header" slot-scope="scope">
|
|
|
+ <span>{{col.ColumnName}}</span>
|
|
|
+ <el-tooltip
|
|
|
+ effect="dark"
|
|
|
+ :content="getTableHeadTips(col.ColumnKey)"
|
|
|
+ placement="top-start"
|
|
|
+ >
|
|
|
+ <i class="el-icon-info" v-if="tipsKeysArr.includes(col.ColumnKey)"></i>
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span
|
|
|
+ v-if="col.ColumnKey==='UpdateFailedNum'"
|
|
|
+ style="color:#409EFF;cursor: pointer;"
|
|
|
+ @click="handleShowFail(scope.row)"
|
|
|
+ >{{scope.row.UpdateFailedNum}}</span>
|
|
|
+ <span v-else>{{scope.row[col.ColumnKey]}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<div slot="empty">
|
|
|
<tableNoData text="暂无数据"/>
|
|
|
</div>
|
|
@@ -32,38 +51,81 @@
|
|
|
/>
|
|
|
<!-- 自定义列表 -->
|
|
|
<SetTableCols v-model="showSetTableCols" :ColumnType="2" @change="handleTableColChange"/>
|
|
|
+
|
|
|
+ <!-- 刷新失败详情 -->
|
|
|
+ <GLRefreshFailDetail v-model="showFail" :TerminalCode="TerminalCode" :date="filterState.dateVal"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import {apiDataSource} from '@/api/modules/dataSource'
|
|
|
import SetTableCols from './SetTableCols.vue'
|
|
|
+import GLRefreshFailDetail from './GLRefreshFailDetail.vue'
|
|
|
export default {
|
|
|
- components:{SetTableCols},
|
|
|
+ components:{SetTableCols,GLRefreshFailDetail},
|
|
|
data() {
|
|
|
return {
|
|
|
+ tipsKeysArr:['NeedUpdateNum','HasUpdateNum','UpdateSuccessNum'],
|
|
|
tableColOpts:[],
|
|
|
tableData:[],
|
|
|
pageSize:15,
|
|
|
page:1,
|
|
|
total:0,
|
|
|
+ filterState:{
|
|
|
+ dateVal:this.$moment().format('YYYY-MM-DD')||''
|
|
|
+ },
|
|
|
|
|
|
showSetTableCols:false,
|
|
|
+ tableLoading:false,
|
|
|
+
|
|
|
+ showFail:false,
|
|
|
+ TerminalCode:''
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
this.getTableColOpts()
|
|
|
},
|
|
|
methods: {
|
|
|
+ //获取表格数据
|
|
|
+ getTableList(){
|
|
|
+ this.tableLoading=true
|
|
|
+ apiDataSource.GLStatisticTableList({
|
|
|
+ CurrentIndex:this.page,
|
|
|
+ PageSize:this.pageSize,
|
|
|
+ CreateTime:this.filterState.dateVal,
|
|
|
+ }).then(res=>{
|
|
|
+ this.tableLoading=false
|
|
|
+ if(res.Ret===200){
|
|
|
+ const arr=res.Data.List||[]
|
|
|
+ this.tableData=arr
|
|
|
+ this.total=res.Data.Paging.Totals
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ handleCurrentChange(e){
|
|
|
+ this.page=e
|
|
|
+ this.getTableList()
|
|
|
+ },
|
|
|
+
|
|
|
+ // 筛选项刷新列表
|
|
|
+ handleRefreshList(){
|
|
|
+ this.page=1
|
|
|
+ this.getTableList()
|
|
|
+ },
|
|
|
+
|
|
|
// 获取表格列配置项
|
|
|
getTableColOpts(){
|
|
|
+ this.tableLoading=true
|
|
|
this.tableColOpts=[]
|
|
|
apiDataSource.GLTableColOpts({ColumnType:2}).then(res=>{
|
|
|
if(res.Ret===200){
|
|
|
this.tableColOpts=res.Data.List||[]
|
|
|
this.$nextTick(()=>{
|
|
|
// this.$refs.tableIns.doLayout()
|
|
|
+ this.tableLoading=false
|
|
|
})
|
|
|
+ this.getTableList()
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -75,6 +137,21 @@ export default {
|
|
|
handleShowSetTableCol(){
|
|
|
this.showSetTableCols=true
|
|
|
},
|
|
|
+
|
|
|
+ handleShowFail(e){
|
|
|
+ this.TerminalCode=e.TerminalCode
|
|
|
+ this.showFail=true
|
|
|
+ },
|
|
|
+
|
|
|
+ // table说明文案
|
|
|
+ getTableHeadTips(key){
|
|
|
+ const tipsMap={
|
|
|
+ NeedUpdateNum:'今日该终端需定时刷新的指标数量',
|
|
|
+ HasUpdateNum:'今日该终端发起刷新任务的指标数量',
|
|
|
+ UpdateSuccessNum:' 今日该终端刷新成功的指标数量'
|
|
|
+ }
|
|
|
+ return tipsMap[key]
|
|
|
+ }
|
|
|
},
|
|
|
}
|
|
|
</script>
|