|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
<div class="flex-row" style="gap: 16px; align-items: stretch;margin-bottom: 16px">
|
|
|
- <el-card shadow="nover" class="flex1">
|
|
|
+ <el-card shadow="never" class="flex1">
|
|
|
<div class="flex-row">
|
|
|
<el-descriptions :column="1" border class="flex1">
|
|
|
<el-descriptions-item label="CPU数">{{ sysInfo.cpuNum }}</el-descriptions-item>
|
|
@@ -15,7 +15,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
- <el-card shadow="nover" class="flex1">
|
|
|
+ <el-card shadow="never" class="flex1">
|
|
|
<div class="flex-row">
|
|
|
<el-descriptions :column="1" border class="flex1">
|
|
|
<el-descriptions-item label="内存总数">{{ memorySizeFormat(sysInfo.memTotal) }}</el-descriptions-item>
|
|
@@ -29,7 +29,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
- <el-card shadow="nover" class="flex1">
|
|
|
+ <el-card shadow="never" class="flex1">
|
|
|
<div class="flex-row">
|
|
|
<el-descriptions :column="1" border class="flex1">
|
|
|
<el-descriptions-item label="磁盘容量">{{ memorySizeFormat(sysInfo.diskTotal) }}</el-descriptions-item>
|
|
@@ -43,20 +43,20 @@
|
|
|
</el-card>
|
|
|
</div>
|
|
|
<div class="flex-row" style="gap: 16px; align-items: stretch;margin-bottom: 16px">
|
|
|
- <el-card shadow="nover" class="flex1">
|
|
|
+ <el-card shadow="never" class="flex1">
|
|
|
<template #header>CPU运行情况</template>
|
|
|
<VueUiXy :dataset="dataset4" :config="config4" />
|
|
|
</el-card>
|
|
|
- <el-card shadow="nover" class="flex1">
|
|
|
+ <el-card shadow="never" class="flex1">
|
|
|
<template #header>内存运行情况</template>
|
|
|
<VueUiXy :dataset="dataset5" :config="config5" />
|
|
|
</el-card>
|
|
|
- <el-card shadow="nover" class="flex1">
|
|
|
+ <el-card shadow="never" class="flex1">
|
|
|
<template #header>磁盘使用情况</template>
|
|
|
<VueUiXy :dataset="dataset6" :config="config6" />
|
|
|
</el-card>
|
|
|
</div>
|
|
|
- <el-card shadow="nover">
|
|
|
+ <el-card shadow="never">
|
|
|
<template #header>运行环境信息</template>
|
|
|
<el-descriptions :column="3" border class="flex1">
|
|
|
<el-descriptions-item label="操作系统">{{ hostData.os }}</el-descriptions-item>
|