/** * @description 导航常量 */ import { HOME_PAGE } from '@/router/full-routes'; // 首页导航列表 根据后端返回权限控制(首页永远存在) export const NAV_LIST = [ { ...HOME_PAGE, }, { name: 'InstituteSafety', path: '/institute-safety', meta: { title: '院区安全态势', }, }, { name: '生产安全', path: '/work-safety', meta: { title: '生产安全', }, }, { name: 'Traffic', path: '/traffic', meta: { title: '交通安全', }, }, { name: 'SecurityConfidentiality', path: '/security-confidentiality', meta: { title: '保卫保密', }, }, { name: 'DisasterPrevention', path: '/disaster-prevention', meta: { title: '灾害防范', }, }, { name: 'EmergencyManagement', path: '/emergency-management', meta: { title: '应急管理', }, }, { name: 'Platform', path: '/platform', meta: { title: '平台管理', }, }, ];