refactor:【antd】【iot】更新首页必要的 ReqVO、RespVO

This commit is contained in:
haohao
2025-12-15 21:51:09 +08:00
parent 47dfccd9eb
commit 5cb412a4da
6 changed files with 32 additions and 98 deletions

View File

@@ -1,7 +1,10 @@
import type { IotStatisticsApi } from '#/api/iot/statistics';
/** 统计数据 */
export type StatsData = IotStatisticsApi.StatisticsSummaryRespVO;
/** 默认统计数据 */
export const defaultStatsData: IotStatisticsApi.StatisticsSummary = {
export const defaultStatsData: StatsData = {
productCategoryCount: 0,
productCount: 0,
deviceCount: 0,

View File

@@ -1,5 +1,4 @@
<script setup lang="ts">
// TODO @芋艿
import type { StatsData } from './data';
import { onMounted, ref } from 'vue';
@@ -22,38 +21,7 @@ const statsData = ref<StatsData>(defaultStatsData);
/** 加载统计数据 */
async function loadStatisticsData(): Promise<StatsData> {
try {
return await getStatisticsSummary();
} catch (error) {
// TODO @haohao后续记得删除下哈。catch 部分可以删除
// 开发环境:记录错误信息,便于调试
console.error('获取统计数据出错:', error);
// 开发环境:提示使用 Mock 数据,提醒检查后端接口
console.warn('使用 Mock 数据,请检查后端接口是否已实现');
// TODO @haohao后续记得删除下哈。
// 开发调试:返回 Mock 数据,确保前端功能正常开发
// 生产环境:建议移除 Mock 数据,直接抛出错误或返回空数据
return {
productCategoryCount: 12,
productCount: 45,
deviceCount: 328,
deviceMessageCount: 15_678,
productCategoryTodayCount: 2,
productTodayCount: 5,
deviceTodayCount: 23,
deviceMessageTodayCount: 1234,
deviceOnlineCount: 256,
deviceOfflineCount: 48,
deviceInactiveCount: 24,
productCategoryDeviceCounts: {
智能家居: 120,
工业设备: 98,
环境监测: 65,
智能穿戴: 45,
},
};
}
return await getStatisticsSummary();
}
/** 加载数据 */
@@ -61,9 +29,6 @@ async function loadData() {
loading.value = true;
try {
statsData.value = await loadStatisticsData();
} catch (error) {
// TODO @haohao后续记得删除下哈。catch 部分可以删除
console.error('获取统计数据出错:', error);
} finally {
loading.value = false;
}
@@ -139,9 +104,3 @@ onMounted(() => {
</Row>
</Page>
</template>
<style scoped>
:deep(.vben-page-content) {
padding: 16px;
}
</style>

View File

@@ -13,7 +13,7 @@ defineOptions({ name: 'DeviceCountCard' });
const props = defineProps<{
loading?: boolean;
statsData: IotStatisticsApi.StatisticsSummary;
statsData: IotStatisticsApi.StatisticsSummaryRespVO;
}>();
const deviceCountChartRef = ref();
@@ -75,9 +75,3 @@ onMounted(() => {
</div>
</Card>
</template>
<style scoped>
:deep(.ant-card-body) {
padding: 20px;
}
</style>

View File

@@ -13,7 +13,7 @@ defineOptions({ name: 'DeviceStateCountCard' });
const props = defineProps<{
loading?: boolean;
statsData: IotStatisticsApi.StatisticsSummary;
statsData: IotStatisticsApi.StatisticsSummaryRespVO;
}>();
const deviceOnlineChartRef = ref();
@@ -111,9 +111,3 @@ onMounted(() => {
</Row>
</Card>
</template>
<style scoped>
:deep(.ant-card-body) {
padding: 20px;
}
</style>

View File

@@ -23,7 +23,7 @@ const messageChartRef = ref();
const { renderEcharts } = useEcharts(messageChartRef);
const loading = ref(false);
const messageData = ref<IotStatisticsApi.DeviceMessageSummaryByDate[]>([]);
const messageData = ref<IotStatisticsApi.DeviceMessageSummaryByDateRespVO[]>([]);
/** 时间范围(仅日期,不包含时分秒) */
const dateRange = ref<[string, string]>([
@@ -38,7 +38,7 @@ function formatDateRangeWithTime(dates: [string, string]): [string, string] {
}
/** 查询参数 */
const queryParams = reactive<IotStatisticsApi.DeviceMessageReq>({
const queryParams = reactive<IotStatisticsApi.DeviceMessageReqVO>({
interval: 1, // 默认按天
times: formatDateRangeWithTime(dateRange.value),
});
@@ -89,12 +89,6 @@ async function fetchMessageData() {
loading.value = true;
try {
messageData.value = await getDeviceMessageSummaryByDate(queryParams);
} catch (error) {
// TODO @haohaocatch 可以删除哈;
// 开发环境:记录错误信息,便于调试
console.error('获取消息统计数据失败:', error);
// 错误时清空数据,避免显示错误的数据
messageData.value = [];
} finally {
loading.value = false;
await renderChartWhenReady();