@ibiz-template/vue3-components 0.0.1-alpha.1 → 0.0.1-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/common/action-toolbar/action-toolbar.d.ts +64 -0
- package/es/common/app-col/app-col.d.ts +45 -0
- package/es/common/app-col/app-col.js +91 -0
- package/es/common/app-icon/app-icon.d.ts +1 -1
- package/es/common/app-icon/app-icon.js +1 -2
- package/es/common/app-router-view/app-router-view.d.ts +1 -0
- package/es/common/app-router-view/app-router-view.js +2 -1
- package/es/common/app-row/app-row.d.ts +9 -0
- package/es/common/app-row/app-row.js +41 -0
- package/es/{layout → common}/control-base/control-base.js +6 -13
- package/es/common/index.d.ts +7 -5
- package/es/common/index.js +24 -5
- package/es/control/app-menu/app-menu-provider.js +1 -1
- package/es/control/app-menu/app-menu-state.d.ts +23 -0
- package/es/control/app-menu/app-menu-state.js +23 -0
- package/es/control/app-menu/app-menu.controller.d.ts +52 -0
- package/es/control/app-menu/app-menu.controller.js +91 -0
- package/es/control/app-menu/app-menu.d.ts +10 -7
- package/es/control/app-menu/app-menu.js +6 -10
- package/es/control/app-menu/index.js +10 -6
- package/es/control/form/form/form-control.d.ts +34 -0
- package/es/control/form/form/form-state.d.ts +36 -0
- package/es/control/form/form/form-state.js +39 -0
- package/es/control/form/form/form.controller.d.ts +129 -0
- package/es/control/form/form/form.controller.js +199 -0
- package/es/control/form/form/index.js +27 -0
- package/es/control/form/form-detail/form-detail/form-detail-state.d.ts +55 -0
- package/es/control/form/form-detail/form-detail/form-detail-state.js +72 -0
- package/es/control/form/form-detail/form-detail/form-detail.d.ts +106 -0
- package/es/control/form/form-detail/form-detail/form-detail.js +176 -0
- package/es/control/form/form-detail/form-detail/index.d.ts +2 -0
- package/es/control/form/form-detail/form-detail/index.js +2 -0
- package/es/control/form/form-detail/form-group-panel/form-group-panel-provider.d.ts +17 -0
- package/es/control/form/form-detail/form-group-panel/form-group-panel-provider.js +20 -0
- package/es/control/form/form-detail/form-group-panel/form-group-panel-state.d.ts +27 -0
- package/es/control/form/form-detail/form-group-panel/form-group-panel-state.js +29 -0
- package/es/control/form/form-detail/form-group-panel/form-group-panel.controller.d.ts +35 -0
- package/es/control/form/form-detail/form-group-panel/form-group-panel.controller.js +59 -0
- package/es/control/form/form-detail/form-group-panel/index.d.ts +3 -0
- package/es/control/form/form-detail/form-group-panel/index.js +3 -0
- package/es/control/form/form-detail/form-item/form-item-container/form-item-container.d.ts +43 -0
- package/es/control/form/form-detail/form-item/form-item-provider.d.ts +18 -0
- package/es/control/form/form-detail/form-item/form-item-state.d.ts +27 -0
- package/es/control/form/form-detail/form-item/form-item.controller.d.ts +139 -0
- package/es/control/form/form-detail/form-item/form-item.d.ts +28 -0
- package/es/control/form/form-detail/form-item/index.d.ts +3 -0
- package/es/control/form/form-detail/form-page/form-page-item.d.ts +32 -0
- package/es/control/form/form-detail/form-page/form-page-provider.d.ts +17 -0
- package/es/control/form/form-detail/form-page/form-page-state.d.ts +12 -0
- package/es/control/form/form-detail/form-page/form-page.controller.d.ts +16 -0
- package/es/{layout/control-layout/control-layout.d.ts → control/form/form-detail/form-page/form-page.d.ts} +7 -9
- package/es/control/form/form-detail/index.d.ts +3 -0
- package/es/control/form/form-detail/index.js +3 -0
- package/es/control/form/index.d.ts +8 -0
- package/es/control/form/index.js +12 -0
- package/es/control/form/search-form/index.js +15 -0
- package/es/control/form/search-form/search-form-provider.d.ts +13 -0
- package/es/{views/index-view/index-view-provider.js → control/form/search-form/search-form-provider.js} +3 -3
- package/es/control/form/search-form/search-form-state.d.ts +19 -0
- package/es/control/form/search-form/search-form-state.js +22 -0
- package/es/control/form/search-form/search-form.controller.d.ts +86 -0
- package/es/control/form/search-form/search-form.controller.js +128 -0
- package/{lib/layout/view-shell/view-shell.d.ts → es/control/form/search-form/search-form.d.ts} +17 -22
- package/es/control/grid/grid/grid-column.controller.d.ts +76 -0
- package/es/control/grid/grid/grid-column.controller.js +89 -0
- package/{lib/control/grid-control → es/control/grid/grid}/grid-control.util.d.ts +3 -2
- package/es/control/grid/grid/grid-row.controller.d.ts +77 -0
- package/es/control/grid/grid/grid-row.controller.js +85 -0
- package/es/control/grid/grid/grid-state.d.ts +19 -0
- package/es/control/grid/grid/grid-state.js +23 -0
- package/es/control/grid/grid/grid.controller.d.ts +225 -0
- package/es/control/grid/grid/grid.controller.js +386 -0
- package/es/control/{grid-control → grid/grid-field-column}/grid-field-column-provider.d.ts +3 -1
- package/es/control/{grid-control → grid/grid-field-column}/grid-field-column-provider.js +1 -1
- package/es/control/grid/grid-field-column/grid-field-column.controller.d.ts +83 -0
- package/es/control/grid/grid-field-column/grid-field-column.controller.js +144 -0
- package/es/control/{grid-control → grid}/grid-field-column/grid-field-column.d.ts +9 -7
- package/es/{common → control/grid}/grid-pagination/grid-pagination.d.ts +1 -1
- package/es/control/grid/grid-ua-column/grid-ua-column-provider.d.ts +17 -0
- package/es/control/grid/grid-ua-column/grid-ua-column-provider.js +20 -0
- package/es/control/grid/grid-ua-column/grid-ua-column.controller.d.ts +28 -0
- package/es/control/grid/grid-ua-column/grid-ua-column.controller.js +62 -0
- package/es/control/grid/grid-ua-column/grid-ua-column.d.ts +46 -0
- package/es/control/grid/index.js +31 -0
- package/es/control/index.d.ts +4 -2
- package/es/control/index.js +4 -2
- package/es/control/panel/index.js +19 -0
- package/es/control/panel/panel/index.d.ts +4 -0
- package/es/control/panel/panel/index.js +4 -0
- package/es/control/panel/panel/panel-item-state.d.ts +47 -0
- package/es/control/panel/panel/panel-item-state.js +58 -0
- package/es/control/panel/panel/panel-item.controller.d.ts +71 -0
- package/es/control/panel/panel/panel-item.controller.js +135 -0
- package/es/control/panel/panel/panel-state.d.ts +21 -0
- package/es/control/panel/panel/panel-state.js +24 -0
- package/es/control/panel/panel/panel.controller.d.ts +114 -0
- package/es/control/panel/panel/panel.controller.js +187 -0
- package/es/control/panel/view-layout-panel/index.d.ts +3 -0
- package/es/control/panel/view-layout-panel/index.js +3 -0
- package/es/control/panel/view-layout-panel/view-layout-panel-provider.d.ts +13 -0
- package/es/control/panel/view-layout-panel/view-layout-panel-provider.js +14 -0
- package/es/control/panel/view-layout-panel/view-layout-panel.controller.d.ts +38 -0
- package/es/control/panel/view-layout-panel/view-layout-panel.controller.js +57 -0
- package/es/control/panel/view-layout-panel/view-layout-panel.d.ts +41 -0
- package/es/control/toolbar/index.js +12 -0
- package/{lib/control/toolbar-control → es/control/toolbar}/toolbar-control.d.ts +4 -10
- package/es/control/toolbar/toolbar-state.d.ts +24 -0
- package/es/control/toolbar/toolbar-state.js +29 -0
- package/es/control/toolbar/toolbar.controllerr.d.ts +33 -0
- package/es/control/toolbar/toolbar.controllerr.js +81 -0
- package/es/editor/index.d.ts +5 -0
- package/es/editor/index.js +14 -0
- package/es/editor/text-box/ibiz-input/ibiz-input.d.ts +51 -0
- package/es/editor/text-box/index.d.ts +1 -0
- package/es/editor/text-box/index.js +4 -0
- package/es/editor/text-box/text-box-provider.d.ts +18 -0
- package/es/editor/text-box/text-box-provider.js +29 -0
- package/es/editor/text-box/text-box.controller.d.ts +20 -0
- package/es/editor/text-box/text-box.controller.js +22 -0
- package/es/index.d.ts +9 -2
- package/es/index.js +30 -3
- package/es/panel-component/auth-userinfo/auth-userinfo-provider.d.ts +16 -0
- package/es/panel-component/auth-userinfo/auth-userinfo-provider.js +20 -0
- package/es/panel-component/auth-userinfo/index.js +19 -0
- package/es/panel-component/index.d.ts +10 -0
- package/es/panel-component/index.js +25 -0
- package/es/panel-component/nav-pos/index.js +20 -0
- package/es/panel-component/nav-pos/nav-pos-provider.d.ts +17 -0
- package/es/panel-component/nav-pos/nav-pos-provider.js +20 -0
- package/es/panel-component/nav-pos/nav-pos-state.d.ts +14 -0
- package/es/panel-component/nav-pos/nav-pos-state.js +17 -0
- package/es/panel-component/nav-pos/nav-pos.controller.d.ts +66 -0
- package/es/panel-component/nav-pos/nav-pos.controller.js +103 -0
- package/es/panel-component/nav-pos/nav-pos.d.ts +27 -0
- package/es/panel-component/nav-tabs/index.js +16 -0
- package/es/panel-component/nav-tabs/nav-tabs-provider.d.ts +17 -0
- package/es/panel-component/nav-tabs/nav-tabs-provider.js +20 -0
- package/es/panel-component/nav-tabs/nav-tabs-state.d.ts +21 -0
- package/es/panel-component/nav-tabs/nav-tabs-state.js +18 -0
- package/es/panel-component/nav-tabs/nav-tabs.controller.js +124 -0
- package/es/panel-component/nav-tabs/nav-tabs.d.ts +35 -0
- package/es/panel-component/panel-container/index.js +23 -0
- package/es/panel-component/panel-container/panel-container-provider.d.ts +16 -0
- package/es/panel-component/panel-container/panel-container-provider.js +20 -0
- package/es/panel-component/panel-container/panel-container-state.d.ts +12 -0
- package/es/panel-component/panel-container/panel-container-state.js +6 -0
- package/es/panel-component/panel-container/panel-container.controller.d.ts +14 -0
- package/es/panel-component/panel-container/panel-container.controller.js +11 -0
- package/es/panel-component/panel-container/panel-container.d.ts +28 -0
- package/es/panel-component/panel-ctrl-pos/index.js +18 -0
- package/es/panel-component/panel-ctrl-pos/panel-ctrl-pos-provider.d.ts +17 -0
- package/es/panel-component/panel-ctrl-pos/panel-ctrl-pos-provider.js +20 -0
- package/es/panel-component/panel-ctrl-pos/panel-ctrl-pos.controller.d.ts +21 -0
- package/es/panel-component/panel-ctrl-pos/panel-ctrl-pos.controller.js +6 -0
- package/es/panel-component/scroll-container/index.js +43 -0
- package/es/panel-component/scroll-container/scroll-container/index.d.ts +3 -0
- package/es/panel-component/scroll-container/scroll-container/index.js +3 -0
- package/es/panel-component/scroll-container/scroll-container/scroll-container-provider.d.ts +17 -0
- package/es/panel-component/scroll-container/scroll-container/scroll-container-provider.js +20 -0
- package/es/panel-component/scroll-container/scroll-container/scroll-container.controller.d.ts +22 -0
- package/es/panel-component/scroll-container/scroll-container/scroll-container.controller.js +11 -0
- package/es/panel-component/scroll-container/scroll-container/scroll-container.d.ts +26 -0
- package/es/panel-component/scroll-container/scroll-container-item/index.d.ts +3 -0
- package/es/panel-component/scroll-container/scroll-container-item/index.js +3 -0
- package/es/panel-component/scroll-container/scroll-container-item/scroll-container-item-provider.d.ts +17 -0
- package/es/panel-component/scroll-container/scroll-container-item/scroll-container-item-provider.js +20 -0
- package/es/panel-component/scroll-container/scroll-container-item/scroll-container-item.controller.d.ts +21 -0
- package/es/panel-component/scroll-container/scroll-container-item/scroll-container-item.controller.js +6 -0
- package/es/panel-component/scroll-container/scroll-container-item/scroll-container-item.d.ts +26 -0
- package/es/view/index.js +13 -0
- package/{lib/views/grid-view/grid-view-provider.d.ts → es/view/view-provider.d.ts} +3 -3
- package/es/{views/grid-view/grid-view-provider.js → view/view-provider.js} +3 -3
- package/es/view-engine/grid-view-engine.d.ts +48 -0
- package/es/view-engine/grid-view-engine.js +158 -0
- package/es/view-engine/index-view-engine.d.ts +9 -0
- package/es/view-engine/index-view-engine.js +20 -0
- package/es/view-engine/index.d.ts +6 -0
- package/es/view-engine/index.js +23 -0
- package/lib/common/action-toolbar/action-toolbar.d.ts +64 -0
- package/lib/common/app-col/app-col.d.ts +45 -0
- package/lib/common/app-col/app-col.js +91 -0
- package/lib/common/app-icon/app-icon.d.ts +1 -1
- package/lib/common/app-icon/app-icon.js +1 -2
- package/lib/common/app-router-view/app-router-view.d.ts +1 -0
- package/lib/common/app-router-view/app-router-view.js +2 -1
- package/lib/common/app-row/app-row.d.ts +9 -0
- package/lib/common/app-row/app-row.js +41 -0
- package/lib/{layout → common}/control-base/control-base.js +5 -12
- package/lib/common/index.d.ts +7 -5
- package/lib/common/index.js +26 -35
- package/lib/control/app-menu/app-menu-provider.js +1 -1
- package/lib/control/app-menu/app-menu-state.d.ts +23 -0
- package/lib/control/app-menu/app-menu-state.js +23 -0
- package/lib/control/app-menu/app-menu.controller.d.ts +52 -0
- package/lib/control/app-menu/app-menu.controller.js +91 -0
- package/lib/control/app-menu/app-menu.d.ts +10 -7
- package/lib/control/app-menu/app-menu.js +7 -11
- package/lib/control/app-menu/index.js +35 -5
- package/lib/control/form/form/form-control.d.ts +34 -0
- package/lib/control/form/form/form-state.d.ts +36 -0
- package/lib/control/form/form/form-state.js +39 -0
- package/lib/control/form/form/form.controller.d.ts +129 -0
- package/lib/control/form/form/form.controller.js +199 -0
- package/lib/control/form/form/index.js +46 -0
- package/lib/control/form/form-detail/form-detail/form-detail-state.d.ts +55 -0
- package/lib/control/form/form-detail/form-detail/form-detail-state.js +72 -0
- package/lib/control/form/form-detail/form-detail/form-detail.d.ts +106 -0
- package/lib/control/form/form-detail/form-detail/form-detail.js +176 -0
- package/lib/control/form/form-detail/form-detail/index.d.ts +2 -0
- package/lib/{views → control/form/form-detail/form-detail}/index.js +6 -8
- package/lib/control/form/form-detail/form-group-panel/form-group-panel-provider.d.ts +17 -0
- package/lib/control/form/form-detail/form-group-panel/form-group-panel-provider.js +20 -0
- package/lib/control/form/form-detail/form-group-panel/form-group-panel-state.d.ts +27 -0
- package/lib/control/form/form-detail/form-group-panel/form-group-panel-state.js +29 -0
- package/lib/control/form/form-detail/form-group-panel/form-group-panel.controller.d.ts +35 -0
- package/lib/control/form/form-detail/form-group-panel/form-group-panel.controller.js +59 -0
- package/lib/control/form/form-detail/form-group-panel/index.d.ts +3 -0
- package/lib/control/form/form-detail/form-group-panel/index.js +26 -0
- package/lib/control/form/form-detail/form-item/form-item-container/form-item-container.d.ts +43 -0
- package/lib/control/form/form-detail/form-item/form-item-provider.d.ts +18 -0
- package/lib/control/form/form-detail/form-item/form-item-state.d.ts +27 -0
- package/lib/control/form/form-detail/form-item/form-item.controller.d.ts +139 -0
- package/lib/control/form/form-detail/form-item/form-item.d.ts +28 -0
- package/lib/control/form/form-detail/form-item/index.d.ts +3 -0
- package/lib/control/form/form-detail/form-page/form-page-item.d.ts +32 -0
- package/lib/control/form/form-detail/form-page/form-page-provider.d.ts +17 -0
- package/lib/control/form/form-detail/form-page/form-page-state.d.ts +12 -0
- package/lib/control/form/form-detail/form-page/form-page.controller.d.ts +16 -0
- package/lib/{layout/control-layout/control-layout.d.ts → control/form/form-detail/form-page/form-page.d.ts} +7 -9
- package/lib/control/form/form-detail/index.d.ts +3 -0
- package/lib/control/form/form-detail/index.js +26 -0
- package/lib/control/form/index.d.ts +8 -0
- package/lib/control/form/index.js +32 -0
- package/lib/control/form/search-form/index.js +15 -0
- package/lib/control/form/search-form/search-form-provider.d.ts +13 -0
- package/lib/{views/index-view/index-view-provider.js → control/form/search-form/search-form-provider.js} +3 -3
- package/lib/control/form/search-form/search-form-state.d.ts +19 -0
- package/lib/control/form/search-form/search-form-state.js +22 -0
- package/lib/control/form/search-form/search-form.controller.d.ts +86 -0
- package/lib/control/form/search-form/search-form.controller.js +128 -0
- package/{es/layout/view-shell/view-shell.d.ts → lib/control/form/search-form/search-form.d.ts} +17 -22
- package/lib/control/grid/grid/grid-column.controller.d.ts +76 -0
- package/lib/control/grid/grid/grid-column.controller.js +89 -0
- package/{es/control/grid-control → lib/control/grid/grid}/grid-control.util.d.ts +3 -2
- package/lib/control/grid/grid/grid-row.controller.d.ts +77 -0
- package/lib/control/grid/grid/grid-row.controller.js +85 -0
- package/lib/control/grid/grid/grid-state.d.ts +19 -0
- package/lib/control/grid/grid/grid-state.js +23 -0
- package/lib/control/grid/grid/grid.controller.d.ts +225 -0
- package/lib/control/grid/grid/grid.controller.js +386 -0
- package/lib/control/{grid-control → grid/grid-field-column}/grid-field-column-provider.d.ts +3 -1
- package/lib/control/{grid-control → grid/grid-field-column}/grid-field-column-provider.js +2 -2
- package/lib/control/grid/grid-field-column/grid-field-column.controller.d.ts +83 -0
- package/lib/control/grid/grid-field-column/grid-field-column.controller.js +144 -0
- package/lib/control/{grid-control → grid}/grid-field-column/grid-field-column.d.ts +9 -7
- package/lib/{common → control/grid}/grid-pagination/grid-pagination.d.ts +1 -1
- package/lib/control/grid/grid-ua-column/grid-ua-column-provider.d.ts +17 -0
- package/lib/control/grid/grid-ua-column/grid-ua-column-provider.js +20 -0
- package/lib/control/grid/grid-ua-column/grid-ua-column.controller.d.ts +28 -0
- package/lib/control/grid/grid-ua-column/grid-ua-column.controller.js +62 -0
- package/lib/control/grid/grid-ua-column/grid-ua-column.d.ts +46 -0
- package/lib/control/grid/index.js +35 -0
- package/lib/control/index.d.ts +4 -2
- package/lib/control/index.js +22 -6
- package/lib/control/panel/index.js +35 -0
- package/lib/control/panel/panel/index.d.ts +4 -0
- package/lib/control/panel/panel/index.js +34 -0
- package/lib/control/panel/panel/panel-item-state.d.ts +47 -0
- package/lib/control/panel/panel/panel-item-state.js +58 -0
- package/lib/control/panel/panel/panel-item.controller.d.ts +71 -0
- package/lib/control/panel/panel/panel-item.controller.js +135 -0
- package/lib/control/panel/panel/panel-state.d.ts +21 -0
- package/lib/control/panel/panel/panel-state.js +24 -0
- package/lib/control/panel/panel/panel.controller.d.ts +114 -0
- package/lib/control/panel/panel/panel.controller.js +187 -0
- package/lib/control/panel/view-layout-panel/index.d.ts +3 -0
- package/lib/control/panel/view-layout-panel/index.js +26 -0
- package/lib/control/panel/view-layout-panel/view-layout-panel-provider.d.ts +13 -0
- package/lib/control/panel/view-layout-panel/view-layout-panel-provider.js +14 -0
- package/lib/control/panel/view-layout-panel/view-layout-panel.controller.d.ts +38 -0
- package/lib/control/panel/view-layout-panel/view-layout-panel.controller.js +57 -0
- package/lib/control/panel/view-layout-panel/view-layout-panel.d.ts +41 -0
- package/lib/control/{toolbar-control → toolbar}/index.js +5 -5
- package/{es/control/toolbar-control → lib/control/toolbar}/toolbar-control.d.ts +4 -10
- package/lib/control/toolbar/toolbar-state.d.ts +24 -0
- package/lib/control/toolbar/toolbar-state.js +29 -0
- package/lib/control/toolbar/toolbar.controllerr.d.ts +33 -0
- package/lib/control/toolbar/toolbar.controllerr.js +81 -0
- package/lib/editor/index.d.ts +5 -0
- package/lib/editor/index.js +14 -0
- package/lib/editor/text-box/ibiz-input/ibiz-input.d.ts +51 -0
- package/lib/editor/text-box/index.d.ts +1 -0
- package/lib/editor/text-box/index.js +7 -0
- package/lib/editor/text-box/text-box-provider.d.ts +18 -0
- package/lib/editor/text-box/text-box-provider.js +29 -0
- package/lib/editor/text-box/text-box.controller.d.ts +20 -0
- package/lib/editor/text-box/text-box.controller.js +22 -0
- package/lib/index.d.ts +9 -2
- package/lib/index.js +45 -12
- package/lib/panel-component/auth-userinfo/auth-userinfo-provider.d.ts +16 -0
- package/lib/panel-component/auth-userinfo/auth-userinfo-provider.js +20 -0
- package/lib/panel-component/auth-userinfo/index.js +23 -0
- package/lib/panel-component/index.d.ts +10 -0
- package/lib/panel-component/index.js +55 -0
- package/lib/panel-component/nav-pos/index.js +30 -0
- package/lib/panel-component/nav-pos/nav-pos-provider.d.ts +17 -0
- package/lib/panel-component/nav-pos/nav-pos-provider.js +20 -0
- package/lib/panel-component/nav-pos/nav-pos-state.d.ts +14 -0
- package/lib/panel-component/nav-pos/nav-pos-state.js +17 -0
- package/lib/panel-component/nav-pos/nav-pos.controller.d.ts +66 -0
- package/lib/panel-component/nav-pos/nav-pos.controller.js +103 -0
- package/lib/panel-component/nav-pos/nav-pos.d.ts +27 -0
- package/lib/panel-component/nav-tabs/index.js +20 -0
- package/lib/panel-component/nav-tabs/nav-tabs-provider.d.ts +17 -0
- package/lib/panel-component/nav-tabs/nav-tabs-provider.js +20 -0
- package/lib/panel-component/nav-tabs/nav-tabs-state.d.ts +21 -0
- package/lib/panel-component/nav-tabs/nav-tabs-state.js +18 -0
- package/lib/panel-component/nav-tabs/nav-tabs.controller.js +124 -0
- package/lib/panel-component/nav-tabs/nav-tabs.d.ts +35 -0
- package/lib/panel-component/panel-container/index.js +33 -0
- package/lib/panel-component/panel-container/panel-container-provider.d.ts +16 -0
- package/lib/panel-component/panel-container/panel-container-provider.js +20 -0
- package/lib/panel-component/panel-container/panel-container-state.d.ts +12 -0
- package/lib/panel-component/panel-container/panel-container-state.js +6 -0
- package/lib/panel-component/panel-container/panel-container.controller.d.ts +14 -0
- package/lib/panel-component/panel-container/panel-container.controller.js +11 -0
- package/lib/panel-component/panel-container/panel-container.d.ts +28 -0
- package/lib/panel-component/panel-ctrl-pos/index.js +25 -0
- package/lib/panel-component/panel-ctrl-pos/panel-ctrl-pos-provider.d.ts +17 -0
- package/lib/panel-component/panel-ctrl-pos/panel-ctrl-pos-provider.js +20 -0
- package/lib/panel-component/panel-ctrl-pos/panel-ctrl-pos.controller.d.ts +21 -0
- package/lib/panel-component/panel-ctrl-pos/panel-ctrl-pos.controller.js +6 -0
- package/lib/panel-component/scroll-container/index.js +57 -0
- package/lib/panel-component/scroll-container/scroll-container/index.d.ts +3 -0
- package/lib/panel-component/scroll-container/scroll-container/index.js +26 -0
- package/lib/panel-component/scroll-container/scroll-container/scroll-container-provider.d.ts +17 -0
- package/lib/panel-component/scroll-container/scroll-container/scroll-container-provider.js +20 -0
- package/lib/panel-component/scroll-container/scroll-container/scroll-container.controller.d.ts +22 -0
- package/lib/panel-component/scroll-container/scroll-container/scroll-container.controller.js +11 -0
- package/lib/panel-component/scroll-container/scroll-container/scroll-container.d.ts +26 -0
- package/lib/panel-component/scroll-container/scroll-container-item/index.d.ts +3 -0
- package/lib/panel-component/scroll-container/scroll-container-item/index.js +26 -0
- package/lib/panel-component/scroll-container/scroll-container-item/scroll-container-item-provider.d.ts +17 -0
- package/lib/panel-component/scroll-container/scroll-container-item/scroll-container-item-provider.js +20 -0
- package/lib/panel-component/scroll-container/scroll-container-item/scroll-container-item.controller.d.ts +21 -0
- package/lib/panel-component/scroll-container/scroll-container-item/scroll-container-item.controller.js +6 -0
- package/lib/panel-component/scroll-container/scroll-container-item/scroll-container-item.d.ts +26 -0
- package/lib/view/index.js +15 -0
- package/{es/views/grid-view/grid-view-provider.d.ts → lib/view/view-provider.d.ts} +3 -3
- package/lib/{views/grid-view/grid-view-provider.js → view/view-provider.js} +3 -3
- package/lib/view-engine/grid-view-engine.d.ts +48 -0
- package/lib/view-engine/grid-view-engine.js +158 -0
- package/lib/view-engine/index-view-engine.d.ts +9 -0
- package/lib/view-engine/index-view-engine.js +20 -0
- package/lib/view-engine/index.d.ts +6 -0
- package/lib/view-engine/index.js +35 -0
- package/package.json +16 -16
- package/src/common/action-toolbar/action-toolbar.scss +31 -0
- package/src/common/action-toolbar/action-toolbar.tsx +117 -0
- package/src/common/app-col/app-col.tsx +34 -13
- package/src/common/app-icon/app-icon.tsx +0 -1
- package/src/common/app-router-view/app-router-view.tsx +2 -1
- package/src/common/app-row/app-row.tsx +2 -1
- package/src/{layout/control-layout/control-layout.scss → common/control-base/control-base.scss} +1 -1
- package/src/{layout → common}/control-base/control-base.tsx +4 -7
- package/src/common/index.ts +23 -4
- package/src/control/app-menu/app-menu-provider.ts +1 -1
- package/src/control/app-menu/app-menu.controller.ts +24 -5
- package/src/control/app-menu/app-menu.tsx +4 -13
- package/src/control/app-menu/index.ts +8 -3
- package/src/control/form/form/form-control.tsx +1 -1
- package/src/control/form/form/form.controller.ts +8 -9
- package/src/control/form/form/index.ts +4 -4
- package/src/control/form/form-detail/form-detail/form-detail-state.ts +2 -2
- package/src/control/form/form-detail/form-detail/form-detail.ts +7 -13
- package/src/control/form/form-detail/form-group-panel/form-group-panel.controller.ts +9 -5
- package/src/control/form/form-detail/form-item/form-item.controller.ts +2 -1
- package/src/control/form/form-detail/form-item/form-item.tsx +2 -4
- package/src/control/form/form-detail/form-page/form-page-item.tsx +3 -6
- package/src/control/form/search-form/index.ts +4 -4
- package/src/control/form/search-form/search-form-provider.ts +1 -1
- package/src/control/form/search-form/search-form-state.ts +9 -1
- package/src/control/form/search-form/search-form.controller.ts +21 -1
- package/src/control/form/search-form/search-form.tsx +4 -3
- package/src/control/grid/grid/grid-control.tsx +1 -1
- package/src/control/grid/grid/grid-row.controller.ts +4 -4
- package/src/control/grid/grid/grid.controller.ts +22 -14
- package/src/control/grid/grid/grid.scss +1 -0
- package/src/control/grid/grid-ua-column/grid-ua-column-provider.ts +26 -0
- package/src/control/grid/grid-ua-column/grid-ua-column.controller.ts +80 -0
- package/src/control/grid/grid-ua-column/grid-ua-column.scss +20 -0
- package/src/control/grid/grid-ua-column/grid-ua-column.tsx +75 -0
- package/src/control/grid/index.ts +13 -5
- package/src/control/index.ts +1 -0
- package/src/control/panel/index.ts +6 -10
- package/src/control/panel/panel/index.ts +4 -0
- package/src/control/panel/panel/panel-item-state.ts +2 -2
- package/src/control/panel/panel/panel-item.controller.ts +7 -13
- package/src/control/panel/panel/panel.controller.ts +10 -12
- package/src/control/panel/view-layout-panel/index.ts +3 -0
- package/src/control/panel/view-layout-panel/view-layout-panel-provider.ts +1 -1
- package/src/control/panel/view-layout-panel/view-layout-panel.controller.ts +9 -2
- package/src/control/panel/view-layout-panel/view-layout-panel.scss +6 -0
- package/src/control/panel/view-layout-panel/view-layout-panel.tsx +5 -10
- package/src/control/toolbar/index.ts +3 -3
- package/src/control/toolbar/toolbar-control.tsx +1 -2
- package/src/control/toolbar/toolbar.controllerr.ts +30 -36
- package/src/editor/index.ts +2 -2
- package/src/index.ts +14 -37
- package/src/panel-component/auth-userinfo/auth-userinfo-provider.ts +26 -0
- package/src/panel-component/auth-userinfo/auth-userinfo.scss +34 -0
- package/src/{common/app-user/app-user.tsx → panel-component/auth-userinfo/auth-userinfo.tsx} +18 -6
- package/src/panel-component/auth-userinfo/index.ts +17 -0
- package/src/panel-component/index.ts +26 -0
- package/src/panel-component/nav-pos/index.ts +16 -0
- package/src/panel-component/nav-pos/nav-pos-provider.ts +27 -0
- package/src/panel-component/nav-pos/nav-pos-state.ts +16 -0
- package/src/panel-component/nav-pos/nav-pos.controller.ts +117 -0
- package/src/panel-component/nav-pos/nav-pos.scss +4 -0
- package/src/panel-component/nav-pos/nav-pos.tsx +79 -0
- package/src/panel-component/nav-tabs/index.ts +14 -0
- package/src/panel-component/nav-tabs/nav-tabs-provider.ts +27 -0
- package/src/panel-component/nav-tabs/nav-tabs-state.ts +24 -0
- package/src/panel-component/nav-tabs/nav-tabs.controller.ts +146 -0
- package/src/panel-component/nav-tabs/nav-tabs.scss +64 -0
- package/src/panel-component/nav-tabs/nav-tabs.tsx +141 -0
- package/src/{control/panel → panel-component}/panel-container/index.ts +3 -2
- package/src/{control/panel → panel-component}/panel-container/panel-container-provider.ts +1 -2
- package/src/{control/panel → panel-component}/panel-container/panel-container-state.ts +1 -1
- package/src/{control/panel → panel-component}/panel-container/panel-container.controller.ts +1 -1
- package/src/{control/panel → panel-component}/panel-container/panel-container.tsx +2 -4
- package/src/{control/panel → panel-component}/panel-ctrl-pos/index.ts +3 -2
- package/src/{control/panel → panel-component}/panel-ctrl-pos/panel-ctrl-pos-provider.ts +2 -3
- package/src/{control/panel → panel-component}/panel-ctrl-pos/panel-ctrl-pos.controller.ts +1 -2
- package/src/panel-component/panel-ctrl-pos/panel-ctrl-pos.scss +4 -0
- package/src/{control/panel → panel-component}/panel-ctrl-pos/panel-ctrl-pos.tsx +3 -2
- package/src/panel-component/scroll-container/index.ts +44 -0
- package/src/panel-component/scroll-container/scroll-container/index.ts +3 -0
- package/src/panel-component/scroll-container/scroll-container/scroll-container-provider.ts +27 -0
- package/src/panel-component/scroll-container/scroll-container/scroll-container.controller.ts +32 -0
- package/src/panel-component/scroll-container/scroll-container/scroll-container.scss +30 -0
- package/src/panel-component/scroll-container/scroll-container/scroll-container.tsx +108 -0
- package/src/panel-component/scroll-container/scroll-container-item/index.ts +3 -0
- package/src/panel-component/scroll-container/scroll-container-item/scroll-container-item-provider.ts +27 -0
- package/src/panel-component/scroll-container/scroll-container-item/scroll-container-item.controller.ts +25 -0
- package/src/panel-component/scroll-container/scroll-container-item/scroll-container-item.scss +5 -0
- package/src/panel-component/scroll-container/scroll-container-item/scroll-container-item.tsx +59 -0
- package/src/view/ibiz-view.scss +13 -0
- package/src/view/ibiz-view.tsx +75 -0
- package/src/{views/view → view}/index.ts +3 -3
- package/src/view-engine/grid-view-engine.ts +200 -0
- package/src/view-engine/index-view-engine.ts +34 -0
- package/src/view-engine/index.ts +24 -0
- package/es/common/app-user/app-user.d.ts +0 -8
- package/es/common/app-user/app-user.js +0 -60
- package/es/common/grid-pagination/index.d.ts +0 -40
- package/es/common/grid-pagination/index.js +0 -9
- package/es/common/quick-search/quick-search.d.ts +0 -30
- package/es/common/quick-search/quick-search.js +0 -63
- package/es/common/tab-page-exp/tab-page-exp.d.ts +0 -69
- package/es/common/tab-page-exp/tab-page-exp.js +0 -117
- package/es/control/app-menu/index.d.ts +0 -53
- package/es/control/grid-control/grid-control.d.ts +0 -158
- package/es/control/grid-control/index.d.ts +0 -114
- package/es/control/grid-control/index.js +0 -23
- package/es/control/toolbar-control/index.d.ts +0 -43
- package/es/control/toolbar-control/index.js +0 -12
- package/es/layout/app-layout/app-layout.d.ts +0 -32
- package/es/layout/control-base/control-base.d.ts +0 -17
- package/es/layout/control-shell/control-shell.d.ts +0 -18
- package/es/layout/index.d.ts +0 -10
- package/es/layout/index.js +0 -20
- package/es/layout/md-view-base/md-view-base.d.ts +0 -12
- package/es/layout/md-view-base/md-view-base.js +0 -35
- package/es/layout/router-shell/router-shell.d.ts +0 -27
- package/es/layout/router-shell/router-shell.js +0 -96
- package/es/layout/view-base/view-base.d.ts +0 -18
- package/es/layout/view-layout/view-layout.d.ts +0 -44
- package/es/util/install.d.ts +0 -3
- package/es/util/install.js +0 -9
- package/es/views/edit-view/index.d.ts +0 -3
- package/es/views/edit-view/index.js +0 -9
- package/es/views/edit-view/src/edit-view.css +0 -6
- package/es/views/edit-view/src/edit-view.d.ts +0 -3
- package/es/views/edit-view/src/edit-view.js +0 -15
- package/es/views/grid-view/grid-view-engine.d.ts +0 -8
- package/es/views/grid-view/grid-view-engine.js +0 -21
- package/es/views/grid-view/grid-view.d.ts +0 -32
- package/es/views/grid-view/grid-view.js +0 -64
- package/es/views/grid-view/index.d.ts +0 -32
- package/es/views/grid-view/index.js +0 -14
- package/es/views/index-view/index-view-default.d.ts +0 -22
- package/es/views/index-view/index-view-default.js +0 -117
- package/es/views/index-view/index-view-engine.d.ts +0 -6
- package/es/views/index-view/index-view-engine.js +0 -9
- package/es/views/index-view/index-view-exp.d.ts +0 -29
- package/es/views/index-view/index-view-exp.js +0 -177
- package/es/views/index-view/index-view-provider.d.ts +0 -13
- package/es/views/index-view/index-view.d.ts +0 -44
- package/es/views/index-view/index-view.js +0 -155
- package/es/views/index-view/index.d.ts +0 -44
- package/es/views/index-view/index.js +0 -14
- package/es/views/index.d.ts +0 -4
- package/es/views/index.js +0 -6
- package/lib/common/app-user/app-user.d.ts +0 -8
- package/lib/common/app-user/app-user.js +0 -60
- package/lib/common/grid-pagination/index.d.ts +0 -40
- package/lib/common/grid-pagination/index.js +0 -9
- package/lib/common/quick-search/quick-search.d.ts +0 -30
- package/lib/common/quick-search/quick-search.js +0 -63
- package/lib/common/tab-page-exp/tab-page-exp.d.ts +0 -69
- package/lib/common/tab-page-exp/tab-page-exp.js +0 -117
- package/lib/control/app-menu/index.d.ts +0 -53
- package/lib/control/grid-control/grid-control.d.ts +0 -158
- package/lib/control/grid-control/index.d.ts +0 -114
- package/lib/control/grid-control/index.js +0 -24
- package/lib/control/toolbar-control/index.d.ts +0 -43
- package/lib/layout/app-layout/app-layout.d.ts +0 -32
- package/lib/layout/control-base/control-base.d.ts +0 -17
- package/lib/layout/control-shell/control-shell.d.ts +0 -18
- package/lib/layout/index.d.ts +0 -10
- package/lib/layout/index.js +0 -44
- package/lib/layout/md-view-base/md-view-base.d.ts +0 -12
- package/lib/layout/md-view-base/md-view-base.js +0 -35
- package/lib/layout/router-shell/router-shell.d.ts +0 -27
- package/lib/layout/router-shell/router-shell.js +0 -96
- package/lib/layout/view-base/view-base.d.ts +0 -18
- package/lib/layout/view-layout/view-layout.d.ts +0 -44
- package/lib/util/install.d.ts +0 -3
- package/lib/util/install.js +0 -9
- package/lib/views/edit-view/index.d.ts +0 -3
- package/lib/views/edit-view/index.js +0 -8
- package/lib/views/edit-view/src/edit-view.css +0 -6
- package/lib/views/edit-view/src/edit-view.d.ts +0 -3
- package/lib/views/edit-view/src/edit-view.js +0 -14
- package/lib/views/grid-view/grid-view-engine.d.ts +0 -8
- package/lib/views/grid-view/grid-view-engine.js +0 -21
- package/lib/views/grid-view/grid-view.d.ts +0 -32
- package/lib/views/grid-view/grid-view.js +0 -64
- package/lib/views/grid-view/index.d.ts +0 -32
- package/lib/views/grid-view/index.js +0 -14
- package/lib/views/index-view/index-view-default.d.ts +0 -22
- package/lib/views/index-view/index-view-default.js +0 -117
- package/lib/views/index-view/index-view-engine.d.ts +0 -6
- package/lib/views/index-view/index-view-engine.js +0 -9
- package/lib/views/index-view/index-view-exp.d.ts +0 -29
- package/lib/views/index-view/index-view-exp.js +0 -177
- package/lib/views/index-view/index-view-provider.d.ts +0 -13
- package/lib/views/index-view/index-view.d.ts +0 -44
- package/lib/views/index-view/index-view.js +0 -155
- package/lib/views/index-view/index.d.ts +0 -44
- package/lib/views/index-view/index.js +0 -14
- package/lib/views/index.d.ts +0 -4
- package/src/common/app-user/app-user.scss +0 -32
- package/src/common/quick-search/quick-search.scss +0 -15
- package/src/common/quick-search/quick-search.tsx +0 -59
- package/src/common/tab-page-exp/tab-page-exp.scss +0 -43
- package/src/common/tab-page-exp/tab-page-exp.tsx +0 -125
- package/src/control/panel/view-layout-panel.json +0 -141
- package/src/layout/app-layout/app-layout.scss +0 -133
- package/src/layout/app-layout/app-layout.tsx +0 -149
- package/src/layout/control-layout/control-layout.tsx +0 -29
- package/src/layout/index.ts +0 -15
- package/src/layout/md-view-base/md-view-base.tsx +0 -69
- package/src/layout/view-base/view-base.scss +0 -11
- package/src/layout/view-base/view-base.tsx +0 -147
- package/src/layout/view-layout/view-layout.scss +0 -198
- package/src/layout/view-layout/view-layout.tsx +0 -115
- package/src/util/install.ts +0 -11
- package/src/views/grid-view/grid-view-engine.ts +0 -68
- package/src/views/grid-view/index.ts +0 -12
- package/src/views/index-view/index-view-default.ts +0 -168
- package/src/views/index-view/index-view-engine.ts +0 -10
- package/src/views/index-view/index-view-exp.ts +0 -261
- package/src/views/index-view/index-view-provider.ts +0 -14
- package/src/views/index-view/index-view.tsx +0 -249
- package/src/views/index-view/index.ts +0 -14
- package/src/views/index.ts +0 -3
- package/src/views/view/ibiz-view.tsx +0 -49
- /package/es/control/{grid-control → grid/grid}/grid-control.util.js +0 -0
- /package/es/control/{grid-control → grid/grid}/grid-provider.d.ts +0 -0
- /package/es/control/{grid-control → grid/grid}/grid-provider.js +0 -0
- /package/es/{common → control/grid}/grid-pagination/grid-pagination.js +0 -0
- /package/es/control/{toolbar-control → toolbar}/toolbar-provider.d.ts +0 -0
- /package/es/control/{toolbar-control → toolbar}/toolbar-provider.js +0 -0
- /package/lib/control/{grid-control → grid/grid}/grid-control.util.js +0 -0
- /package/lib/control/{grid-control → grid/grid}/grid-provider.d.ts +0 -0
- /package/lib/control/{grid-control → grid/grid}/grid-provider.js +0 -0
- /package/lib/{common → control/grid}/grid-pagination/grid-pagination.js +0 -0
- /package/lib/control/{toolbar-control → toolbar}/toolbar-provider.d.ts +0 -0
- /package/lib/control/{toolbar-control → toolbar}/toolbar-provider.js +0 -0
- /package/src/{control/panel → panel-component}/panel-container/panel-container.scss +0 -0
- /package/src/{views/view → view}/view-provider.ts +0 -0
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
import { defineComponent, ref, watch } from 'vue';
|
|
2
|
-
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
-
import './tab-page-exp.scss';
|
|
4
|
-
import { TabPaneName, TabsPaneContext } from 'element-plus';
|
|
5
|
-
|
|
6
|
-
interface RouteMsg {
|
|
7
|
-
key: string;
|
|
8
|
-
fullPath: string;
|
|
9
|
-
modelPath?: string;
|
|
10
|
-
caption?: string;
|
|
11
|
-
}
|
|
12
|
-
interface dropdownAction {
|
|
13
|
-
text: string;
|
|
14
|
-
value?: string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export const TabPageExp = defineComponent({
|
|
18
|
-
name: 'TabPageExp',
|
|
19
|
-
props: {
|
|
20
|
-
routeMsgs: {
|
|
21
|
-
type: Array<RouteMsg>,
|
|
22
|
-
required: true,
|
|
23
|
-
},
|
|
24
|
-
currentKey: {
|
|
25
|
-
type: String,
|
|
26
|
-
required: true,
|
|
27
|
-
},
|
|
28
|
-
},
|
|
29
|
-
emits: ['tab-delete', 'tab-click', 'close-all', 'close-other'],
|
|
30
|
-
setup(props, { emit }) {
|
|
31
|
-
const ns = useNamespace('tab-page-exp');
|
|
32
|
-
const tabsValue = ref(0);
|
|
33
|
-
const actions: dropdownAction[] = [
|
|
34
|
-
{ text: '关闭所有', value: 'closeAll' },
|
|
35
|
-
{ text: '关闭其他', value: 'closeOther' },
|
|
36
|
-
];
|
|
37
|
-
|
|
38
|
-
// 监听currentVal确认当前激活tab
|
|
39
|
-
watch(
|
|
40
|
-
() => props.currentKey,
|
|
41
|
-
(newVal, _oldVal) => {
|
|
42
|
-
const currentRouteMsgIndex = props.routeMsgs.findIndex(
|
|
43
|
-
(msg: RouteMsg) => msg.key === newVal,
|
|
44
|
-
);
|
|
45
|
-
if (currentRouteMsgIndex !== -1) {
|
|
46
|
-
tabsValue.value = currentRouteMsgIndex;
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
);
|
|
50
|
-
|
|
51
|
-
// 点击tab
|
|
52
|
-
const changePage = (pane: TabsPaneContext, _ev: Event) => {
|
|
53
|
-
const index = Number(pane.index);
|
|
54
|
-
tabsValue.value = index;
|
|
55
|
-
emit('tab-click', index);
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
// 关闭tab
|
|
59
|
-
const onClose = (name: TabPaneName) => {
|
|
60
|
-
emit('tab-delete', name);
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
// 处理下拉点击
|
|
64
|
-
const handleCommand = (command: dropdownAction) => {
|
|
65
|
-
if (command.value === 'closeAll') {
|
|
66
|
-
emit('close-all');
|
|
67
|
-
} else if (command.value === 'closeOther') {
|
|
68
|
-
emit('close-other');
|
|
69
|
-
}
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
return { ns, tabsValue, actions, changePage, onClose, handleCommand };
|
|
73
|
-
},
|
|
74
|
-
render() {
|
|
75
|
-
return (
|
|
76
|
-
<div class={this.ns.b()}>
|
|
77
|
-
<div class={this.ns.e('left')}>
|
|
78
|
-
<el-tabs
|
|
79
|
-
type='card'
|
|
80
|
-
v-model={this.tabsValue}
|
|
81
|
-
closable
|
|
82
|
-
onTabClick={this.changePage}
|
|
83
|
-
onTabRemove={this.onClose}
|
|
84
|
-
>
|
|
85
|
-
{this.routeMsgs?.map((msg: RouteMsg, index: number) => {
|
|
86
|
-
return (
|
|
87
|
-
<el-tab-pane
|
|
88
|
-
name={index}
|
|
89
|
-
key={index}
|
|
90
|
-
label={msg.caption}
|
|
91
|
-
></el-tab-pane>
|
|
92
|
-
);
|
|
93
|
-
})}
|
|
94
|
-
</el-tabs>
|
|
95
|
-
</div>
|
|
96
|
-
<div class={this.ns.e('right')}>
|
|
97
|
-
<el-dropdown onCommand={this.handleCommand}>
|
|
98
|
-
{{
|
|
99
|
-
default: () => {
|
|
100
|
-
return (
|
|
101
|
-
<el-button size='small' type='primary'>
|
|
102
|
-
更多 <ion-icon name='arrow-down'></ion-icon>
|
|
103
|
-
</el-button>
|
|
104
|
-
);
|
|
105
|
-
},
|
|
106
|
-
dropdown: () => {
|
|
107
|
-
return (
|
|
108
|
-
<el-dropdown-menu>
|
|
109
|
-
{this.actions.map((action: dropdownAction) => {
|
|
110
|
-
return (
|
|
111
|
-
<el-dropdown-item command={action}>
|
|
112
|
-
{action.text}
|
|
113
|
-
</el-dropdown-item>
|
|
114
|
-
);
|
|
115
|
-
})}
|
|
116
|
-
</el-dropdown-menu>
|
|
117
|
-
);
|
|
118
|
-
},
|
|
119
|
-
}}
|
|
120
|
-
</el-dropdown>
|
|
121
|
-
</div>
|
|
122
|
-
</div>
|
|
123
|
-
);
|
|
124
|
-
},
|
|
125
|
-
});
|
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"layoutMode": "FLEX",
|
|
3
|
-
"rootPanelItems": [
|
|
4
|
-
{
|
|
5
|
-
"panelItems": [
|
|
6
|
-
{
|
|
7
|
-
"panelItems": [
|
|
8
|
-
{
|
|
9
|
-
"allowEmpty": true,
|
|
10
|
-
"caption": "页面标题",
|
|
11
|
-
"itemStyle": "DEFAULT",
|
|
12
|
-
"itemType": "FIELD",
|
|
13
|
-
"layoutPos": {
|
|
14
|
-
"layout": "FLEX"
|
|
15
|
-
},
|
|
16
|
-
"id": "view_pagecaption"
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
"layout": {
|
|
20
|
-
"layout": "FLEX"
|
|
21
|
-
},
|
|
22
|
-
"dataRegionType": "INHERIT",
|
|
23
|
-
"caption": "容器",
|
|
24
|
-
"itemStyle": "DEFAULT",
|
|
25
|
-
"itemType": "CONTAINER",
|
|
26
|
-
"layoutPos": {
|
|
27
|
-
"layout": "FLEX"
|
|
28
|
-
},
|
|
29
|
-
"id": "container7"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"panelItems": [
|
|
33
|
-
{
|
|
34
|
-
"caption": "工具栏",
|
|
35
|
-
"itemStyle": "DEFAULT",
|
|
36
|
-
"itemType": "CTRLPOS",
|
|
37
|
-
"layoutPos": {
|
|
38
|
-
"layout": "FLEX"
|
|
39
|
-
},
|
|
40
|
-
"showCaption": true,
|
|
41
|
-
"id": "toolbar"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"caption": "搜索栏",
|
|
45
|
-
"itemStyle": "DEFAULT",
|
|
46
|
-
"itemType": "CTRLPOS",
|
|
47
|
-
"layoutPos": {
|
|
48
|
-
"layout": "FLEX"
|
|
49
|
-
},
|
|
50
|
-
"showCaption": true,
|
|
51
|
-
"id": "663c3dab99740d1417cb4d8d7e47b4e0"
|
|
52
|
-
}
|
|
53
|
-
],
|
|
54
|
-
"layout": {
|
|
55
|
-
"dir": "row-reverse",
|
|
56
|
-
"layout": "FLEX"
|
|
57
|
-
},
|
|
58
|
-
"dataRegionType": "INHERIT",
|
|
59
|
-
"caption": "容器",
|
|
60
|
-
"itemStyle": "DEFAULT",
|
|
61
|
-
"itemType": "CONTAINER",
|
|
62
|
-
"layoutPos": {
|
|
63
|
-
"layout": "FLEX"
|
|
64
|
-
},
|
|
65
|
-
"id": "container3"
|
|
66
|
-
}
|
|
67
|
-
],
|
|
68
|
-
"layout": {
|
|
69
|
-
"align": "space-between",
|
|
70
|
-
"dir": "row",
|
|
71
|
-
"layout": "FLEX"
|
|
72
|
-
},
|
|
73
|
-
"dataRegionType": "INHERIT",
|
|
74
|
-
"caption": "容器",
|
|
75
|
-
"itemStyle": "DEFAULT",
|
|
76
|
-
"itemType": "CONTAINER",
|
|
77
|
-
"layoutPos": {
|
|
78
|
-
"layout": "FLEX"
|
|
79
|
-
},
|
|
80
|
-
"id": "container6"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"panelItems": [
|
|
84
|
-
{
|
|
85
|
-
"caption": "搜索表单",
|
|
86
|
-
"itemStyle": "DEFAULT",
|
|
87
|
-
"itemType": "CTRLPOS",
|
|
88
|
-
"layoutPos": {
|
|
89
|
-
"layout": "FLEX"
|
|
90
|
-
},
|
|
91
|
-
"showCaption": true,
|
|
92
|
-
"id": "searchform"
|
|
93
|
-
}
|
|
94
|
-
],
|
|
95
|
-
"layout": {
|
|
96
|
-
"layout": "FLEX"
|
|
97
|
-
},
|
|
98
|
-
"dataRegionType": "INHERIT",
|
|
99
|
-
"caption": "容器",
|
|
100
|
-
"itemStyle": "DEFAULT",
|
|
101
|
-
"itemType": "CONTAINER",
|
|
102
|
-
"layoutPos": {
|
|
103
|
-
"layout": "FLEX"
|
|
104
|
-
},
|
|
105
|
-
"id": "container4"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"panelItems": [
|
|
109
|
-
{
|
|
110
|
-
"caption": "表格",
|
|
111
|
-
"itemStyle": "DEFAULT",
|
|
112
|
-
"itemType": "CTRLPOS",
|
|
113
|
-
"layoutPos": {
|
|
114
|
-
"layout": "FLEX"
|
|
115
|
-
},
|
|
116
|
-
"showCaption": true,
|
|
117
|
-
"id": "grid"
|
|
118
|
-
}
|
|
119
|
-
],
|
|
120
|
-
"layout": {
|
|
121
|
-
"layout": "FLEX"
|
|
122
|
-
},
|
|
123
|
-
"dataRegionType": "INHERIT",
|
|
124
|
-
"caption": "容器",
|
|
125
|
-
"itemStyle": "DEFAULT",
|
|
126
|
-
"itemType": "CONTAINER",
|
|
127
|
-
"layoutPos": {
|
|
128
|
-
"layout": "FLEX"
|
|
129
|
-
},
|
|
130
|
-
"id": "container5"
|
|
131
|
-
}
|
|
132
|
-
],
|
|
133
|
-
"layoutPanel": true,
|
|
134
|
-
"codeName": "GridViewLayout",
|
|
135
|
-
"controlType": "VIEWLAYOUTPANEL",
|
|
136
|
-
"logicName": "表格视图布局(预置模型)",
|
|
137
|
-
"appDataEntityId": "web.viewlayoutmodelrepository",
|
|
138
|
-
"controlParam": {},
|
|
139
|
-
"name": "layoutpanel",
|
|
140
|
-
"id": "gridviewlayout"
|
|
141
|
-
}
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
@include b(layout) {
|
|
2
|
-
@include set-component-css-var('layout', $app-layout);
|
|
3
|
-
@include set-component-css-var('layout-nav', $app-layout-nav);
|
|
4
|
-
@include set-component-css-var('layout-header', $app-layout-header);
|
|
5
|
-
@include set-component-css-var('layout-content', $app-layout-content);
|
|
6
|
-
|
|
7
|
-
justify-content: flex-start;
|
|
8
|
-
width: getCssVar('layout', 'width');
|
|
9
|
-
height: getCssVar('layout', 'height');
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
|
|
12
|
-
@include e(logo) {
|
|
13
|
-
@include flex-center;
|
|
14
|
-
|
|
15
|
-
width: getCssVar('layout-nav', 'width');
|
|
16
|
-
height: getCssVar('layout-header', 'height');
|
|
17
|
-
cursor: pointer;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
@include e(logo-caption) {
|
|
21
|
-
font-size: getCssVar('layout', 'caption-font-size');
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@include when(collapse) {
|
|
25
|
-
@include b(layout-content) {
|
|
26
|
-
padding-left: getCssVar('layout-nav', 'collapse-width');
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
// 空白模式样式,隐藏侧边栏和切换图标
|
|
31
|
-
@include m(blank) {
|
|
32
|
-
&.#{bem('layout')} {
|
|
33
|
-
#{getCssVarName('layout-header', 'height')}: 0;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
// 隐藏侧边栏
|
|
37
|
-
@include b(layout-nav) {
|
|
38
|
-
&.el-aside {
|
|
39
|
-
display: none;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
@include b(layout-content) {
|
|
43
|
-
padding-left: 0;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
// 隐藏切换图标
|
|
47
|
-
@include b(layout-header) {
|
|
48
|
-
display: none;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@include b(layout-nav) {
|
|
54
|
-
flex: 0 0 getCssVar('layout-nav', 'width') !important;
|
|
55
|
-
width: getCssVar('layout-nav', 'width') !important;
|
|
56
|
-
min-width: getCssVar('layout-nav', 'width') !important;
|
|
57
|
-
max-width: getCssVar('layout-nav', 'width') !important;
|
|
58
|
-
|
|
59
|
-
&.is-collapse {
|
|
60
|
-
flex: 0 0 getCssVar('layout-nav', 'collapse-width') !important;
|
|
61
|
-
width: getCssVar('layout-nav', 'collapse-width') !important;
|
|
62
|
-
min-width: getCssVar('layout-nav', 'collapse-width') !important;
|
|
63
|
-
max-width: getCssVar('layout-nav', 'collapse-width') !important;
|
|
64
|
-
|
|
65
|
-
> .el-menu--collapse {
|
|
66
|
-
width: 100%;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
transition: all 0.25s;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
@include b(layout-nav) {
|
|
74
|
-
position: absolute;
|
|
75
|
-
top: 0;
|
|
76
|
-
left: 0;
|
|
77
|
-
z-index: 1;
|
|
78
|
-
height: 100%;
|
|
79
|
-
background-color: getCssVar('layout-nav', 'bg-color');
|
|
80
|
-
box-shadow: getCssVar('layout-nav', 'box-shadow');
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
@include b(layout-header) {
|
|
84
|
-
position: absolute;
|
|
85
|
-
top: 0;
|
|
86
|
-
right: 0;
|
|
87
|
-
z-index: 14;
|
|
88
|
-
@include flex($horizontal: space-between);
|
|
89
|
-
|
|
90
|
-
width: 100%;
|
|
91
|
-
height: getCssVar('layout-header', 'height');
|
|
92
|
-
padding: 0;
|
|
93
|
-
line-height: getCssVar('layout-header', 'height');
|
|
94
|
-
color: getCssVar('layout-header', 'text-color');
|
|
95
|
-
background-color: getCssVar('layout-header', 'bg-color');
|
|
96
|
-
box-shadow: getCssVar('layout-header', 'box-shadow');
|
|
97
|
-
@include e(left) {
|
|
98
|
-
@include flex;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
@include e(collapse-icon) {
|
|
102
|
-
@include flex-center;
|
|
103
|
-
|
|
104
|
-
width: 42px;
|
|
105
|
-
font-size: getCssVar('font-size', 'large');
|
|
106
|
-
cursor: pointer;
|
|
107
|
-
|
|
108
|
-
&:hover {
|
|
109
|
-
background: hsl(0deg 0% 100% / 5%);
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
@include b(layout-content) {
|
|
115
|
-
width: 100%;
|
|
116
|
-
padding-left: getCssVar('layout-nav', 'width');
|
|
117
|
-
background-color: getCssVar('layout-content', 'bg-color');
|
|
118
|
-
transition: all 0.2s ease-in-out;
|
|
119
|
-
@include e(main) {
|
|
120
|
-
height: calc(100% - getCssVar('layout-header', 'height'));
|
|
121
|
-
padding: getCssVar('layout-header', 'height') 0 0;
|
|
122
|
-
|
|
123
|
-
@include when(exp) {
|
|
124
|
-
> div:nth-child(2) {
|
|
125
|
-
height: calc(100% - 56px);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
&.is-top {
|
|
131
|
-
padding-left: 0;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
import { computed, defineComponent, PropType, ref, useSlots } from 'vue';
|
|
2
|
-
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
-
import { useRouter, useRoute } from 'vue-router';
|
|
4
|
-
import './app-layout.scss';
|
|
5
|
-
import { IAppIndexView } from '@ibiz/model-core';
|
|
6
|
-
|
|
7
|
-
export const AppLayout = defineComponent({
|
|
8
|
-
name: 'AppLayout',
|
|
9
|
-
props: {
|
|
10
|
-
modelData: { type: Object as PropType<IAppIndexView>, required: true },
|
|
11
|
-
// 视图是否完成加载
|
|
12
|
-
isComplete: {
|
|
13
|
-
type: Boolean,
|
|
14
|
-
default: false,
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
setup(props, { emit }) {
|
|
18
|
-
const ns = useNamespace('layout');
|
|
19
|
-
const router = useRouter();
|
|
20
|
-
const route = useRoute();
|
|
21
|
-
|
|
22
|
-
// 菜单收缩变化
|
|
23
|
-
const isCollapse = ref(false);
|
|
24
|
-
|
|
25
|
-
const collapseMenus = () => {
|
|
26
|
-
isCollapse.value = !isCollapse.value;
|
|
27
|
-
emit('collapseChange', isCollapse.value);
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
const isBlank = computed(() => props.modelData.blankMode === true);
|
|
31
|
-
|
|
32
|
-
const menuAlign = computed(() => {
|
|
33
|
-
return props.modelData.mainMenuAlign || 'LEFT';
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
const redirectToIndex = () => {
|
|
37
|
-
const fullPath = route.fullPath;
|
|
38
|
-
let index = fullPath.indexOf('/');
|
|
39
|
-
for (let i = 0; i < 2; i++) {
|
|
40
|
-
index = fullPath.indexOf('/', index + 1);
|
|
41
|
-
}
|
|
42
|
-
const indexPath = `${fullPath.substring(0, index)}/-`;
|
|
43
|
-
|
|
44
|
-
router.push(indexPath);
|
|
45
|
-
setTimeout(() => {
|
|
46
|
-
window.location.reload();
|
|
47
|
-
});
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
const slots = useSlots();
|
|
51
|
-
// 是否存在多标签导航
|
|
52
|
-
const hasTabPageExp = computed(() => {
|
|
53
|
-
if (slots.tabPageExp) {
|
|
54
|
-
return true;
|
|
55
|
-
}
|
|
56
|
-
return false;
|
|
57
|
-
});
|
|
58
|
-
|
|
59
|
-
const renderLogo = () => {
|
|
60
|
-
return (
|
|
61
|
-
<div class={ns.e('logo')} onClick={redirectToIndex}>
|
|
62
|
-
{props.modelData.appIconPath ? (
|
|
63
|
-
<img
|
|
64
|
-
class={ns.e('logo-img')}
|
|
65
|
-
src={props.modelData.appIconPath}
|
|
66
|
-
></img>
|
|
67
|
-
) : null}
|
|
68
|
-
<div class={ns.e('logo-caption')}>{props.modelData.caption}</div>
|
|
69
|
-
</div>
|
|
70
|
-
);
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
return {
|
|
74
|
-
ns,
|
|
75
|
-
isCollapse,
|
|
76
|
-
isBlank,
|
|
77
|
-
collapseMenus,
|
|
78
|
-
menuAlign,
|
|
79
|
-
redirectToIndex,
|
|
80
|
-
renderLogo,
|
|
81
|
-
hasTabPageExp,
|
|
82
|
-
};
|
|
83
|
-
},
|
|
84
|
-
render() {
|
|
85
|
-
return this.isComplete ? (
|
|
86
|
-
<el-container
|
|
87
|
-
class={[
|
|
88
|
-
this.ns.b(),
|
|
89
|
-
this.isBlank ? this.ns.m('blank') : '',
|
|
90
|
-
this.ns.is('collapse', this.isCollapse),
|
|
91
|
-
]}
|
|
92
|
-
>
|
|
93
|
-
{this.menuAlign === 'LEFT' ? (
|
|
94
|
-
<el-aside
|
|
95
|
-
hide-trigger
|
|
96
|
-
class={[this.ns.b('nav'), this.ns.is('collapse', this.isCollapse)]}
|
|
97
|
-
value={this.isCollapse}
|
|
98
|
-
>
|
|
99
|
-
{this.renderLogo()}
|
|
100
|
-
{this.$slots.menu && this.$slots.menu()}
|
|
101
|
-
</el-aside>
|
|
102
|
-
) : null}
|
|
103
|
-
<el-container
|
|
104
|
-
class={[
|
|
105
|
-
this.ns.b('content'),
|
|
106
|
-
this.ns.is(this.menuAlign.toLowerCase(), true),
|
|
107
|
-
]}
|
|
108
|
-
>
|
|
109
|
-
<el-header class={this.ns.b('header')}>
|
|
110
|
-
<div class={this.ns.be('header', 'left')}>
|
|
111
|
-
{this.renderLogo()}
|
|
112
|
-
{this.menuAlign === 'LEFT' ? (
|
|
113
|
-
<div class={this.ns.be('header', 'collapse-icon')}>
|
|
114
|
-
{!this.isCollapse ? (
|
|
115
|
-
<ion-icon
|
|
116
|
-
src={'./assets/img/menu-fold.svg'}
|
|
117
|
-
onClick={() => this.collapseMenus()}
|
|
118
|
-
/>
|
|
119
|
-
) : (
|
|
120
|
-
<ion-icon
|
|
121
|
-
src={'./assets/img/menu-unfold.svg'}
|
|
122
|
-
onClick={() => this.collapseMenus()}
|
|
123
|
-
/>
|
|
124
|
-
)}
|
|
125
|
-
</div>
|
|
126
|
-
) : null}
|
|
127
|
-
{this.menuAlign === 'TOP'
|
|
128
|
-
? this.$slots.menu && this.$slots.menu()
|
|
129
|
-
: null}
|
|
130
|
-
</div>
|
|
131
|
-
<div class={this.ns.be('header', 'right')}>
|
|
132
|
-
<app-user />
|
|
133
|
-
</div>
|
|
134
|
-
</el-header>
|
|
135
|
-
<el-main
|
|
136
|
-
class={[
|
|
137
|
-
this.ns.be('content', 'main'),
|
|
138
|
-
this.ns.is('exp', this.hasTabPageExp),
|
|
139
|
-
]}
|
|
140
|
-
>
|
|
141
|
-
{this.$slots.tabPageExp && this.$slots.tabPageExp()}
|
|
142
|
-
{this.$slots.default && this.$slots.default()}
|
|
143
|
-
</el-main>
|
|
144
|
-
{/* <el-footer class={this.ns.b('footer')}>Footer</el-footer> */}
|
|
145
|
-
</el-container>
|
|
146
|
-
</el-container>
|
|
147
|
-
) : null;
|
|
148
|
-
},
|
|
149
|
-
});
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { defineComponent, PropType } from 'vue';
|
|
2
|
-
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
-
import './control-layout.scss';
|
|
4
|
-
import { IControl } from '@ibiz/model-core';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* 部件布局
|
|
8
|
-
*/
|
|
9
|
-
export const ControlLayout = defineComponent({
|
|
10
|
-
name: 'ControlLayout',
|
|
11
|
-
props: {
|
|
12
|
-
modelData: { type: Object as PropType<IControl>, required: true },
|
|
13
|
-
},
|
|
14
|
-
setup() {
|
|
15
|
-
const ns = useNamespace('control-layout');
|
|
16
|
-
return { ns };
|
|
17
|
-
},
|
|
18
|
-
render() {
|
|
19
|
-
return (
|
|
20
|
-
<div
|
|
21
|
-
class={{
|
|
22
|
-
[this.ns.b()]: true,
|
|
23
|
-
}}
|
|
24
|
-
>
|
|
25
|
-
{this.$slots.default?.()}
|
|
26
|
-
</div>
|
|
27
|
-
);
|
|
28
|
-
},
|
|
29
|
-
});
|
package/src/layout/index.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { AppLayout } from './app-layout/app-layout';
|
|
2
|
-
import { ControlLayout } from './control-layout/control-layout';
|
|
3
|
-
import { ViewBase } from './view-base/view-base';
|
|
4
|
-
import { MDViewBase } from './md-view-base/md-view-base';
|
|
5
|
-
import { ViewLayout } from './view-layout/view-layout';
|
|
6
|
-
import { ControlBase } from './control-base/control-base';
|
|
7
|
-
|
|
8
|
-
export {
|
|
9
|
-
AppLayout,
|
|
10
|
-
ViewLayout,
|
|
11
|
-
ViewBase,
|
|
12
|
-
MDViewBase,
|
|
13
|
-
ControlLayout,
|
|
14
|
-
ControlBase,
|
|
15
|
-
};
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { ViewController } from '@ibiz-template/runtime';
|
|
2
|
-
import { EmptyVNode } from '@ibiz-template/vue3-util';
|
|
3
|
-
import { defineComponent, PropType } from 'vue';
|
|
4
|
-
|
|
5
|
-
export const MDViewBase = defineComponent({
|
|
6
|
-
props: {
|
|
7
|
-
controller: {
|
|
8
|
-
type: Object as PropType<ViewController>,
|
|
9
|
-
required: true,
|
|
10
|
-
},
|
|
11
|
-
},
|
|
12
|
-
setup() {
|
|
13
|
-
return {};
|
|
14
|
-
},
|
|
15
|
-
render() {
|
|
16
|
-
const c = this.controller;
|
|
17
|
-
const state = c.state;
|
|
18
|
-
|
|
19
|
-
// 外面的插槽同样传给view-layout
|
|
20
|
-
const inheritSlots: IData = {};
|
|
21
|
-
Object.keys(this.$slots).forEach(key => {
|
|
22
|
-
inheritSlots[key] = (arg: IData) => this.$slots[key]!(arg);
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
return (
|
|
26
|
-
<view-base controller={c}>
|
|
27
|
-
{{
|
|
28
|
-
quickSearch: () => {
|
|
29
|
-
// if (state.complete && c.model.enableQuickSearch) {
|
|
30
|
-
// return (
|
|
31
|
-
// <quick-search
|
|
32
|
-
// value={state.query}
|
|
33
|
-
// viewMode={c.modal.mode}
|
|
34
|
-
// // todo 搜索提示
|
|
35
|
-
// // placeholder={c.model.placeholder}
|
|
36
|
-
// onUpdate={(val: string) => {
|
|
37
|
-
// state.query = val;
|
|
38
|
-
// }}
|
|
39
|
-
// onSearch={() => c.onSearch()}
|
|
40
|
-
// ></quick-search>
|
|
41
|
-
// );
|
|
42
|
-
// }
|
|
43
|
-
return EmptyVNode;
|
|
44
|
-
},
|
|
45
|
-
searchForm: () => {
|
|
46
|
-
// if (
|
|
47
|
-
// c.state.complete &&
|
|
48
|
-
// c.model.searchForm &&
|
|
49
|
-
// c.state.showSearchForm
|
|
50
|
-
// ) {
|
|
51
|
-
// return (
|
|
52
|
-
// <search-form-control
|
|
53
|
-
// modelData={c.model.searchForm}
|
|
54
|
-
// context={c.context}
|
|
55
|
-
// params={c.params}
|
|
56
|
-
// onNeuronInit={c.nerve.onNeuronInit(
|
|
57
|
-
// c.model.searchForm.source.name,
|
|
58
|
-
// )}
|
|
59
|
-
// ></search-form-control>
|
|
60
|
-
// );
|
|
61
|
-
// }
|
|
62
|
-
return EmptyVNode;
|
|
63
|
-
},
|
|
64
|
-
...inheritSlots,
|
|
65
|
-
}}
|
|
66
|
-
</view-base>
|
|
67
|
-
);
|
|
68
|
-
},
|
|
69
|
-
});
|