wangting
2024-12-19 acecd2af0d71d980c741936637f29f008adaf88f
Source/plt-web/plt-web-ui/src/router/page/index.js
@@ -78,30 +78,6 @@
    redirect: '/404'
  },
  {
    path: '/dynamic-form',
    name: '动态表格页面',
    component: Layout,
    children: [
      {
        path: '', // 空路径表示访问 '/dynamic-form' 时加载 Layout 组件
        component: () => import('@/components/dynamic-components/dynamic-form'),
        props: true
      }
    ]
  },
  {
    path: '/UIContentViewer',
    name: 'UI上下文展示',
    component: Layout,
    children: [
      {
        path: '', // 空路径表示访问 '/UIContentViewer' 时加载 Layout 组件
        component: () => import('@/views/base/UIContentViewer'),
        props: true
      }
    ]
  },
  {
    path: '/referIndex',
    name: '参照示例',
    component: Layout,
@@ -112,22 +88,5 @@
        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
    }
  }
]