按不同时间渲染表格数据

在这里插入图片描述

{
  "result" : 1,
  "msg" : "操作成功!",
  "data" : {
    "chart" : [ {
      "temp_stamp" : "2022-04-16 09:41:12",
      "temp_face" : 1,
      "temp_battery" : 11,
      "temp_a" : 0.0,
      "temp_line" : 1,
      "temp_b" : 0.0,
      "device_id" : 103,
      "temp_well" : 105,
      "temp_envir" : 1,
      "temp_c" : 0.0
    }, {
      "temp_stamp" : "2022-04-16 10:15:10",
      "temp_face" : 1,
      "temp_battery" : 1,
      "temp_a" : 0.0,
      "temp_line" : 1,
      "temp_b" : 0.0,
      "device_id" : 103,
      "temp_well" : 105,
      "temp_envir" : 1,
      "temp_c" : 0.0
    } ]
  }
}
<template>
  <el-table :data="tableData" style="width: 100%">
    <el-table-column prop="title" label="设备名称" width="150"></el-table-column>
    <el-table-column label="温度">
      <template v-for="i in tableColumns">
        <el-table-column :prop="i" :label="i" border></el-table-column>
      </template>
    </el-table-column>
  </el-table>
</template>
export default {
  props: ['device_id'],
  name: 'charts',
  data() {
    return {
      chart: null,
      tableData: [],
      tableColumns: []
    }
  },

  beforeMount() {
    this.getConnectionCharts()
  },

  methods: {
    //获取信息
    getConnectionCharts() {
      getConnectionCharts({
        device_id: 422,
        // 查询全部数据
        type: 5
      }).then(res => {
        console.log(res, 'res')
        const [list, columns] = this.formatTableData(res.data.chart)
        this.tableData = list
        this.tableColumns = columns
      }).catch(err => {
        this.tableData = []
      })
    },
    formatTableData(data) {
      const keys = {
        temp_face: '表皮温度',
        temp_battery: '电池温度',
        temp_line: '线芯温度',
        temp_a: 'a相温度',
        temp_b: 'b相温度',
        temp_c: 'c相温度',
        temp_envir: '环境温度'
      }
      const result = Object.keys(keys).map(i => ({ title: keys[i], key: i }))
      console.log(keys, 'keys')

      result.forEach(item => {

        data.forEach(i => {
          const k = i.temp_stamp.split(' ')[1].substring(0, 5)
          item[k] = i[item.key]
        })
      })
      const tableColumns = data.map(i => i.temp_stamp.split(' ')[1].substring(0, 5))
      return [result, tableColumns]
    }
  }
}
</script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值