bottomRight.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <div id="bottomRight">
  3. <div class="bg-color-black">
  4. <div class="d-flex pt-2 pl-2">
  5. <span style="color:#5cd9e8">
  6. <icon name="chart-area"></icon>
  7. </span>
  8. <div class="d-flex">
  9. <span class="fs-xl text mx-2">天然气消耗</span>
  10. <div class="decoration2">
  11. <dv-decoration-2 :reverse="true" style="width:5px;height:480px;" />
  12. </div>
  13. </div>
  14. </div>
  15. <div>
  16. <bottomRightChart />
  17. </div>
  18. </div>
  19. </div>
  20. </template>
  21. <script>
  22. import bottomRightChart from "./echart/bottom/bottomRightChart";
  23. export default {
  24. data() {
  25. return {};
  26. },
  27. components: {
  28. bottomRightChart
  29. },
  30. mounted() {},
  31. methods: {}
  32. };
  33. </script>
  34. <style lang="scss">
  35. #bottomRight {
  36. padding: 0.2rem 0.2rem 0;
  37. height: 6.5rem;
  38. min-width: 3.75rem;
  39. border-radius: 0.0625rem;
  40. .bg-color-black {
  41. height: 6.1875rem;
  42. border-radius: 0.125rem;
  43. }
  44. .text {
  45. color: #c3cbde;
  46. } //下滑线动态
  47. .decoration2 {
  48. position: absolute;
  49. right: 0.125rem;
  50. }
  51. .chart-box {
  52. margin-top: 0.2rem;
  53. width: 2.125rem;
  54. height: 2.125rem;
  55. .active-ring-name {
  56. padding-top: 0.125rem;
  57. }
  58. }
  59. }
  60. </style>