Browse Source

物理资源监控表单bug

Rgx 1 year ago
parent
commit
c1c6f554ec
1 changed files with 21 additions and 21 deletions
  1. 21 21
      src/views/modules/monitor/components/physical.vue

+ 21 - 21
src/views/modules/monitor/components/physical.vue

@@ -23,7 +23,7 @@
         </el-card>
       </el-col>
 
-      <el-col :span="12">
+      <el-col :span="13">
         <el-card shadow="hover" body-style="padding:1px">
           <memory-util :charData="memoryUtil" :id="'chart2'"></memory-util>
         </el-card>
@@ -40,13 +40,13 @@
     </el-row>
 
     <el-row type="flex" :gutter="90">
-      <el-col :span="12" :offset="1">
+      <el-col :span="11" :offset="1">
         <el-card shadow="hover" body-style="padding:1px">
           <cpu-load-view :charData="cpuLoad" :id="'chart3'"></cpu-load-view>
         </el-card>
       </el-col>
 
-      <el-col :span="12">
+      <el-col :span="13">
         <el-card shadow="hover" body-style="padding:1px">
          <disk-usge-view :charData="diskUsge" :id="'chart4'"></disk-usge-view>
         </el-card>
@@ -63,13 +63,13 @@
     </el-row>
 
     <el-row type="flex" :gutter="100">
-      <el-col :span="12" :offset="1">
+      <el-col :span="11" :offset="1">
         <el-card shadow="hover" body-style="padding:1px">
          <inode-util-view :charData="inodeUtil" :id="'chart5'" ></inode-util-view>
         </el-card>
       </el-col>
 
-      <el-col :span="12">
+      <el-col :span="13">
         <el-card shadow="hover" body-style="padding:1px">
              <disk-read-write-throughout-view :charData="diskReadWriteThroughout" :id="'chart6'" ></disk-read-write-throughout-view>
         </el-card>
@@ -84,14 +84,14 @@
       </el-col>
     </el-row>
 
-    <el-row type="flex" :gutter="130">
-      <el-col :span="12" :offset="1">
+    <el-row type="flex" :gutter="100">
+      <el-col :span="11" :offset="1">
         <el-card shadow="hover" body-style="padding:1px">
          <iop-read-write-view :charData="iopReadWrite" :id="'chart7'" ></iop-read-write-view>
         </el-card>
       </el-col>
 
-      <el-col :span="12">
+      <el-col :span="13">
         <el-card shadow="hover" body-style="padding:5px">
           <net-view :charData="netState" :id="'chart8'"> </net-view>
         </el-card>
@@ -104,8 +104,8 @@
       </el-col>
     </el-row>
 
-    <el-row type="flex" :gutter="130">
-      <el-col :span="12" :offset="1">
+    <el-row type="flex" :gutter="100">
+      <el-col :span="11" :offset="1">
         <el-card shadow="hover" body-style="padding:5px">
            <pod-view :charData="podState" :id="'chart9'"> </pod-view>
         </el-card>
@@ -141,15 +141,15 @@ export default {
   ///kapis/monitoring.kubesphere.io/v1alpha3/cluster
   data() {
     return {
-    
+
     };
   },
   computed: {
- 
+
     //CPU使用率
     cpuUtil() {
       var cpuUtil = [];
-  
+
       const physical = this.$store.state.monitor.physicalMonitor;
 
          cpuUtil.splice(0, cpuUtil.length); //清零
@@ -163,7 +163,7 @@ export default {
       });
 
        }
-  
+
       return cpuUtil;
     },
 
@@ -201,7 +201,7 @@ export default {
       });
 
        }
-     
+
       return diskUsge;
     },
 
@@ -302,7 +302,7 @@ export default {
       //     type: "容器运行异常数目",
       //   });
       // });
-    
+
 
 
       //容器运行数目
@@ -345,7 +345,7 @@ var diskReadWriteThroughout = [];
           type: "网络数接受",
         });
       });
-    
+
 
 
       //网络发出
@@ -403,7 +403,7 @@ var diskReadWriteThroughout = [];
     },
   },
   mounted() {
-   
+
   },
 
   beforeMount() {},
@@ -435,7 +435,7 @@ var diskReadWriteThroughout = [];
       return newDate.toLocaleString();
     },
 
- 
+
 
     //获取数据
     getPhysicalMonitor() {
@@ -470,7 +470,7 @@ var diskReadWriteThroughout = [];
 
           value.forEach((test) => {
             physical[key] = value;
-           
+
           });
         });
       //  console.log('33333333333');
@@ -484,4 +484,4 @@ var diskReadWriteThroughout = [];
 };
 </script>
 <style lang="scss" scoped>
-</style>
+</style>