| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <div id="app-container-Right">
- <div class="up">
- <annual-output />
- </div>
- <div class="middle">
- <dv-border-box-13>
- <energy-consumption />
- </dv-border-box-13>
- </div>
- <div class="down">
- <dv-border-box-13>
- <product-proportion />
- </dv-border-box-13>
- </div>
- </div>
- </template>
- <script>
- import annualOutput from "./annualOutput";
- import energyConsumption from "./energyConsumption";
- import productProportion from "./productProportion";
- export default {
- components: {
- annualOutput,
- energyConsumption,
- productProportion
- },
- }
- </script>
- <style lang="scss">
- #app-container-Right {
- width: 500px;
- height: 750px;
- .up {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- }
- .middle {
- padding: 0.07rem 0.05rem;
- padding-bottom: 0;
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- .down {
- padding: 0.07rem 0.05rem;
- padding-bottom: 0;
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- }
- </style>
|