Newer
Older
smartwell_front / src / views / dataView / dataView.vue
Stephanie on 23 Jul 2022 1 KB fix<views>: 调整数据概览页面
<!--数据概览页面-->
<template>
  <div class="dashboard-container">
    <el-row>
      <!--数据总体情况 -->
      <el-col :span="24">
        <panel-group />
      </el-col>
    </el-row>
    <el-row style="margin-top:10px" gutter="10">
      <el-col :span="12">
        <alarm-view />
      </el-col>
      <el-col :span="12">
        <alarm-status />
      </el-col>
    </el-row>
    <el-col :span="24">
      <!-- 井数量分析 -->
      <el-col :span="12">
        <el-card>
          <well-count-view />
        </el-card>
      </el-col>
      <!-- 设备数量分析 -->
      <el-col :span="12">
        <el-card>
          <device-count-view />
        </el-card>
      </el-col>
    </el-col>
    </el-row>
  </div>
</template>

<script>
import panelGroup from './components/panelGroup'
import alarmStatus from './components/alarmStatus'
import wellCountView from './components/wellCountView'
import deviceCountView from './components/deviceCountView'
import alarmView from './components/alarmView'
import PanelCard from '@/components/BigData/Card/panelCard'
export default {
  name: 'DataView',
  components: { PanelCard, panelGroup, alarmStatus, wellCountView, deviceCountView, alarmView }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
.dashboard {
  &-container {
    margin-bottom: 30px;
  }
  &-text {
    font-size: 30px;
    line-height: 46px;
  }
}
</style>