index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <router-view />
  3. </template>
  4. <script>
  5. export default {
  6. name: "powerGenerating", //发电能力分析
  7. };
  8. </script>
  9. <style lang="less">
  10. //公共边框阴影
  11. .card-shadow {
  12. border-radius: 10px;
  13. box-shadow: 0 1px 3px 0 rgba(5, 187, 76, 1),
  14. 0 1px 2px -1px rgba(5, 187, 76, 1);
  15. }
  16. // 公共标题样式
  17. .wrapper {
  18. position: relative;
  19. .card-title {
  20. position: absolute;
  21. top: -10px;
  22. }
  23. }
  24. //发电能力分析模块公共样式
  25. .container-wrapper {
  26. height: 100%;
  27. width: calc(100% - 20px * 2);
  28. margin: 0 20px;
  29. padding: 10px 0;
  30. .power-data-wrapper {
  31. height: calc(100% - 58px - 20px - 20px);
  32. margin-top: 20px;
  33. width: 100%;
  34. background: #161f1e;
  35. padding: 20px;
  36. padding-bottom: 12px;
  37. .data-wrapper {
  38. height: 100%;
  39. display: flex;
  40. .tree-wrapper {
  41. width: 20%;
  42. margin-right: 20px;
  43. }
  44. .data-left-wrapper {
  45. display: flex;
  46. width: 22%;
  47. flex-direction: column;
  48. justify-content: space-between;
  49. margin-right: 20px;
  50. .tree-wrapper {
  51. width: 100%;
  52. margin-right: 0;
  53. }
  54. .tree-height {
  55. height: calc(50% - 10px);
  56. width: 100%;
  57. }
  58. }
  59. .data-excel-wrapper {
  60. display: flex;
  61. width: 22%;
  62. flex-direction: column;
  63. justify-content: space-between;
  64. margin-right: 20px;
  65. .excel-height {
  66. height: calc(50% - 10px);
  67. width: 100%;
  68. }
  69. .excel-wrapper {
  70. width: 100%;
  71. margin-right: 0;
  72. }
  73. }
  74. .data-chart-wrapper {
  75. width: calc(62% - 40px);
  76. height: 100%;
  77. display: flex;
  78. flex-wrap: wrap;
  79. justify-content: space-around;
  80. .data-chart-item {
  81. width: calc(50% - 10px);
  82. height: calc(50% - 10px);
  83. padding: 10px;
  84. position: relative;
  85. .zoom-icon{
  86. position:absolute;
  87. right: 10px;
  88. top: 10px;
  89. z-index: 2;
  90. cursor: pointer;
  91. }
  92. }
  93. .mb-10 {
  94. margin-bottom: 10px;
  95. }
  96. }
  97. .data-table-wrapper {
  98. width: calc(58% - 40px);
  99. height: 100%;
  100. display: flex;
  101. flex-direction: column;
  102. padding: 10px;
  103. position: relative;
  104. .submit-btn {
  105. position: absolute;
  106. z-index: 2;
  107. top: 10px;
  108. right: 10px;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. //发电能力分析search组件公共样式
  115. .operation-wrapper {
  116. background: #161f1e;
  117. padding: 20px;
  118. padding-bottom: 12px;
  119. }
  120. ::v-deep.operation-form .el-checkbox {
  121. .el-checkbox__input {
  122. display: block !important;
  123. }
  124. }
  125. </style>