refactor(前端): 重构前端代码结构并优化功能

重构路由配置和API调用逻辑,统一分页处理方式
优化分类和标签模块的交互,提取蒙版组件到主布局
调整样式和布局,增强响应式设计
更新接口字段名以保持前后端一致性
添加网站运行时间显示功能
This commit is contained in:
qingfeng1121
2025-12-18 15:20:14 +08:00
parent 0dc24cfa85
commit f4263af343
13 changed files with 722 additions and 430 deletions

View File

@@ -70,7 +70,7 @@ export interface MessageDto {
* 分类类型接口
*/
export interface Category {
typeid: number
Categoryid: number
typename: string
description?: string
createdAt?: string
@@ -162,7 +162,7 @@ export interface ApiResponse<T = any> {
* 分页参数接口
*/
export interface PaginationParams {
page?: number
size?: number
pagenum?: number
pagesize?: number
status?: number
}