Newer
Older
qd_cnooc_front / src / views / dashboard / components / AlarmByDays.vue
[wangxitong] on 17 Mar 2022 3 KB 添加三级分区
<template>
  <div class="container">
    <div class="function">
      <el-button round size="mini" @click="changeTime('year')">近1年</el-button>
      <el-button round size="mini" @click="changeTime('halfyear')">近6月</el-button>
      <el-button round size="mini" @click="changeTime('3month')">近3月</el-button>
      <el-button round size="mini" @click="changeTime('month')">近1月</el-button>
      <el-button round size="mini" @click="changeTime('week')">近1周</el-button>
    </div>
    <ve-line :data="chartData" :title="title" :settings="chartSettings" style="margin-bottom: 18px"/>
  </div>
</template>

<script>
import { getDayTime } from '@/utils/dateutils'
import { alarmStaticByDay } from '@/api/dataStatics'

export default {
  name: 'AlarmByDays',
  data() {
    this.title = {
      text: '报警趋势'
    }
    this.chartSettings = {
      labelMap: {
        'alarmWells': '报警井数',
        'alarmTimes': '报警次数'
      },
      metrics: ['alarmTimes', 'alarmWells'],
      dimension: ['date']
    }
    return {
      listQuery: {
        deviceType: '',
        beginTime: '',
        endTime: ''
      },
      chartData: {
        columns: ['date', 'alarmTimes', 'alarmWells'],
        rows: []
      }
    }
  },
  mounted() {
    this.changeTime('week')
    this.fetchData()
    // 模拟数据
    // this.chartData.rows = [
    //   { 'date': '9月20日', 'alarmTimes': 153, 'alarmWells': 43 },
    //   { 'date': '9月21日', 'alarmTimes': 150, 'alarmWells': 30 },
    //   { 'date': '9月22日', 'alarmTimes': 143, 'alarmWells': 23 },
    //   { 'date': '9月23日', 'alarmTimes': 173, 'alarmWells': 23 },
    //   { 'date': '9月24日', 'alarmTimes': 272, 'alarmWells': 52 },
    //   { 'date': '9月25日', 'alarmTimes': 253, 'alarmWells': 53 }
    // ]
  },
  methods: {
    fetchData() {
      // const beginTime = getDayTime(new Date().getTime() - 24 * 7 * 60 * 60 * 1000).Format('yyyy-MM-dd hh:mm:ss')
      // const endTime = new Date().Format('yyyy-MM-dd hh:mm:ss')
      // this.listQuery.beginTime = beginTime
      // this.listQuery.endTime = endTime
      alarmStaticByDay(this.listQuery).then(response => {
        this.chartData.rows = response.data
      })
    },
    changeTime(timeType) {
      let beginTime
      switch (timeType) {
        case 'year':
          beginTime = getDayTime(new Date().getTime() - 24 * 365 * 60 * 60 * 1000)
          this.listQuery.beginTime = beginTime.Format('yyyy-MM-dd')
          break
        case 'halfyear':
          beginTime = getDayTime(new Date().getTime() - 24 * 182 * 60 * 60 * 1000)
          this.listQuery.beginTime = beginTime.Format('yyyy-MM-dd')
          break
        case '3month':
          beginTime = getDayTime(new Date().getTime() - 24 * 90 * 60 * 60 * 1000)
          this.listQuery.beginTime = beginTime.Format('yyyy-MM-dd')
          break
        case 'month':
          beginTime = getDayTime(new Date().getTime() - 24 * 30 * 60 * 60 * 1000)
          this.listQuery.beginTime = beginTime.Format('yyyy-MM-dd')
          break
        case 'week':
          beginTime = getDayTime(new Date().getTime() - 24 * 7 * 60 * 60 * 1000)
          this.listQuery.beginTime = beginTime.Format('yyyy-MM-dd')
          break
      }
      const endTime = new Date()
      this.listQuery.endTime = endTime.Format('yyyy-MM-dd')
      this.fetchData()
    }
  }
}
</script>
<style lang="scss" scoped>
  .container{
    position:relative;
    .function{
      /*position:absolute;*/
      /*z-index:200;*/
      /*bottom: 10px;*/
      /*left: 0;*/
      width:100%;
      height: 28px;
      display: flex;
      text-align: center;
      justify-content: center;
      margin-bottom: 10px;
    }
  }
</style>