1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <div id="bottomRight">
- <div class="bg-color-black">
- <div class="d-flex pt-2 pl-2">
- <span style="color:#5cd9e8">
- <icon name="chart-area"></icon>
- </span>
- <div class="d-flex">
- <span class="fs-xl text mx-2">天然气消耗</span>
- <div class="decoration2">
- <dv-decoration-2 :reverse="true" style="width:5px;height:480px;" />
- </div>
- </div>
- </div>
- <div>
- <bottomRightChart />
- </div>
- </div>
- </div>
- </template>
- <script>
- import bottomRightChart from "./echart/bottom/bottomRightChart";
- export default {
- data() {
- return {};
- },
- components: {
- bottomRightChart
- },
- mounted() {},
- methods: {}
- };
- </script>
- <style lang="scss">
- #bottomRight {
- padding: 0.2rem 0.2rem 0;
- height: 6.5rem;
- min-width: 3.75rem;
- border-radius: 0.0625rem;
- .bg-color-black {
- height: 6.1875rem;
- border-radius: 0.125rem;
- }
- .text {
- color: #c3cbde;
- } //下滑线动态
- .decoration2 {
- position: absolute;
- right: 0.125rem;
- }
- .chart-box {
- margin-top: 0.2rem;
- width: 2.125rem;
- height: 2.125rem;
- .active-ring-name {
- padding-top: 0.125rem;
- }
- }
- }
- </style>
|