Compare commits

...

2 Commits

Author SHA1 Message Date
yangsy
a0021b4c31 chore: env 2025-11-17 16:26:18 +08:00
yangsy
ac695c5b73 style(device-statistic-card) 2025-11-17 16:26:07 +08:00
2 changed files with 2 additions and 2 deletions

2
.env
View File

@@ -1,5 +1,5 @@
# 设备页定时请求时间间隔
VITE_REQUEST_INTERVAL = 30
VITE_REQUEST_INTERVAL = 120
# 网管的appKey
VITE_NDM_APP_KEY = ndm

View File

@@ -58,7 +58,7 @@ const onExportAll = () => emit('export-all');
<NCard bordered hoverable size="small" class="device-statistic-card" title="设备统计">
<template #header-extra>
<NSpace align="center">
<NButton size="small" type="primary" tertiary :disabled="buttonLoading" @click="onExportAll">导出全部</NButton>
<NButton size="small" type="default" tertiary :disabled="buttonLoading" @click="onExportAll">导出全部</NButton>
<NButton size="small" type="success" tertiary :disabled="buttonLoading" @click="onExportOnline">导出在线</NButton>
<NButton size="small" type="error" tertiary :disabled="buttonLoading" @click="onExportOffline">导出离线</NButton>
</NSpace>