auto-sync: 2026-05-18 12:54:47

This commit is contained in:
cfdaily
2026-05-18 12:54:47 +08:00
parent b9e16c109d
commit 151db3f87d
+6
View File
@@ -193,6 +193,7 @@ export type TabKey =
export const TAB_DEFS: { key: TabKey; label: string; icon: string }[] = [
{ key: 'tasks', label: '任务看板', icon: '📜' },
{ key: 'mail', label: '飞鸽传书', icon: '✉️' },
{ key: 'court', label: '军议大厅', icon: '🏛️' },
{ key: 'monitor', label: '编排调度', icon: '🔌' },
{ key: 'agents', label: '将军总览', icon: '🤺' },
@@ -415,6 +416,11 @@ interface AppStore {
loadMorning: () => Promise<void>;
loadSubConfig: () => Promise<void>;
loadAll: () => Promise<void>;
// Mail
mails: any[];
mailUnread: number;
loadMails: () => Promise<void>;
}
let _toastId = 0;