Newer
Older
carbon-metering-front / src / views / count / table.vue
liyaguang on 23 Mar 2023 842 bytes [200~feat(*): 电力碳核算页面~
<script lang="ts" setup name="countPagetable">
import fixedCombustion from './components/fixedCombustion.vue'
import mobileCombustion from './components/mobileCombustion.vue'
import energyProcessing from './components/energyProcessing.vue'
import Purchaseofheat from './components/Purchaseofheat.vue'
import Purchaseofelectricity from './components/Purchaseofelectricity.vue'
import photovoltaic from './components/photovoltaic.vue'
</script>

<template>
  <div style="position: relative; left: 12%; width: 85%;">
    <!-- 固定燃烧 -->
    <fixed-combustion />
    <!-- 移动燃烧 -->
    <mobile-combustion />
    <!-- 能源加工转换 -->
    <energy-processing />
    <!-- 购入热力 -->
    <purchaseofheat />
    <!-- 购入电力 -->
    <purchaseofelectricity />
    <!-- 光伏 -->
    <photovoltaic />
  </div>
</template>