田源
2024-03-31 36af2c3515b5c061ac7d97e0c000cd4255e10450
Source/ProjectWeb/src/router/page/index.js
@@ -32,7 +32,6 @@
      isTab: false,
      isAuth: false
    }
  },
  {
    path: '/403',
@@ -77,5 +76,41 @@
  {
    path: '*',
    redirect: '/404'
  }
  },
  // {
  //   path: '/UIContentViewer',
  //   name: 'UI上下文',
  //   component: Layout,
  //   children: [
  //     {
  //       path: '',
  //       component: () => import("@/views/base/UIContentViewer"),
  //       props: true
  //     }
  //   ]
  // },
  {
    path: '/dynamic-form',
    name: '动态表格页面',
    component: Layout,
    children: [
      {
        path: '', // 空路径表示访问 '/dynamic-form' 时加载 Layout 组件
        component: () => import('@/components/dynamic-components/dynamic-form'),
        props: true
      }
    ]
  },
  {
    path: '/referIndex',
    name: '动态表格页面',
    component: Layout,
    children: [
      {
        path: '', // 空路径表示访问 '/dynamic-form' 时加载 Layout 组件
        component: () => import('@/views/test/referDemo/index'),
        props: true
      }
    ]
  },
]