Newer
Older
smartwell_front / src / views / deviceStatics / deviceStatics.vue
StephanieGitHub on 21 Nov 2019 534 bytes MOD:设备数量统计页面
<template>
  <div class="app-container">
    <el-row>
      <el-col :span="12">
        <device-count-by-type/>
      </el-col>
      <el-col :span="12">
        <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() {
  }
}
</script>

<style scoped>

</style>