mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 02:46:44 +08:00
提交
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<el-menu
|
||||
:default-active="activeMenu"
|
||||
router
|
||||
active-text-color="#00aaff"
|
||||
active-text-color="#3379FB"
|
||||
:default-openeds="['manageTodo','manageFinish','teacherTodo','teacherFinish','myqa', 'mystudy', 'course', 'exam', 'u001', 'u002', 'u003', 'u004']"
|
||||
class="el-menu-vertical"
|
||||
@open="handleOpen"
|
||||
@@ -210,13 +210,17 @@
|
||||
</el-submenu>
|
||||
<!--user-->
|
||||
|
||||
<el-menu-item index="/need/waitaudited">
|
||||
<!-- <el-menu-item >
|
||||
<svg-icon icon-class="myubi"></svg-icon>
|
||||
<span slot="title">我的U币</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="/need/waitaudited">
|
||||
<svg-icon icon-class="myxunzhang"></svg-icon>
|
||||
<span slot="title">我的勋章</span>
|
||||
</el-menu-item> -->
|
||||
<el-menu-item index="/user/ucurrency" v-show="curIdentity == 1">
|
||||
<svg-icon :icon-class="activeMenu == '/user/ucurrency'?'myubi-active':'myubi'"></svg-icon>
|
||||
<span slot="title">我的U币</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="/user/medal">
|
||||
<svg-icon :icon-class="activeMenu == '/user/medal'?'myxunzhang-active':'myxunzhang'"></svg-icon>
|
||||
<span slot="title">我的勋章</span>
|
||||
</el-menu-item>
|
||||
<el-submenu index="mystudy" v-show="curIdentity == 1">
|
||||
<template slot="title">
|
||||
@@ -243,7 +247,7 @@
|
||||
<!-- <span slot="title" class="textl">历史记录</span>
|
||||
</el-menu-item> -->
|
||||
</el-submenu>
|
||||
<el-menu-item index="/need/waitaudited">
|
||||
<el-menu-item index="/user/Mynotes">
|
||||
<svg-icon icon-class="mybiji"></svg-icon>
|
||||
<span slot="title">我的笔记</span>
|
||||
</el-menu-item>
|
||||
|
||||
@@ -80,7 +80,9 @@ export const pages=[
|
||||
{title:'个人设置',path:'setting',component:'user/Setting',hidden:false},
|
||||
{title:'我的消息',path:'message',component:'user/Message',hidden:false},
|
||||
{title:'开发工具下载',path:'tools',component:'tools/Index',hidden:false},
|
||||
{title:'课程开发教程',path:'developtoolsdown',component:'tools/DeveloptoolsDown',hidden:true}
|
||||
{title:'课程开发教程',path:'developtoolsdown',component:'tools/DeveloptoolsDown',hidden:true},
|
||||
{title:'我的U币',path:'ucurrency',component:'ucurrency/Index',hidden:true},
|
||||
{title:'我的勋章',path:'medal',component:'medal/Index',hidden:true}
|
||||
]}
|
||||
]
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
23
src/views/medal/Index.vue
Normal file
23
src/views/medal/Index.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div class="u-currency">
|
||||
我 的 勋 章
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default{
|
||||
data(){
|
||||
return{
|
||||
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
|
||||
23
src/views/ucurrency/Index.vue
Normal file
23
src/views/ucurrency/Index.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div class="u-currency">
|
||||
我 的 u 币
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default{
|
||||
data(){
|
||||
return{
|
||||
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user