diff --git a/apps/web-antd/src/views/monitor/cache/index.vue b/apps/web-antd/src/views/monitor/cache/index.vue index f8ec8852..84a4653d 100644 --- a/apps/web-antd/src/views/monitor/cache/index.vue +++ b/apps/web-antd/src/views/monitor/cache/index.vue @@ -6,14 +6,12 @@ import { onMounted, reactive, ref } from 'vue'; import { Page } from '@vben/common-ui'; import { CommandLineIcon, MemoryIcon, RedisIcon } from '@vben/icons'; -import { Button, Card, Col, Row } from 'antdv-next'; +import { Button, Card } from 'antdv-next'; import { redisCacheInfo } from '#/api/monitor/cache'; import { CommandChart, MemoryChart, RedisDescription } from './components'; -const baseSpan = { lg: 12, md: 24, sm: 24, xl: 12, xs: 24 }; - const chartData = reactive<{ command: { name: string; value: string }[]; memory: string; @@ -55,53 +53,46 @@ async function loadInfo() {