index.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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: calc(100% - 10px * 2);
  27. width: calc(100% - 20px * 2);
  28. margin: 0 20px;
  29. padding: 10px 0;
  30. .power-data-wrapper {
  31. height: calc(100% - 58px - 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. }
  60. }
  61. }
  62. //发电能力分析search组件公共样式
  63. .operation-wrapper {
  64. background: #161f1e;
  65. padding: 20px;
  66. padding-bottom: 12px;
  67. }
  68. ::v-deep.operation-form .el-checkbox {
  69. .el-checkbox__input {
  70. display: block !important;
  71. }
  72. }
  73. </style>