Files
doodle-mini/miniprogram/supportPages/unreleasedDebug/unreleasedDebug.config.ts
T
2026-08-25 15:40:38 +08:00

29 lines
759 B
TypeScript

export interface UnreleasedPageEntry {
id: string;
title: string;
subtitle: string;
path: string;
}
export const UNRELEASED_PAGE_ENTRIES: UnreleasedPageEntry[] = [
// 在这里手动添加未上线页面
{
id: 'papers',
title: '作业纸页面',
subtitle: '作业纸页面',
path: '/papersPages/paperSheet/paperSheet',
},
{
id: 'clock-reading',
title: '认识时钟',
subtitle: '看钟读时间,填写数字时刻',
path: '/mathPages/clockReading/clockReading',
},
{
id: 'clock-connect',
title: '时钟连线',
subtitle: '看钟表连对应时间,认识时刻',
path: '/mathPages/clockConnect/clockConnect',
},
];