|
|
@@ -58,6 +58,9 @@ import {
|
|
|
SamlLogin,
|
|
|
CasLogin,
|
|
|
PrinterConfiguration,
|
|
|
+ Window1,
|
|
|
+ TabFormEdit1,
|
|
|
+ TabFormView1,
|
|
|
} from 'client-base-v4/dist/client-base-v4.js';
|
|
|
|
|
|
|
|
|
@@ -125,6 +128,25 @@ const router = [
|
|
|
// eslint-disable-next-line
|
|
|
{ path: 'window/window-read/:type/:windowNo/:tabIndex/:recordId', component: TabFormView },
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ { path: 'window1/:windowNo', component: Window1 },
|
|
|
+
|
|
|
+ // CRUD编辑窗口
|
|
|
+ // eslint-disable-next-line
|
|
|
+ { path: 'window1/window-edit/:type/:uuid', component: TabFormEdit1 },
|
|
|
+ // eslint-disable-next-line
|
|
|
+ { path: 'window1/window-edit/:type/:windowNo/:tabIndex', component: TabFormEdit1 },
|
|
|
+ // eslint-disable-next-line
|
|
|
+ { path: 'window1/window-edit/:type/:windowNo/:tabIndex/:recordId', component: TabFormEdit1 },
|
|
|
+
|
|
|
+ // CRUD不可编辑窗口
|
|
|
+ // eslint-disable-next-line
|
|
|
+ { path: 'window1/window-read/:type/:uuid', component: TabFormView1 },
|
|
|
+ // eslint-disable-next-line
|
|
|
+ { path: 'window1/window-read/:type/:windowNo/:tabIndex/:recordId', component: TabFormView1 },
|
|
|
+ { path: '/window1/window-read/:type/:windowNo/:tabIndex/:recordId', component: TabFormView1 },
|
|
|
+
|
|
|
// 属性编辑窗口
|
|
|
{
|
|
|
path: 'attribute-edit/:uuid', component: AttributeEditPanel,
|