Newer
Older
CloudBrainNew / src / views / cityConstruction / components / plan / infrastructureLine.vue
wangxitong on 29 Apr 2021 883 bytes 0429 submit
<!--
 * @Description: 物联网设备建设情况
 * @Author: 王晓颖
 * @Date: 2020-11-16 10:12:47
 -->
<template>
  <chart-layout title="基础建设" @click="getData">
    <div class="block-container">
      <div class="block" style="width:60%">
        <base-detail/>
      </div>
      <div class="block" style="width:40%">
        <base-pie/>
      </div>
    </div>
    <corner1 slot="corner"/>
  </chart-layout>
</template>

<script>

import BaseDetail from './components/baseDetail'
import BasePie from './components/basePie'
export default {
  name: 'iotIntroduce',
  components: {BasePie, BaseDetail},
  methods: {
    getData () {
      // this.$refs.deviceOnline.getData()
    }
  }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  .block-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
</style>