1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-21 01:10:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

管理员后台文件管理选择文件前端页面

This commit is contained in:
2022-04-07 19:46:29 +08:00
parent 626384a24e
commit 5f2a9d6fbd
3 changed files with 173 additions and 4 deletions

View File

@@ -80,6 +80,11 @@ router.get('/dashboard/:group/:page/:subpage?', function (req, res) {
title: "仪表盘",
baseTemplate: "index",
},
"category-manage": {
title: "分类管理",
baseTemplate: "form",
pageTemplate: "CategoryManage",
},
"book-manage": {
title: "书籍管理",
baseTemplate: "table",
@@ -92,10 +97,17 @@ router.get('/dashboard/:group/:page/:subpage?', function (req, res) {
},
}
},
"category-manage": {
title: "分类管理",
baseTemplate: "form",
pageTemplate: "CategoryManage",
"file-manage": {
title: "文件管理",
baseTemplate: "blank",
pageTemplate: "FileManage",
childPage: {
"upload": {
title: "上传文件",
baseTemplate: "blank",
pageTemplate: "FileManage_Upload",
},
}
},
"user-manage": {
title: "用户管理",