<!-- * @Description: 规划用地 * @Author: 王晓颖 * @Date: 2020-12-01 15:29:42 --> <template> <chart-layout title="企业分析" @click="getData"> <div class="block-container"> <div class="block" style="width:33%;height: 80%"> <debt/> </div> <div class="block" style="width:33%;height: 80%"> <profit/> </div> <div class="block" style="width:33%;height: 80%"> <service/> </div> </div> <!--<div class="block-container">--> <!--<!–<div class="block" style="width:20%">–>--> <!--<!–</div>–>--> <!--<div class="block" style="flex:1;padding-left:0.1rem;padding-right: 0.1rem;width: 33%">--> <!--<indicator-count/>--> <!--</div>--> <!--</div>--> <corner1 slot="corner"/> </chart-layout> </template> <script> import Debt from './components/debt' import Service from './components/service' import Profit from './components/profit' export default { name: 'Enterprise', components: {Profit, Service, Debt}, 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>