fix(admin): add performer and remark fields to programs type

This commit is contained in:
empty
2026-02-03 23:54:37 +08:00
parent 7fea6b8578
commit 92d560445e

View File

@@ -34,7 +34,7 @@ export const useAdminStore = defineStore('admin', () => {
const votingOpen = ref(false);
const votingPaused = ref(false);
const totalVotes = ref(0);
const programs = ref<Array<{ id: string; name: string; teamName: string; order: number; status: string; votes: number; stamps: any[] }>>([]);
const programs = ref<Array<{ id: string; name: string; teamName: string; performer?: string; remark?: string; order: number; status: string; votes: number; stamps: any[] }>>([]);
const allowLateCatch = ref(true);
const currentProgramId = ref<string | null>(null);
const awards = ref<any[]>([]);