2025-06-08 20:16:51 +08:00
|
|
|
import type { Component } from 'vue';
|
|
|
|
|
|
|
|
|
|
interface AnalysisOverviewItem {
|
|
|
|
|
icon: Component | string;
|
|
|
|
|
title: string;
|
|
|
|
|
value: number;
|
2025-12-27 13:51:08 +08:00
|
|
|
todaytitle: string;
|
|
|
|
|
todayValue: number;
|
|
|
|
|
Subtitle: string;
|
|
|
|
|
SubValue: number;
|
|
|
|
|
todaySubtitle: string;
|
|
|
|
|
todaySubValue: number;
|
2025-12-29 16:13:31 +08:00
|
|
|
extraTitle?: string;
|
|
|
|
|
extraValue?: number;
|
|
|
|
|
extra2Title?: string;
|
|
|
|
|
extra2Value?: number;
|
2025-06-08 20:16:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface WorkbenchProjectItem {
|
|
|
|
|
color?: string;
|
|
|
|
|
content: string;
|
|
|
|
|
date: string;
|
|
|
|
|
group: string;
|
|
|
|
|
icon: Component | string;
|
|
|
|
|
title: string;
|
|
|
|
|
url?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface WorkbenchTrendItem {
|
|
|
|
|
avatar: string;
|
|
|
|
|
content: string;
|
|
|
|
|
date: string;
|
|
|
|
|
title: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface WorkbenchTodoItem {
|
|
|
|
|
completed: boolean;
|
|
|
|
|
content: string;
|
|
|
|
|
date: string;
|
|
|
|
|
title: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface WorkbenchQuickNavItem {
|
|
|
|
|
color?: string;
|
|
|
|
|
icon: Component | string;
|
|
|
|
|
title: string;
|
|
|
|
|
url?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type {
|
|
|
|
|
AnalysisOverviewItem,
|
|
|
|
|
WorkbenchProjectItem,
|
|
|
|
|
WorkbenchQuickNavItem,
|
|
|
|
|
WorkbenchTodoItem,
|
|
|
|
|
WorkbenchTrendItem,
|
|
|
|
|
};
|