1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <router-view />
- </template>
- <script>
- export default {
- name: "powerGenerating", //发电能力分析
- };
- </script>
- <style lang="less">
- //公共边框阴影
- .card-shadow {
- border-radius: 10px;
- box-shadow: 0 1px 3px 0 rgba(5, 187, 76, 1),
- 0 1px 2px -1px rgba(5, 187, 76, 1);
- }
- // 公共标题样式
- .wrapper {
- position: relative;
- .card-title {
- position: absolute;
- top: -10px;
- }
- }
- //发电能力分析模块公共样式
- .container-wrapper {
- height: calc(100% - 10px * 2);
- width: calc(100% - 20px * 2);
- margin: 0 20px;
- padding: 10px 0;
- .power-data-wrapper {
- height: calc(100% - 58px - 20px);
- margin-top: 20px;
- width: 100%;
- background: #161f1e;
- padding: 20px;
- padding-bottom: 12px;
- .data-wrapper {
- height: 100%;
- display: flex;
- .tree-wrapper {
- width: 20%;
- margin-right: 20px;
- }
- .data-left-wrapper {
- display: flex;
- width: 22%;
- flex-direction: column;
- justify-content: space-between;
- margin-right: 20px;
- .tree-wrapper {
- width: 100%;
- margin-right: 0;
- }
- .tree-height {
- height: calc(50% - 10px);
- width: 100%;
- }
- }
- }
- }
- }
- //发电能力分析search组件公共样式
- .operation-wrapper {
- background: #161f1e;
- padding: 20px;
- padding-bottom: 12px;
-
- }
- ::v-deep.operation-form .el-checkbox {
- .el-checkbox__input {
- display: block !important;
- }
- }
- </style>
|