wangting
2024-09-27 7e45169698349fa0b0b37b151edce5bb28eab74f
Source/plt-web/plt-web-ui/src/router/page/index.js
@@ -58,7 +58,7 @@
  {
    path: '/',
    name: '主页',
    redirect: '/wel'
    redirect: '/wel/index'
  },
  {
    path: '/myiframe',
@@ -91,11 +91,11 @@
  },
  {
    path: '/UIContentViewer',
    name: '动态表格页面',
    name: 'UI上下文展示',
    component: Layout,
    children: [
      {
        path: '', // 空路径表示访问 '/dynamic-form' 时加载 Layout 组件
        path: '', // 空路径表示访问 '/UIContentViewer' 时加载 Layout 组件
        component: () => import('@/views/base/UIContentViewer'),
        props: true
      }
@@ -103,14 +103,31 @@
  },
  {
    path: '/referIndex',
    name: '动态表格页面',
    name: '参照示例',
    component: Layout,
    children: [
      {
        path: '', // 空路径表示访问 '/dynamic-form' 时加载 Layout 组件
        path: '', // 空路径表示访问 '/referIndex' 时加载 Layout 组件
        component: () => import('@/views/test/referDemo/index'),
        props: true
      }
    ]
  },
  {
    path: '/UIDefineShow/:uiDefineOid',
    name: 'UI定义详情',
    component: Layout,
    children: [
      {
        path: '', // 空路径表示访问 '/referIndex' 时加载 Layout 组件
        component: () => import('@/views/modelingMenu/ui/uiDefine/rightRegion/plShow'),
        props: true
      }
    ],
    meta:{
      keepAlive: true,
      isTab: true,
      isAuth: true
    }
  }
]