Newer
Older
CloudBrainNew / src / views / cityConstruction / components / plan / land.vue
wangxitong on 29 Apr 2021 1 KB 0429 submit
<!--
 * @Description: 规划用地
 * @Author: 王晓颖
 * @Date: 2020-12-01 15:29:42
 -->
<template>
  <chart-layout title="规划用地" @click="getData">
    <div class="block-container">
      <!--<div class="block" style="width:20%">-->
      <!--<land-use/>-->
      <!--</div>-->
      <div class="block" style="flex:1;padding-left:0.1rem;padding-right: 0.1rem">
        <land-use/>
      </div>
    </div>
    <corner1 slot="corner"/>
  </chart-layout>
</template>

<script>
import LandUse from './components/landUse'
export default {
  name: 'Land',
  components: {LandUse},
  methods: {
    getData () {
      // this.$refs.ecardEarth.getData()
      // this.$refs.payCount.getData()
      // this.$refs.annoucementPie.getData()
      // this.$refs.bookingBar.getData()
    }
  }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  .block-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 0.04rem;
    /*padding:0.1rem;*/
    .block{
      box-sizing: border-box;
    }
  }
</style>