Newer
Older
qd_cnooc_front / src / views / deviceStatics / deviceStatics.vue
[wangxitong] on 17 Mar 2022 601 bytes 添加三级分区
<template>
  <div class="app-container" style="background-color: white">
    <el-row>
      <!--<el-col :span="12">-->
        <!--<device-count-by-type/>-->
      <!--</el-col>-->
      <el-col :span="24">
        <device-count-by-dept/>
      </el-col>
    </el-row>
  </div>
</template>

<script>
import DeviceCountByType from './components/deviceCountByType'
import DeviceCountByDept from './components/deviceCountByDept'
export default {
  name: 'DeviceStatics',
  components: {
    DeviceCountByDept,
    DeviceCountByType
  },
  data() {
    return {}
  }
}
</script>

<style scoped>

</style>