Browse Source

refactor🎨:修改机器存储名称

wenjianzhang 4 years ago
parent
commit
5d3dbb589f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/sys-tools/monitor.vue

+ 2 - 2
src/views/sys-tools/monitor.vue

@@ -45,8 +45,8 @@
                   <el-progress :color="$store.state.settings.theme" type="circle" :percentage=" Number(( info.disk.free / info.disk.total * 100).toFixed(2))" />
                 </div>
                 <div class="monitor-footer">
-                  <Cell label="总内存" :value="info.disk.total+'G'" border />
-                  <Cell label="已用内存" :value="info.disk.free+'G'" />
+                  <Cell label="总空间" :value="info.disk.total+'G'" border />
+                  <Cell label="可用空间" :value="info.disk.free+'G'" />
                 </div>
               </div>
             </el-card>