浏览代码

修复全国页面实时负荷弹窗样式

baiyanting 1 年之前
父节点
当前提交
242c4daf8d
共有 2 个文件被更改,包括 1 次插入103 次删除
  1. 1 1
      src/views/Home/components/map.vue
  2. 0 102
      src/views/Home/dialog/table.vue

+ 1 - 1
src/views/Home/components/map.vue

@@ -785,7 +785,7 @@
             :unit="'MW'"
             :CurveTitle="'实时负荷'"
             width="100%"
-            height="45vh"
+            height="38vh"
             chartId="windChar"
           />
         </div>

+ 0 - 102
src/views/Home/dialog/table.vue

@@ -1,102 +0,0 @@
-<template>
-  <div class="health-day-info">
-    <div class="body">
-      <div class="left">
-        <table class="table-form">
-          <tr>
-            <td class="white" v-if="tableData.result && tableData.result.length"></td>
-            <td class="white" v-if="tableData.retValue && tableData.retValue.length">风场</td>
-            <td
-              class="white"
-              v-for="(item, index) in tableData.datels"
-              :key="index"
-            >
-              {{ item }}
-            </td>
-          </tr>
-          <tr v-for="(item, index) in tableData.result || tableData.retValue" :key="index">
-            <td class="white" v-if="tableData.retValue && item.name">{{ item.name }}</td>
-            <td class="white" v-if="item.value1">{{ item.value1 }}</td>
-            <td class="white" v-if="item.value2">{{ item.value2 }}</td>
-            <td class="white" v-if="item.value3">{{ item.value3 }}</td>
-            <td class="white" v-if="item.value4">{{ item.value4 }}</td>
-            <td class="white" v-if="item.value5">{{ item.value5 }}</td>
-            <td class="white" v-if="item.value6">{{ item.value6 }}</td>
-            <td class="white" v-if="item.value7">{{ item.value7 }}</td>
-            <td class="white" v-if="item.value8">{{ item.value8 }}</td>
-          </tr>
-        </table>
-      </div>
-    </div>
-  </div>
-</template>
-
-<script>
-export default {
-  data() {
-    return {
-      value: "",
-      tableData: {},
-    };
-  },
-
-  props: {
-    data: {
-      type: Object,
-      default: () => {},
-    },
-  },
-
-  mounted() {
-    this.tableData = this.data;
-  },
-
-  watch: {
-    data(res) {
-      this.tableData = res;
-    },
-  },
-};
-</script>
-
-<style lang="less">
-.health-day-info {
-  .header {
-    display: flex;
-    width: 100%;
-    height: 40px;
-    line-height: 40px;
-    background: fade(@gray, 60);
-    color: @white;
-
-    .herder-info {
-      flex: 1 0 25%;
-      text-align: center;
-      font-size: @fontsize-s;
-
-      &:last-child {
-        flex: 1 0 50%;
-      }
-    }
-  }
-
-  .body {
-    display: flex;
-    .left {
-      flex: 0 0 100%;
-
-      display: flex;
-      flex-direction: column;
-
-      .chart-body {
-        flex-grow: 1;
-        display: flex;
-        align-items: center;
-      }
-    }
-    .right {
-      flex: 0 0 50%;
-    }
-  }
-}
-</style>