linwenling
2023-06-05 0ac51e607710e00d7842c5e902935d62ca310028
ruoyi-ui/src/router/index.js
@@ -179,6 +179,23 @@
      }
    ]
  },
  //藏心密语
  {
    path: '/self/secret',
    component: Layout,
    // permissions: [],
    hidden: true,
    permissions: ['self:secret:info'],
    children: [
      {
        path: 'secretInfo/:id(\\d+)',
        component: () => import('@/views/secret/secretInfo'),
        name: 'secretInfo',
        meta: { title: '隐私详情',activeMenu: '/self/zsecret'}
      }
    ]
  },
  //家庭收支台账
  {
    path: '/familymodel/economy',
@@ -209,7 +226,7 @@
        path: 'cleanInfo/:id(\\d+)',
        component: () => import('@/views/clean/cleanInfo'),
        name: 'cleanInfo',
        meta: { title: '家庭收支台账查询详情',activeMenu: '/familymodel/zfClean'}
        meta: { title: '保洁收纳查询详情',activeMenu: '/familymodel/zfClean'}
      }
    ]
  },
@@ -313,7 +330,54 @@
      }
    ]
  },
//证书、资质
  {
    path: '/self/honor',
    component: Layout,
    hidden: true,
    permissions: ['self:honor:info'],
    children: [
      {
        path: 'honorInfo/:id(\\d+)',
        component: () => import('@/views/honor/honorInfo'),
        name: 'honorInfo',
        meta: { title: '荣誉证书详情',activeMenu: '/self/zHonor'}
      }
    ]
  },
  //修改旅游
  {
    path: '/self/travel',
    component: Layout,
    permissions: ['person:travel:edit'],
    hidden: true,
    children: [
      {
        path: 'edit/:id(\\d+)',
        component: () => import('@/views/travel/edit'),
        name: 'edit',
        meta: { title: '编辑'}
      }
    ]
  },
  //查看旅游详情
  {
    path: '/self/travel',
    component: Layout,
    permissions: ['person:travel:info'],
    hidden: true,
    children: [
      {
        path: 'show/:id(\\d+)',
        component: () => import('@/views/travel/Info'),
        name: 'show',
        meta: { title: '查看详情'}
      }
    ]
  },
  {
    path: '/system/role-auth',
    component: Layout,