| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**
- * @description 导航常量
- */
- import { HOME_PAGE } from '@/router/full-routes';
- // 首页导航列表 根据后端返回权限控制(首页永远存在)
- export const NAV_LIST = [
- {
- ...HOME_PAGE,
- },
- {
- name: '院内安全态势',
- path: '',
- meta: {
- title: '院内安全态势',
- },
- },
- {
- name: '生产安全',
- path: '',
- meta: {
- title: '生产安全',
- },
- },
- {
- name: '交通安全',
- path: '',
- meta: {
- title: '交通安全',
- },
- },
- {
- name: '保卫保密',
- path: '',
- meta: {
- title: '保卫保密',
- },
- },
- {
- path: '/disaster-prevention',
- component: 'MENU_LAYOUT',
- meta: {
- title: '灾害防范',
- },
- name: 'DisasterPrevention',
- parentId: -1,
- },
- {
- name: '',
- path: '',
- meta: {
- title: '应急管理',
- },
- },
- {
- name: '',
- path: '',
- meta: {
- title: '智慧视觉',
- },
- },
- {
- name: '',
- path: '',
- meta: {
- title: '物联集成',
- },
- },
- {
- name: 'System',
- path: '/system',
- component: 'MENU_LAYOUT',
- meta: {
- title: '系统设置',
- },
- },
- ];
|