You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< el -menu : default -openeds = " [ ' 1 ' , ' 3 ' ] " style = "min-height: 100%; overflow-x: hidden"
background -color = " rgb ( 48 , 65 , 86 ) "
text -color = " # fff "
active -text -color = " # ffd04b "
:collapse-transition ="false"
:collapse ="isCollapse"
router
>
< div style = "height: 60px;line-height: 60px;text-align: center" >
< img src = "../../assets/logo.png" alt = "" style = "width: 20px;position: relative;top: 5px;margin-right: 5px" >
< b style = "color: white" v-show ="logoTextShow" > 在 线 考 试 学 生 端 < / b >
< / div >
< ! - - 动 态 绑 定 index , 使 用 模 板 字 符 串 - - >
< el -menu -item :index ="`/user/profile?userId=${userId}`" >
< i class = "el-icon-house" > < / i >
< span > 主页 < / span >
< / e l - m e n u - i t e m >
< el -menu -item :index ="`/student/exam?userId=${userId}`" >
< i class = "el-icon-message" > < / i >
< span > 试卷中心 < / span >
< / e l - m e n u - i t e m >
< el -menu -item :index ="`/student/scoreList?userId=${userId}`" >
< i class = "el-icon-s-data" > < / i >
< span > 分数查询 < / span >
< / e l - m e n u - i t e m >
< / e l - m e n u >
< / template >
< script >
export default {
name : "Aside" ,
data ( ) {
return {
hasStudentMenu : false , // 如果没有子项,将其设置为 false 来避免显示 submenu
userId : '' , // 初始化 userId
} ;
} ,
props : {
isCollapse : Boolean ,
logoTextShow : Boolean
} ,
created ( ) {
// 从路由参数中获取 userId
this . userId = this . $route . query . userId ;
}
}
< / script >
< style scoped lang = "scss" >
< / style >