|
@@ -57,7 +57,7 @@ const userStore = useUserStore()
|
|
|
const info = localStorage.getItem('baseInfo') ? JSON.parse(localStorage.getItem('baseInfo')) : {}
|
|
|
|
|
|
const menuHide = { // 是否隐藏
|
|
|
- studentInformation: (info?.type && Number(info.type) !== 1) // 学生信息管理。 type:0是求职者,1是学生
|
|
|
+ studentInformation: (info?.type !== '1') // 学生信息管理。 type:'0'是求职者,'1'是学生
|
|
|
}
|
|
|
|
|
|
// 左侧菜单列表
|