Newer
Older
baseResourceFront / src / views / report / historyData.vue
yangqianqian on 6 Apr 2021 5 KB 按照新UI进行修改
<template>
  <div class="app-container">
    <!--筛选条件-->
    <el-dialog :visible.sync="dialogFormVisible" :title="title" append-to-body>
      <el-form ref="selectForm" :inline="true" :model="listQuery" size="small" class="form-container">
        <el-form-item class="selectForm-container-item" prop="startTime">
          <el-date-picker
            v-model="timeRange"
            type="datetimerange"
            range-separator="至"
            value-format="yyyy-MM-dd HH:mm:ss"
            start-placeholder="查询开始时间"
            end-placeholder="查询结束时间"/>
        </el-form-item>
        <el-button class="filter-item" type="primary" icon="el-icon-search" size="small" @click="search">搜索</el-button>
      </el-form>
      <!--查询结果Table显示-->
      <div>
        <el-row class="table-title">
          <el-col :span="6"><div class="title-header"><i class="el-icon-menu"/>数据列表</div></el-col>
        </el-row>
        <el-table v-loading="listLoading" :data="list" class="table" size="small" height="300px" border>
          <el-table-column :index="indexMethod" label="序号" align="center" type="index" width="55" ></el-table-column>
          <el-table-column v-for="column in columns" :key="column.value" :label="column.text" :width="column.width" :align="column.align" show-overflow-tooltip>
            <template slot-scope="scope">
              <span>{{ scope.row[column.value] }}</span>
            </template>
          </el-table-column>
        </el-table>
      </div>
      <!--分页-->
      <div class="pagination-container">
        <el-pagination
          v-show="total>listQuery.limit"
          :current-page="listQuery.offset"
          :page-sizes="[20,30,50]"
          :page-size="listQuery.limit"
          :total="total"
          align="center"
          layout="total, sizes, prev, pager, next"
          @size-change="handleSizeChange"
          @current-change="handleCurrentChange"/>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import { getControllerHistory } from '@/api/system/report'

export default {
  name: 'HistoryData',
  data() {
    return {
      listQuery: {
        lampId: '',
        startTime: '',
        endTime: '',
        offset: 1,
        limit: 20,
        sort: '',
        order: ''
      }, // 筛选条件
      columns: [
        {
          text: '电流',
          value: 'electricity',
          align: 'center'
        },
        {
          text: '电压',
          value: 'voltage',
          align: 'center'
        },
        {
          text: '有功功率(W)',
          value: 'activePower',
          align: 'center'
        },
        {
          text: '无功功率(VAR)',
          value: 'reactivePower',
          align: 'center'
        },
        {
          text: '上传时间',
          value: 'upTime',
          align: 'center'
        }
      ],
      title: '',
      total: 0, // 数据总数
      list: [], // 报警列表
      listLoading: true, // 列表加载
      timeRange: [], // 时间范围
      dialogFormVisible: false
    }
  },
  watch: {
    // 当时间范围变化时,填充listQuery时间
    timeRange(val) {
      if (val && val.length > 0) {
        this.listQuery.startTime = val[0]
        this.listQuery.endTime = val[1]
      } else {
        this.listQuery.startTime = ''
        this.listQuery.endTime = ''
      }
    }
  },
  created() {
    this.fetchData()// 获取数据
  },
  activated() {
    this.fetchData()
  },
  methods: {
    // 初始化对话框
    initDialog: function(dialogFormVisible, row = null) {
      this.dialogFormVisible = dialogFormVisible
      this.listQuery.lampId = row.lampId
      this.title = row.lampName + '历史数据'
      this.fetchData()
    },
    fetchData(isNowPage = true) {
      this.listLoading = true
      if (!isNowPage) { // 是否显示当前页,否则跳转第一页
        this.listQuery.offset = 1
      }
      getControllerHistory(this.listQuery).then(response => {
        if (response.code === 200) {
          this.list = response.data.rows
          this.total = parseInt(response.data.total)
        } else {
          this.$message.error(response.message)
        }
        this.listLoading = false
      })
    },
    // 查询数据
    search() {
      this.fetchData(false)
    },
    showDetail(row) {
      this.$router.push({ path: '/collectDetailRecords/' + row.irId })
    },
    cancel() {
      this.dialogFormVisible = false
    },
    // 序号计算
    indexMethod(index) {
      return this.listQuery.limit * (this.listQuery.offset - 1) + index + 1
    },
    // 改变页容量
    handleSizeChange(val) {
      this.listQuery.limit = val
      this.fetchData()
    },
    // 改变当前页
    handleCurrentChange(val) {
      this.listQuery.offset = val
      this.fetchData()
    }
  }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  $tableTitleHeight:46px;
  .app-container{
    margin-bottom:10px
  }
  .table{
    margin-bottom: 10px;
  }
  .small-row-class{
    height: 15px;
  }
  .pagination-container{
    margin-bottom: 50px;
  }
  .table-title{
    background-color:rgba(243, 243, 243, 1);
    height: $tableTitleHeight;
    .title-header{
      line-height:$tableTitleHeight;
      color: #606266;
      font-size: 15px;
      i{
        margin-left: 5px;
        margin-right: 5px;
      }
    }
  }
  .edit_btns{
    .edit_btn{
      float:right;
      margin:7px 3px;//为了需要居中显示margin-top和bottom要用$tableTitleHeight减去按钮原高度除以2
    }
  }
</style>
<style rel="stylesheet/scss" lang="scss">
  .small-row-class td{
    padding:2px 0px;
  }
</style>