Newer
Older
smartwell_front / src / views / alarmStatics / alarmStatics.vue
<template>
  <el-row>
    <el-col :span="10">
      <el-card shadow="never">
        <div />
        <alarm-statics-by-type />
      </el-card>
    </el-col>
    <el-col :span="14">
      <alarm-history-by-type />
    </el-col>
    <el-col :span="14">
      <alarm-statics-by-dept />
    </el-col>
  </el-row>
</template>

<script>
import alarmStaticsByType from './components/alarmStaticsByType'
import alarmHistoryByType from './components/alarmHistoryByType'
import alarmStaticsByDept from './components/alarmStaticsByDept'
export default {
  name: 'DeviceStatics',
  components: {
    alarmStaticsByType,
    alarmHistoryByType,
    alarmStaticsByDept
  }
}
</script>