feat(cms): 添加文章编号字段支持

- 在文章模型中新增 code 字段用于唯一标识文章
- 更新文章编辑页面表单,增加编号输入框
- 表单支持对文章编号的增删改查操作
- 完善文章数据结构以支持编号属性
-优化文章编辑界面字段布局和用户体验
This commit is contained in:
2025-09-26 10:49:16 +08:00
parent 670f0f075f
commit 53932fab72
2 changed files with 11 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ export interface CmsArticle {
type?: number;
// 文章模型
model?: string;
// 文章编号
code?: string;
// 文章详情
detail?: string;
// 列表显示方式(10小图展示 20大图展示)