潘志宝
2024-09-14 b05c43105564b174de6476835e7c55bca21fcb31
src/router/modules/remaining.ts
@@ -1,4 +1,4 @@
import { Layout } from '@/utils/routerHelper'
import {Layout} from '@/utils/routerHelper'
const { t } = useI18n()
/**
@@ -51,11 +51,22 @@
    }
  },
  {
    path: '/home2',
    component: () => import('@/views/Home/Index2.vue'),
    name: 'Home2',
    meta: {
      hidden: true,
      noTagsView: true
    },
  },
  {
    path: '/',
    component: Layout,
    redirect: '/index',
    name: 'Home',
    meta: {},
    meta: {
      hidden: true,
      noTagsView: true
    },
    children: [
      {
        path: 'index',
@@ -351,6 +362,29 @@
      }
    ]
  },
  {
    path: '/ind/data',
    component: Layout,
    name: 'dataSet',
    meta: {
      hidden: true
    },
    children: [
      {
        path: 'field/:dataSetId',
        component: () => import('@/views/data/ind/data/field/index.vue'),
        name: 'IndDataSetField',
        meta: {
          title: '数据集字段',
          noCache: true,
          hidden: true,
          canTo: true,
          icon: '',
          activeMenu: '/data/ind/data'
        }
      }
    ]
  },
]
export default remainingRouter