添加文章管理和文章分组页面

This commit is contained in:
Eamon
2026-06-09 16:37:40 +08:00
parent 9f74483345
commit d2c7846a91
24 changed files with 1908 additions and 32 deletions

20
src/models/article.ts Normal file
View File

@@ -0,0 +1,20 @@
import type { Model } from "./base/model"
export type Article = Model & {
title: string
section_title: string
content: string
group_id: number
description?: string
cover_image?: string
sort: number
status: number
}
export type UploadImageResult = {
url: string
path: string
original_name: string
size: number
mime_type: string
}