feat: add rich text help article editor

This commit is contained in:
wushumin
2026-05-27 14:41:28 +08:00
parent 2ccbd0ffe4
commit 7d901fb435
17 changed files with 1311 additions and 114 deletions

View File

@@ -202,6 +202,30 @@ const adminChildren = [
contentTab: "articles",
},
},
{
path: "articles/create",
name: "content-article-create",
component: () => import("../pages/content/article-edit.vue"),
meta: {
title: "内容中心",
desc: "新增帮助文章:编辑分类、摘要、关键词和富文本正文。",
permission: "system.manage",
menuIndex: "content",
contentTab: "articles",
},
},
{
path: "articles/:id/edit",
name: "content-article-edit",
component: () => import("../pages/content/article-edit.vue"),
meta: {
title: "内容中心",
desc: "编辑帮助文章:维护富文本正文、推荐状态和排序。",
permission: "system.manage",
menuIndex: "content",
contentTab: "articles",
},
},
],
},
{