|
@@ -16,6 +16,7 @@ const routes: Array<RouteConfig> = [
|
|
|
{
|
|
|
path: '/',
|
|
|
name: 'Overview',
|
|
|
+ // redirect: '/otherMatter',
|
|
|
component: () => import(/* webpackChunkName: "overview" */ '../views/overview/index.vue'),
|
|
|
meta: {
|
|
|
keepAlive: true,
|
|
@@ -56,7 +57,27 @@ const routes: Array<RouteConfig> = [
|
|
|
{
|
|
|
path: '/otherMatter',
|
|
|
name: 'OtherMatter',
|
|
|
- component: () => import(/* webpackChunkName: "otherMatter" */ '../views/OtherMatter.vue'),
|
|
|
+ component: () => import(/* webpackChunkName: "otherMatter" */ '../views/otherMatter/index.vue'),
|
|
|
+ meta: {
|
|
|
+ keepAlive: true,
|
|
|
+ showTabbar: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ // 其他事项 --> 综合事项
|
|
|
+ {
|
|
|
+ path: '/comprehensiveMatter',
|
|
|
+ name: 'ComprehensiveMatter',
|
|
|
+ component: () => import(/* webpackChunkName: "comprehensiveMatter" */ '../views/otherMatter/ComprehensiveMatter.vue'),
|
|
|
+ meta: {
|
|
|
+ keepAlive: true,
|
|
|
+ showTabbar: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ // 其他事项 --> 辅助用房
|
|
|
+ {
|
|
|
+ path: '/auxiliaryRoom',
|
|
|
+ name: 'AuxiliaryRoom',
|
|
|
+ component: () => import(/* webpackChunkName: "comprehensiveMatter" */ '../views/otherMatter/AuxiliaryRoom.vue'),
|
|
|
meta: {
|
|
|
keepAlive: true,
|
|
|
showTabbar: true,
|