fix: 解决公告点击跳转路径不对的问题

This commit is contained in:
R524809
2026-06-15 15:43:34 +08:00
parent 11469f7dca
commit 0bcf846857
2 changed files with 4 additions and 6 deletions
+4 -3
View File
@@ -1,7 +1,7 @@
import { CATEGORY_LIST_WITH_ALL } from '../../core/data/categories';
import { AGE_BANDS } from '../../core/data/difficulty';
import { CategoryId } from '../../core/models/category';
import { APP_VERSION, APP_VERSION_NOTE } from '../../config/config';
import { APP_VERSION } from '../../config/config';
export type HomeDisplayItem = {
id: string;
@@ -72,11 +72,12 @@ export const HOME_NOTICES: HomeNotice[] = [
{
id: 'welcome',
text: '欢迎来到 涂鸦丫,趣味练习纸任你选',
path: '/chinesePages/wordTestSheet/wordTestSheet',
},
{
id: `update-${APP_VERSION}`,
text: `${APP_VERSION} 上线:${APP_VERSION_NOTE}`,
path: '/chinesePages/penControlSheet/penControlSheet',
text: `${APP_VERSION} 上线:新增幼儿识字测字表`,
path: '/chinesePages/wordTestSheet/wordTestSheet',
},
];