添加学习路径图

This commit is contained in:
daihh
2022-12-13 16:13:15 +08:00
parent c0d64327f6
commit 009899d13a
3 changed files with 20 additions and 3 deletions

View File

@@ -244,9 +244,12 @@
</el-menu-item>
<el-menu-item index="/exam/mytask">
<!-- <i class="el-icon-menu"></i> -->
<!-- <span slot="title" class="textl">自主学习</span> -->
<span slot="title" class="textl">我的考试</span>
</el-menu-item>
<el-menu-item index="/uc/study/path">
<!-- <i class="el-icon-menu"></i> -->
<span slot="title" class="textl">学习路径图</span>
</el-menu-item>
<!-- <el-menu-item index="/uc/study/history"> -->
<!-- <i class="el-icon-menu"></i> -->
<!-- <span slot="title" class="textl">历史记录</span>

View File

@@ -64,7 +64,8 @@ export const pages=[
{title:'学习',path:'/uc/study',hidden:false,children:[
{title:'学习任务',path:'task',component:'study/TaskList',hidden:false},
{title:'正在学习',path:'courses',component:'study/Courses',hidden:false},
{title:'历史记录',path:'history',component:'study/FinishCourses',hidden:false}
{title:'历史记录',path:'history',component:'study/FinishCourses',hidden:false},
{title:'学习路径图',path:'path',component:'study/StudyPath',hidden:false}
]},
{title:'个人中心',path:'/uc',hidden:false,children:[
{title:'首页',path:'index',component:'StudyIndex',hidden:false}
@@ -86,7 +87,8 @@ export const pages=[
{title:'我的U币',path:'ucurrency',component:'ucurrency/Index',hidden:true},
{title:'我的勋章',path:'medal',component:'medal/Index',hidden:true},
{title:'勋章规则',path:'urules',component:'medal/urules',hidden:true},
{title:'排行榜',path:'ranking',component:'user/ranking',hidden:true}
{title:'排行榜',path:'ranking',component:'user/ranking',hidden:true},
]},
{title:'消息中心',path:'/message/center',hidden:false,children:[
{title:'消息中心',path:'index',component:'portal/user/Message',hidden:false}

View File

@@ -0,0 +1,12 @@
<template>
<!--学习路径图-->
<div style="height: 100%;">
<iframe src="/fe-student/learnpath" style="width: 100%;height: 100%;" frameborder="0"></iframe>
</div>
</template>
<script>
</script>
<style>
</style>