linwenling
2023-07-25 75e703c6a450b22c070a9ec017f3b304ff344480
ruoyi-ui/src/router/index.js
@@ -313,6 +313,38 @@
      }
    ]
  },
  //个人记事本
  {
    path: '/self/self',
    component: Layout,
    permissions: ['person:information:memo'],
    hidden: true,
    children: [
      {
        path: 'memo/:id(\\d+)',
        component: () => import('@/views/self/memo'),
        name: 'memo',
        meta: { title: '个人记事本'}
      }
    ]
  },
  //个人记事本详细信息
  {
    path: '/self/self',
    component: Layout,
    permissions: ['person:information:memoInfo'],
    hidden: true,
    children: [
      {
        path: 'memoInfo/:id(\\d+)',
        component: () => import('@/views/self/memoInfo'),
        name: 'memoInfo',
        meta: { title: '个人记事本详细信息'}
      }
    ]
  },
//证书、资质
  {
    path: '/self/honor',
@@ -347,6 +379,7 @@
      }
    ]
  },
  //百年心愿
  {
    path: '/self/wish',
@@ -364,7 +397,23 @@
      }
    ]
  },
  //健康保健
  {
    path: '/self/healthy',
    component: Layout,
    // permissions: [],
    hidden: true,
    permissions: ['person:health:info'],
    children: [
      {
        path: 'healthyInfo/:id(\\d+)',
        component: () => import('@/views/healthy/healthyInfo'),
        name: 'healthyInfo',
        meta: { title: '健康保健详情',activeMenu: '/self/zYear'}
      }
    ]
  },
  {
    path: '/system/role-auth',
    component: Layout,