123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div id="bottomLeft">
- <div class="bg-color-black">
- <div class="d-flex pt-2 pl-2">
- <span style="color:#5cd9e8">
- <icon name="chart-bar"></icon>
- </span>
- <div class="d-flex">
- <span class="fs-xl text mx-2">蒸汽消耗</span>
- </div>
- </div>
- <div>
- <span style="padding-left:15px;color:#74777F;fontWeight:bold;">Unit:(t/h)</span>
- <bottomLeftChart :monthData="monthData" v-bind="$attrs"/>
- </div>
- </div>
- </div>
- </template>
- <script>
- import bottomLeftChart from "./echart/bottom/bottomLeftChart";
- export default {
- props:['monthData'],
- data() {
- return {};
- },
- components: {
- bottomLeftChart
- },
- mounted() {},
- methods: {}
- };
- </script>
- <style lang="scss">
- #bottomLeft {
- padding: 0.3rem 0.2rem;
- height: 6.5rem;
- min-width: 3.75rem;
- border-radius: 0.0625rem;
- .bg-color-black {
- height: 6.0625rem;
- border-radius: 0.125rem;
- }
- .text {
- color: #ffffff;
- }
- .chart-box {
- margin-top: 0.2rem;
- width: 2.125rem;
- height: 2.125rem;
- .active-ring-name {
- padding-top: 0.125rem;
- }
- }
- }
- </style>
|