feat: 新增平台更新记录页面

- 添加 changelog 类型定义和导出
- 新增更新记录页面组件,支持从 JSON 文件加载并展示版本变更信息
- 在路由中添加更新记录页面路径
- 在设置抽屉中为版本信息添加点击跳转功能,可查看完整更新记录
- 添加包含历史版本变更的 changelogs.json 数据文件
This commit is contained in:
yangsy
2026-03-02 14:09:29 +08:00
parent fd851bb8d6
commit d53e107ebc
6 changed files with 96 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
export interface ChangeLogDescription {
content: string;
}
export interface Changelog {
version: string;
date: string;
changes: {
breaks?: ChangeLogDescription[];
fixes?: ChangeLogDescription[];
feats?: ChangeLogDescription[];
};
}