完善概览页,实现公告查询展示,引入 recharts 展示取用数据

This commit is contained in:
2025-05-07 16:48:51 +08:00
parent 2be7406d04
commit fbc6478496
14 changed files with 850 additions and 173 deletions

View File

@@ -123,3 +123,15 @@ export type Channel = {
created_at: Date
updated_at: Date
}
export type Announcement = {
id: number
title: string
content: string
type: number
status: number
pin: boolean
sort: number
created_at: Date
updated_at: Date
}