|
@@ -54,7 +54,6 @@ const list = computed(() => {
|
|
|
})
|
|
|
|
|
|
const isAdmin = localStorage.getItem('isAdmin') === '1'
|
|
|
-// const info = localStorage.getItem('entBaseInfo') ? JSON.parse(localStorage.getItem('entBaseInfo')) : {}
|
|
|
const getList = (arr, obj = [], root = '') => {
|
|
|
// 是否为企业管理员
|
|
|
arr.forEach(element => {
|
|
@@ -69,10 +68,6 @@ const getList = (arr, obj = [], root = '') => {
|
|
|
path: enterpriseStore.menuType.CATALOGUE === element.type ? path + '/index' : path,
|
|
|
children: []
|
|
|
}
|
|
|
- // 人才地图
|
|
|
- // if (element?.meta?.isPersonMap) data.isPersonMap = true
|
|
|
- // 全员猎寻
|
|
|
- // if (element?.meta?.hireJob) data.hireJob = true
|
|
|
if (element?.children) {
|
|
|
getList(element.children, data.children, path + '/')
|
|
|
}
|