index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. .excel-wrapper{
  45. width: 18%;
  46. }
  47. .data-left-wrapper {
  48. display: flex;
  49. width: 22%;
  50. flex-direction: column;
  51. justify-content: space-between;
  52. margin-right: 20px;
  53. .tree-wrapper {
  54. width: 100%;
  55. margin-right: 0;
  56. }
  57. .tree-height {
  58. height: calc(50% - 10px);
  59. width: 100%;
  60. }
  61. }
  62. .data-excel-wrapper {
  63. display: flex;
  64. width: 22%;
  65. flex-direction: column;
  66. justify-content: space-between;
  67. margin-right: 20px;
  68. .excel-height {
  69. height: calc(50% - 10px);
  70. width: 100%;
  71. }
  72. .excel-wrapper {
  73. width: 100%;
  74. margin-right: 0;
  75. }
  76. }
  77. .data-chart-wrapper {
  78. width: calc(62% - 40px);
  79. height: 100%;
  80. display: flex;
  81. flex-wrap: wrap;
  82. justify-content: space-around;
  83. .data-chart-item {
  84. width: calc(50% - 10px);
  85. height: calc(50% - 10px);
  86. padding: 10px;
  87. position: relative;
  88. .zoom-icon {
  89. position: absolute;
  90. right: 10px;
  91. top: 10px;
  92. z-index: 2;
  93. cursor: pointer;
  94. }
  95. }
  96. .mb-10 {
  97. margin-bottom: 10px;
  98. }
  99. }
  100. .data-table-wrapper {
  101. width: calc(58% - 40px);
  102. height: 100%;
  103. display: flex;
  104. flex-direction: column;
  105. padding: 10px;
  106. position: relative;
  107. .submit-btn,
  108. .submit-btns {
  109. position: absolute;
  110. z-index: 2;
  111. top: 10px;
  112. right: 10px;
  113. }
  114. .data-table-chart {
  115. height: 100%;
  116. padding: 10px;
  117. }
  118. }
  119. }
  120. }
  121. }
  122. //发电能力分析search组件公共样式
  123. .operation-wrapper {
  124. background: #161f1e;
  125. padding: 20px;
  126. padding-bottom: 12px;
  127. }
  128. ::v-deep.operation-form .el-checkbox {
  129. .el-checkbox__input {
  130. display: block !important;
  131. }
  132. }
  133. .buttons {
  134. max-width: 120px;
  135. background-color: rgba(5, 187, 76, 0.2);
  136. border: 1px solid #3b6c53;
  137. color: #b3b3b3;
  138. font-size: 14px;
  139. &:hover {
  140. background-color: rgba(5, 187, 76, 0.5);
  141. color: #ffffff;
  142. }
  143. }
  144. </style>