diff --git a/src/pages/workbench/fwgl/fwglList.vue b/src/pages/workbench/fwgl/fwglList.vue index a87b72b9270c358bf579afde1ed8493a9bd45344..b2db3e286c7980f2e517a2d560483f957f6117fe 100644 --- a/src/pages/workbench/fwgl/fwglList.vue +++ b/src/pages/workbench/fwgl/fwglList.vue @@ -1313,25 +1313,25 @@ export default { name: "CPU使用量", value: cloud.cpu_use, total: cloud.cpu_total, - unit: "(核)", + unit: "核", }, { name: "内存使用量", value: cloud.memory_use, total: cloud.memory_total, - unit: "(GB)", + unit: "GB", }, /* { name: "数据盘使用量", value: cloud.disk_use, total: cloud.disk_total, - unit: "(GB)", + unit: "GB", }, */ { name: "容器组使用量", value: cloud.containers_use, total: cloud.containers_total, - unit: "(个)", + unit: "个", }, ], }; @@ -1909,12 +1909,6 @@ export default {