feat: 添加分类创建功能并优化多个视图组件

refactor(types): 将typename字段重命名为categoryname
style: 移除多余样式并调整页面布局
fix(login): 修复登录逻辑和状态管理
chore: 更新项目元数据和图标路径
This commit is contained in:
qingfeng1121
2026-01-08 11:01:09 +08:00
parent 3828a51aeb
commit 51607b945d
11 changed files with 47 additions and 57 deletions

View File

@@ -80,7 +80,7 @@ export interface MessageDto {
*/
export interface Category {
Categoryid: number
typename: string
categoryname: string
description?: string
createdAt?: string
updatedAt?: string
@@ -91,7 +91,7 @@ export interface Category {
* 分类DTO接口
*/
export interface CategoryDto {
typename: string
categoryname: string
description?: string
}