课程管理的增删改查以及批量删除以及富文本加密以及名称查询

This commit is contained in:
2025-06-24 20:27:14 +08:00
parent 787fadd33f
commit 774f7f97ed
8 changed files with 2191 additions and 27 deletions

View File

@ -22,16 +22,6 @@ export const routes = [
name: '首页',
component: () => import("../view/Index.vue"),
},
{
path: '/localCurriculum',
name: '本地课程',
component: () => import("../view/course/localCurriculum.vue"),
},
{
path: '/linkedCourse',
name: '链接课程',
component: () => import("../view/course/linkedCourse.vue"),
},
{
path: '/workList',
name: '工作列表',
@ -106,7 +96,27 @@ export const routes = [
path: '/withdrawalApplicationRecord',
name: '提现申请记录',
component: () => import("../view/settlement/withdrawalApplicationRecord.vue"),
}
},
{
path: '/courseManagement',
name: '课程管理',
component: () => import("../view/course/courseManagement.vue"),
},
{
path: '/addcourse',
name: '新增课程',
component: () => import("../view/course/addCourse.vue"),
},
{
path:'/courseDetail',
name:'课程详情',
component: ()=> import("../view/course/courseDetail.vue")
},
{
path:'/chapterDetail',
name:'章节详情',
component: ()=> import("../view/course/chapterDetail.vue")
},
]
},
]