This commit is contained in:
zhaofang
2022-09-13 11:42:31 +08:00
parent 9ffc39c358
commit fce9e6e0ec
5 changed files with 60 additions and 8 deletions

View File

@@ -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>

View File

@@ -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}
]}
]

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

23
src/views/medal/Index.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<div class="u-currency">
</div>
</template>
<script>
export default{
data(){
return{
}
},
methods:{
}
}
</script>
<style lang="scss" scoped>
</style>

View 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>