From c594eef54b6a7ae813ac3aede5ff6207d60b92e7 Mon Sep 17 00:00:00 2001 From: pyt <626651354@qq.com> Date: 星期四, 20 三月 2025 14:35:03 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/chongzhouResettle --- src/router/index.js | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 53 insertions(+), 0 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 69b658a..be7d813 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -69,6 +69,59 @@ } ] }, + { + path: '/placement/batch', + component: Layout, + children: [ + { + path: 'personnel', + component: () => import('@/views/placement-batch/person'), + name: 'PlacementBatchPerson', + meta: { title: '需安置人员信息列表', activeMenu: '/placement-batch/list' } + } + ] + }, + { + path: '/placement/batch', + component: Layout, + children: [ + { + path: 'addResettle', + component: () => import('@/views/placement-batch/addResettle'), + name: 'AddResettle', + meta: { title: '编辑安置户信息', activeMenu: '/placement-batch/list' } + } + ] + }, + + { + path: '/placement/batch', + component: Layout, + children: [ + { + path: 'applayPerson', + component: () => import('@/views/placement-batch/applayPerson'), + name: 'ApplayPerson', + meta: { title: '新增安置户申请详情', activeMenu: '/placement-batch/list' } + } + ] + }, + + + // { + // path: '/user', + // component: Layout, + // hidden: true, + // redirect: 'noredirect', + // children: [ + // { + // path: 'profile', + // component: () => import('@/views/system/user/profile/index'), + // name: 'Profile', + // meta: { title: '个人中心', icon: 'user' } + // } + // ] + // } ] // 动态路由,基于用户权限动态去加载 -- Gitblit v1.7.1