diff --git a/apps/web-antd/src/api/ops/order-center/index.ts b/apps/web-antd/src/api/ops/order-center/index.ts index 63f0d1913..80343d848 100644 --- a/apps/web-antd/src/api/ops/order-center/index.ts +++ b/apps/web-antd/src/api/ops/order-center/index.ts @@ -214,7 +214,7 @@ export interface DashboardStatsResp { // 工牌近7天队列数量统计 badgeQueueStats?: { dates: string[]; - queueCounts: number[]; + queueData: number[]; }; } diff --git a/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue b/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue index e2ffda75f..ae693935c 100644 --- a/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue +++ b/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue @@ -90,7 +90,7 @@ interface DashboardStats { // 工牌近7天队列数量统计 badgeQueueStats?: { dates: string[]; - queueCounts: number[]; + queueData: number[]; }; } @@ -713,7 +713,7 @@ function getBadgeQueueChartOptions(): ECOption { name: '队列数量', type: 'bar', barWidth: '50%', - data: queue.queueCounts, + data: queue.queueData, itemStyle: { color: { type: 'linear',