@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,177 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const vue = require("vue");
|
|
4
|
-
const vueRouter = require("vue-router");
|
|
5
|
-
const getView2Value = (route) => {
|
|
6
|
-
const { view2, params2, params1 } = route.params;
|
|
7
|
-
if (!view2) {
|
|
8
|
-
return "";
|
|
9
|
-
}
|
|
10
|
-
let _params2 = params2.replace(
|
|
11
|
-
new RegExp(";srfnav=[^;=]*$|(?<=;)srfnav=[^;=]*;|^srfnav=[^;=]*;|^srfnav=[^;=]*$", "g"),
|
|
12
|
-
""
|
|
13
|
-
);
|
|
14
|
-
_params2 = _params2 || ibiz.env.routePlaceholder;
|
|
15
|
-
return `/${params1}/${view2}/${_params2}`;
|
|
16
|
-
};
|
|
17
|
-
const getView1Value = (route) => {
|
|
18
|
-
const { view1, appContext } = route.params;
|
|
19
|
-
return `/${appContext}/${view1}/${ibiz.env.routePlaceholder}`;
|
|
20
|
-
};
|
|
21
|
-
function useIndexExpRouteManage(controller) {
|
|
22
|
-
const router = vueRouter.useRouter();
|
|
23
|
-
const route = vueRouter.useRoute();
|
|
24
|
-
const currentKey = vue.ref("");
|
|
25
|
-
const indexPath = vue.ref("");
|
|
26
|
-
const keyHistory = vue.ref([]);
|
|
27
|
-
const routeMsgs = vue.ref([]);
|
|
28
|
-
const deleteRouteCache = (keys) => {
|
|
29
|
-
keys.forEach((key) => {
|
|
30
|
-
const index = keyHistory.value.indexOf(key);
|
|
31
|
-
if (index !== -1) {
|
|
32
|
-
keyHistory.value.splice(index, 1);
|
|
33
|
-
}
|
|
34
|
-
const msgIndex = routeMsgs.value.findIndex((item) => item.key === key);
|
|
35
|
-
if (msgIndex !== -1) {
|
|
36
|
-
routeMsgs.value.splice(msgIndex, 1);
|
|
37
|
-
}
|
|
38
|
-
});
|
|
39
|
-
};
|
|
40
|
-
vue.watch(
|
|
41
|
-
() => route.path,
|
|
42
|
-
(newVal, oldVal) => {
|
|
43
|
-
if (newVal !== oldVal) {
|
|
44
|
-
currentKey.value = getView2Value(route);
|
|
45
|
-
indexPath.value = getView1Value(route);
|
|
46
|
-
const find = routeMsgs.value.find(
|
|
47
|
-
(item) => item.key === currentKey.value
|
|
48
|
-
);
|
|
49
|
-
if (find) {
|
|
50
|
-
find.fullPath = route.fullPath;
|
|
51
|
-
} else {
|
|
52
|
-
if (newVal === indexPath.value) {
|
|
53
|
-
return;
|
|
54
|
-
}
|
|
55
|
-
routeMsgs.value.push({
|
|
56
|
-
key: currentKey.value,
|
|
57
|
-
fullPath: route.fullPath,
|
|
58
|
-
modelPath: "",
|
|
59
|
-
caption: ""
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
{ deep: true, immediate: true }
|
|
65
|
-
);
|
|
66
|
-
vue.watch(
|
|
67
|
-
currentKey,
|
|
68
|
-
(newVal, oldVal) => {
|
|
69
|
-
if (newVal !== oldVal && newVal) {
|
|
70
|
-
const index = keyHistory.value.indexOf(newVal);
|
|
71
|
-
if (index === -1) {
|
|
72
|
-
keyHistory.value.unshift(newVal);
|
|
73
|
-
} else {
|
|
74
|
-
keyHistory.value.splice(index, 1);
|
|
75
|
-
keyHistory.value.unshift(newVal);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
{ immediate: true }
|
|
80
|
-
);
|
|
81
|
-
const updateRouteMsg = async (key, opts) => {
|
|
82
|
-
const find = routeMsgs.value.find((item) => item.key === currentKey.value);
|
|
83
|
-
if (find) {
|
|
84
|
-
if (opts.caption)
|
|
85
|
-
find.caption = opts.caption;
|
|
86
|
-
if (opts.modelPath) {
|
|
87
|
-
find.modelPath = opts.modelPath;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
};
|
|
91
|
-
const closeView = (key = currentKey.value) => {
|
|
92
|
-
deleteRouteCache([key]);
|
|
93
|
-
const toKey = keyHistory.value[0];
|
|
94
|
-
if (!toKey) {
|
|
95
|
-
if (controller.model.blankMode) {
|
|
96
|
-
window.close();
|
|
97
|
-
} else {
|
|
98
|
-
currentKey.value = "";
|
|
99
|
-
router.push(indexPath.value);
|
|
100
|
-
}
|
|
101
|
-
} else {
|
|
102
|
-
const find = routeMsgs.value.find((item) => item.key === toKey);
|
|
103
|
-
router.push(find.fullPath);
|
|
104
|
-
}
|
|
105
|
-
};
|
|
106
|
-
const handleTabClick = (index) => {
|
|
107
|
-
const routeMsg = routeMsgs.value[index];
|
|
108
|
-
if (routeMsg) {
|
|
109
|
-
router.push(routeMsg.fullPath);
|
|
110
|
-
}
|
|
111
|
-
};
|
|
112
|
-
const redirectToIndex = () => {
|
|
113
|
-
const fullPath = route.fullPath;
|
|
114
|
-
let index = fullPath.indexOf("/");
|
|
115
|
-
for (let i = 0; i < 2; i++) {
|
|
116
|
-
index = fullPath.indexOf("/", index + 1);
|
|
117
|
-
}
|
|
118
|
-
const path = `${fullPath.substring(0, index)}/-`;
|
|
119
|
-
router.push(path);
|
|
120
|
-
};
|
|
121
|
-
const goToPage = () => {
|
|
122
|
-
if (keyHistory.value.length > 0) {
|
|
123
|
-
const currentMsg = routeMsgs.value.find(
|
|
124
|
-
(item) => item.key === keyHistory.value[0]
|
|
125
|
-
);
|
|
126
|
-
if (currentMsg) {
|
|
127
|
-
router.push(currentMsg.fullPath);
|
|
128
|
-
}
|
|
129
|
-
} else {
|
|
130
|
-
redirectToIndex();
|
|
131
|
-
}
|
|
132
|
-
};
|
|
133
|
-
const handleTabDelete = (name) => {
|
|
134
|
-
const routeMsg = routeMsgs.value[name];
|
|
135
|
-
if (routeMsg) {
|
|
136
|
-
deleteRouteCache([routeMsg.key]);
|
|
137
|
-
goToPage();
|
|
138
|
-
}
|
|
139
|
-
};
|
|
140
|
-
const handleCloseAll = () => {
|
|
141
|
-
if (routeMsgs.value.length > 0) {
|
|
142
|
-
const allKeyArr = [];
|
|
143
|
-
routeMsgs.value.forEach((msg) => {
|
|
144
|
-
allKeyArr.push(msg.key);
|
|
145
|
-
});
|
|
146
|
-
deleteRouteCache(allKeyArr);
|
|
147
|
-
goToPage();
|
|
148
|
-
}
|
|
149
|
-
};
|
|
150
|
-
const handleCloseOther = () => {
|
|
151
|
-
if (routeMsgs.value.length > 0) {
|
|
152
|
-
const allKeyArr = [];
|
|
153
|
-
routeMsgs.value.forEach((msg) => {
|
|
154
|
-
if (msg.key !== currentKey.value) {
|
|
155
|
-
allKeyArr.push(msg.key);
|
|
156
|
-
}
|
|
157
|
-
});
|
|
158
|
-
deleteRouteCache(allKeyArr);
|
|
159
|
-
goToPage();
|
|
160
|
-
}
|
|
161
|
-
};
|
|
162
|
-
return {
|
|
163
|
-
currentKey,
|
|
164
|
-
keyHistory,
|
|
165
|
-
routeMsgs,
|
|
166
|
-
updateRouteMsg,
|
|
167
|
-
closeView,
|
|
168
|
-
deleteRouteCache,
|
|
169
|
-
handleTabClick,
|
|
170
|
-
handleTabDelete,
|
|
171
|
-
handleCloseAll,
|
|
172
|
-
handleCloseOther
|
|
173
|
-
};
|
|
174
|
-
}
|
|
175
|
-
exports.getView1Value = getView1Value;
|
|
176
|
-
exports.getView2Value = getView2Value;
|
|
177
|
-
exports.useIndexExpRouteManage = useIndexExpRouteManage;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { IViewProvider } from '@ibiz-template/runtime';
|
|
2
|
-
/**
|
|
3
|
-
* 首页视图适配器
|
|
4
|
-
*
|
|
5
|
-
* @author lxm
|
|
6
|
-
* @date 2022-10-25 18:10:57
|
|
7
|
-
* @export
|
|
8
|
-
* @class IndexViewProvider
|
|
9
|
-
* @implements {IViewProvider}
|
|
10
|
-
*/
|
|
11
|
-
export declare class IndexViewProvider implements IViewProvider {
|
|
12
|
-
component: string;
|
|
13
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { ComputedRef, PropType, Ref } from 'vue';
|
|
2
|
-
export declare const IndexView: import("vue").DefineComponent<{
|
|
3
|
-
context: PropType<IContext>;
|
|
4
|
-
params: {
|
|
5
|
-
type: PropType<IParams>;
|
|
6
|
-
default: () => {};
|
|
7
|
-
};
|
|
8
|
-
modelData: {
|
|
9
|
-
type: PropType<IAppIndexView>;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
}, {
|
|
13
|
-
c: any;
|
|
14
|
-
onViewFound: (_opts: IData) => void;
|
|
15
|
-
onMenuRouteChange: (() => void) | null;
|
|
16
|
-
deleteRouteCache: (_keys: string[]) => void;
|
|
17
|
-
handleTabClick: ((_index: number) => void) | null;
|
|
18
|
-
handleTabDelete: ((_name: number) => void) | null;
|
|
19
|
-
handleCloseAll: (() => void) | null;
|
|
20
|
-
handleCloseOther: (() => void) | null;
|
|
21
|
-
currentPath: ComputedRef<string>;
|
|
22
|
-
currentKey: Ref<string>;
|
|
23
|
-
keyHistory: Ref<string[]>;
|
|
24
|
-
routeMsgs: Ref<{
|
|
25
|
-
key: string;
|
|
26
|
-
fullPath: string;
|
|
27
|
-
modelPath?: string | undefined;
|
|
28
|
-
caption?: string | undefined;
|
|
29
|
-
}[]>;
|
|
30
|
-
isShowTabPageExp: boolean;
|
|
31
|
-
isCollapse: (collapse: boolean) => boolean;
|
|
32
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
-
context: PropType<IContext>;
|
|
34
|
-
params: {
|
|
35
|
-
type: PropType<IParams>;
|
|
36
|
-
default: () => {};
|
|
37
|
-
};
|
|
38
|
-
modelData: {
|
|
39
|
-
type: PropType<IAppIndexView>;
|
|
40
|
-
required: true;
|
|
41
|
-
};
|
|
42
|
-
}>>, {
|
|
43
|
-
params: IParams;
|
|
44
|
-
}>;
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const vue = require("vue");
|
|
4
|
-
const vue3Util = require("@ibiz-template/vue3-util");
|
|
5
|
-
require("./index-view-default");
|
|
6
|
-
const indexViewExp = require("./index-view-exp");
|
|
7
|
-
const runtime = require("@ibiz-template/runtime");
|
|
8
|
-
const IndexView = /* @__PURE__ */ vue.defineComponent({
|
|
9
|
-
name: "IndexView",
|
|
10
|
-
props: {
|
|
11
|
-
context: Object,
|
|
12
|
-
params: {
|
|
13
|
-
type: Object,
|
|
14
|
-
default: () => ({})
|
|
15
|
-
},
|
|
16
|
-
modelData: {
|
|
17
|
-
type: Object,
|
|
18
|
-
required: true
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
setup(props) {
|
|
22
|
-
const c = vue3Util.useViewController((...args) => new runtime.ViewController(...args));
|
|
23
|
-
const isShowTabPageExp = true;
|
|
24
|
-
let onViewFound = null;
|
|
25
|
-
let onMenuRouteChange = null;
|
|
26
|
-
let deleteRouteCache = null;
|
|
27
|
-
let handleTabClick = null;
|
|
28
|
-
let handleTabDelete = null;
|
|
29
|
-
let handleCloseAll = null;
|
|
30
|
-
let handleCloseOther = null;
|
|
31
|
-
let currentPath = null;
|
|
32
|
-
let currentKey;
|
|
33
|
-
let keyHistory;
|
|
34
|
-
let routeMsgs;
|
|
35
|
-
{
|
|
36
|
-
const {
|
|
37
|
-
currentKey: _currentKey,
|
|
38
|
-
keyHistory: _keyHistory,
|
|
39
|
-
routeMsgs: _routeMsgs,
|
|
40
|
-
updateRouteMsg,
|
|
41
|
-
closeView,
|
|
42
|
-
deleteRouteCache: _deleteRouteCache,
|
|
43
|
-
handleTabClick: _handleTabClick,
|
|
44
|
-
handleTabDelete: _handleTabDelete,
|
|
45
|
-
handleCloseAll: _handleCloseAll,
|
|
46
|
-
handleCloseOther: _handleCloseOther
|
|
47
|
-
} = indexViewExp.useIndexExpRouteManage(c);
|
|
48
|
-
currentKey = _currentKey;
|
|
49
|
-
keyHistory = _keyHistory;
|
|
50
|
-
routeMsgs = _routeMsgs;
|
|
51
|
-
deleteRouteCache = _deleteRouteCache;
|
|
52
|
-
handleTabClick = _handleTabClick;
|
|
53
|
-
handleTabDelete = _handleTabDelete;
|
|
54
|
-
handleCloseAll = _handleCloseAll;
|
|
55
|
-
handleCloseOther = _handleCloseOther;
|
|
56
|
-
onViewFound = (opts) => {
|
|
57
|
-
updateRouteMsg(currentKey.value, opts);
|
|
58
|
-
};
|
|
59
|
-
window.onpopstate = () => {
|
|
60
|
-
deleteRouteCache([keyHistory.value[1]]);
|
|
61
|
-
};
|
|
62
|
-
currentPath = vue.computed(() => {
|
|
63
|
-
const routeMsg = routeMsgs.value.find((item) => item.key === currentKey.value);
|
|
64
|
-
return (routeMsg == null ? void 0 : routeMsg.modelPath) || "";
|
|
65
|
-
});
|
|
66
|
-
}
|
|
67
|
-
vue.onMounted(() => {
|
|
68
|
-
setTimeout(() => {
|
|
69
|
-
const el = document.querySelector(".app-loading-x");
|
|
70
|
-
if (el) {
|
|
71
|
-
el.style.display = "none";
|
|
72
|
-
}
|
|
73
|
-
}, 300);
|
|
74
|
-
});
|
|
75
|
-
const isCollapse = (collapse) => {
|
|
76
|
-
return false;
|
|
77
|
-
};
|
|
78
|
-
return {
|
|
79
|
-
c,
|
|
80
|
-
// onCreated,
|
|
81
|
-
onViewFound,
|
|
82
|
-
onMenuRouteChange,
|
|
83
|
-
deleteRouteCache,
|
|
84
|
-
handleTabClick,
|
|
85
|
-
handleTabDelete,
|
|
86
|
-
handleCloseAll,
|
|
87
|
-
handleCloseOther,
|
|
88
|
-
currentPath,
|
|
89
|
-
currentKey,
|
|
90
|
-
keyHistory,
|
|
91
|
-
routeMsgs,
|
|
92
|
-
isShowTabPageExp,
|
|
93
|
-
isCollapse
|
|
94
|
-
};
|
|
95
|
-
},
|
|
96
|
-
render() {
|
|
97
|
-
return vue.createVNode(vue.resolveComponent("app-layout"), {
|
|
98
|
-
"is-complete": true,
|
|
99
|
-
"modelData": this.c.model,
|
|
100
|
-
"onCollapseChange": this.isCollapse
|
|
101
|
-
}, {
|
|
102
|
-
menu: () => {
|
|
103
|
-
var _a;
|
|
104
|
-
{
|
|
105
|
-
if (this.$slots.appmenu) {
|
|
106
|
-
return this.$slots.appmenu();
|
|
107
|
-
}
|
|
108
|
-
const menu = (_a = this.modelData.controls) == null ? void 0 : _a.find((item) => item.name === "appmenu");
|
|
109
|
-
if (menu) {
|
|
110
|
-
return vue.createVNode(vue.resolveComponent("control-shell"), {
|
|
111
|
-
"current-path": this.currentPath,
|
|
112
|
-
"modelData": menu,
|
|
113
|
-
"context": this.c.context,
|
|
114
|
-
"mode": this.c.model.mainMenuAlign,
|
|
115
|
-
"onMenuRouteChange": this.onMenuRouteChange
|
|
116
|
-
}, null);
|
|
117
|
-
}
|
|
118
|
-
return vue.createVNode("div", null, [vue.createTextVNode("菜单")]);
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
tabPageExp: () => {
|
|
122
|
-
if (this.isShowTabPageExp) {
|
|
123
|
-
return vue.createVNode(vue.resolveComponent("tab-page-exp"), {
|
|
124
|
-
"route-msgs": this.routeMsgs,
|
|
125
|
-
"current-key": this.currentKey,
|
|
126
|
-
"onTabClick": this.handleTabClick,
|
|
127
|
-
"onTabDelete": this.handleTabDelete,
|
|
128
|
-
"onCloseAll": this.handleCloseAll,
|
|
129
|
-
"onCloseOther": this.handleCloseOther
|
|
130
|
-
}, null);
|
|
131
|
-
}
|
|
132
|
-
return null;
|
|
133
|
-
},
|
|
134
|
-
default: () => {
|
|
135
|
-
if (this.currentKey) {
|
|
136
|
-
return vue.createVNode(vue.resolveComponent("app-router-view"), {
|
|
137
|
-
"manualKey": this.currentKey,
|
|
138
|
-
"onViewFound": this.onViewFound
|
|
139
|
-
}, {
|
|
140
|
-
default: ({
|
|
141
|
-
Component
|
|
142
|
-
}) => {
|
|
143
|
-
return Component && vue.createVNode(vue.resolveComponent("appKeepAlive"), {
|
|
144
|
-
"keyList": this.keyHistory
|
|
145
|
-
}, {
|
|
146
|
-
default: () => [vue.createVNode(Component, null, null)]
|
|
147
|
-
});
|
|
148
|
-
}
|
|
149
|
-
});
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
});
|
|
153
|
-
}
|
|
154
|
-
});
|
|
155
|
-
exports.IndexView = IndexView;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
export declare const IbizIndexView: import("../../util/install").TypeWithInstall<import("vue").DefineComponent<{
|
|
2
|
-
context: import("vue").PropType<IContext>;
|
|
3
|
-
params: {
|
|
4
|
-
type: import("vue").PropType<IParams>;
|
|
5
|
-
default: () => {};
|
|
6
|
-
};
|
|
7
|
-
modelData: {
|
|
8
|
-
type: import("vue").PropType<IAppIndexView>;
|
|
9
|
-
required: true;
|
|
10
|
-
};
|
|
11
|
-
}, {
|
|
12
|
-
c: any;
|
|
13
|
-
onViewFound: (_opts: IData) => void;
|
|
14
|
-
onMenuRouteChange: (() => void) | null;
|
|
15
|
-
deleteRouteCache: (_keys: string[]) => void;
|
|
16
|
-
handleTabClick: ((_index: number) => void) | null;
|
|
17
|
-
handleTabDelete: ((_name: number) => void) | null;
|
|
18
|
-
handleCloseAll: (() => void) | null;
|
|
19
|
-
handleCloseOther: (() => void) | null;
|
|
20
|
-
currentPath: import("vue").ComputedRef<string>;
|
|
21
|
-
currentKey: import("vue").Ref<string>;
|
|
22
|
-
keyHistory: import("vue").Ref<string[]>;
|
|
23
|
-
routeMsgs: import("vue").Ref<{
|
|
24
|
-
key: string;
|
|
25
|
-
fullPath: string;
|
|
26
|
-
modelPath?: string | undefined;
|
|
27
|
-
caption?: string | undefined;
|
|
28
|
-
}[]>;
|
|
29
|
-
isShowTabPageExp: boolean;
|
|
30
|
-
isCollapse: (collapse: boolean) => boolean;
|
|
31
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
-
context: import("vue").PropType<IContext>;
|
|
33
|
-
params: {
|
|
34
|
-
type: import("vue").PropType<IParams>;
|
|
35
|
-
default: () => {};
|
|
36
|
-
};
|
|
37
|
-
modelData: {
|
|
38
|
-
type: import("vue").PropType<IAppIndexView>;
|
|
39
|
-
required: true;
|
|
40
|
-
};
|
|
41
|
-
}>>, {
|
|
42
|
-
params: IParams;
|
|
43
|
-
}>>;
|
|
44
|
-
export default IbizIndexView;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
const runtime = require("@ibiz-template/runtime");
|
|
4
|
-
const indexView = require("./index-view");
|
|
5
|
-
const indexViewProvider = require("./index-view-provider");
|
|
6
|
-
const install = require("../../util/install");
|
|
7
|
-
const indexViewEngine = require("./index-view-engine");
|
|
8
|
-
const IbizIndexView = install.withInstall(indexView.IndexView, function(v) {
|
|
9
|
-
v.component(indexView.IndexView.name, indexView.IndexView);
|
|
10
|
-
ibiz.register.view.register(runtime.ViewType.APP_INDEX_VIEW, new indexViewProvider.IndexViewProvider());
|
|
11
|
-
ibiz.engine.registerPreset(runtime.ViewType.APP_INDEX_VIEW, indexViewEngine.IndexViewEngine);
|
|
12
|
-
});
|
|
13
|
-
exports.IbizIndexView = IbizIndexView;
|
|
14
|
-
exports.default = IbizIndexView;
|
package/lib/views/index.d.ts
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
// @include b(app-user) {
|
|
2
|
-
// margin-right: 25px;
|
|
3
|
-
// }
|
|
4
|
-
|
|
5
|
-
// @include b(app-user-avatar) {
|
|
6
|
-
// cursor: pointer;
|
|
7
|
-
// @include e(name) {
|
|
8
|
-
// margin-left: 12px;
|
|
9
|
-
// color: #fff;
|
|
10
|
-
// }
|
|
11
|
-
// }
|
|
12
|
-
|
|
13
|
-
// @include b(app-user-avatar-wrapper) {
|
|
14
|
-
// @include flex-center;
|
|
15
|
-
|
|
16
|
-
// display: inline-flex;
|
|
17
|
-
// width: auto;
|
|
18
|
-
// height: 64px;
|
|
19
|
-
// padding: 0 12px;
|
|
20
|
-
// text-align: center;
|
|
21
|
-
// cursor: pointer;
|
|
22
|
-
// transition: all 0.2s ease-in-out;
|
|
23
|
-
|
|
24
|
-
// &:hover {
|
|
25
|
-
// background: hsl(0deg 0% 100% / 5%);
|
|
26
|
-
// }
|
|
27
|
-
// }
|
|
28
|
-
|
|
29
|
-
// @include b(app-user-avater__icon){
|
|
30
|
-
// margin: top 2px;
|
|
31
|
-
// margin-right: 6px;
|
|
32
|
-
// }
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// @include b(quick-search) {
|
|
2
|
-
// @include set-component-css-var('quick-search-embed', $quick-search-embed);
|
|
3
|
-
|
|
4
|
-
// @include m(embed) {
|
|
5
|
-
// .ivu-icon {
|
|
6
|
-
// height: getCssVar('quick-search-embed', 'height');
|
|
7
|
-
// line-height: getCssVar('quick-search-embed', 'line-height');
|
|
8
|
-
// }
|
|
9
|
-
|
|
10
|
-
// .ivu-input {
|
|
11
|
-
// height: getCssVar('quick-search-embed', 'height');
|
|
12
|
-
// line-height: getCssVar('quick-search-embed', 'line-height');
|
|
13
|
-
// }
|
|
14
|
-
// }
|
|
15
|
-
// }
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import { computed, defineComponent } from 'vue';
|
|
2
|
-
import { useNamespace } from '@ibiz-template/vue3-util';
|
|
3
|
-
import { debounce } from 'lodash-es';
|
|
4
|
-
import './quick-search.scss';
|
|
5
|
-
|
|
6
|
-
export const QuickSearch = defineComponent({
|
|
7
|
-
name: 'QuickSearch',
|
|
8
|
-
props: {
|
|
9
|
-
value: {
|
|
10
|
-
type: String,
|
|
11
|
-
},
|
|
12
|
-
viewMode: {
|
|
13
|
-
type: String,
|
|
14
|
-
required: true,
|
|
15
|
-
},
|
|
16
|
-
placeholder: {
|
|
17
|
-
type: String,
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
setup(props, { emit }) {
|
|
21
|
-
const ns = useNamespace('quick-search');
|
|
22
|
-
const inputValue = computed({
|
|
23
|
-
get() {
|
|
24
|
-
return props.value;
|
|
25
|
-
},
|
|
26
|
-
set(val: string | undefined) {
|
|
27
|
-
emit('update', val!);
|
|
28
|
-
},
|
|
29
|
-
});
|
|
30
|
-
const search = () => {
|
|
31
|
-
emit('search');
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
const debounceSearch = debounce(() => {
|
|
35
|
-
if (search) {
|
|
36
|
-
search();
|
|
37
|
-
}
|
|
38
|
-
}, 500);
|
|
39
|
-
|
|
40
|
-
const onInput = (value: string | undefined) => {
|
|
41
|
-
inputValue.value = value;
|
|
42
|
-
debounceSearch();
|
|
43
|
-
};
|
|
44
|
-
return { ns, inputValue, search, onInput };
|
|
45
|
-
},
|
|
46
|
-
render() {
|
|
47
|
-
return (
|
|
48
|
-
<el-input
|
|
49
|
-
model-value={this.value}
|
|
50
|
-
class={[this.ns.b(), this.ns.m(this.viewMode.toLowerCase())]}
|
|
51
|
-
placeholder={this.placeholder}
|
|
52
|
-
onInput={this.onInput}
|
|
53
|
-
onChange={this.search}
|
|
54
|
-
></el-input>
|
|
55
|
-
);
|
|
56
|
-
},
|
|
57
|
-
});
|
|
58
|
-
|
|
59
|
-
export default QuickSearch;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
// @include b(tab-page-exp) {
|
|
2
|
-
// @include set-component-css-var('tab-page-exp', $tab-page-exp);
|
|
3
|
-
// @include set-component-css-var('tab-page-exp-item', $tab-page-exp-item);
|
|
4
|
-
// @include flex(row, center, center);
|
|
5
|
-
|
|
6
|
-
// position: relative;
|
|
7
|
-
// padding: getCssVar('tab-page-exp', 'padding');
|
|
8
|
-
// @include e(left) {
|
|
9
|
-
// display: flex;
|
|
10
|
-
// align-items: center;
|
|
11
|
-
// width: getCssVar('tab-page-exp', 'left-width');
|
|
12
|
-
|
|
13
|
-
// .el-tabs {
|
|
14
|
-
// width: 100%;
|
|
15
|
-
|
|
16
|
-
// .el-tabs__nav {
|
|
17
|
-
// border: none;
|
|
18
|
-
// }
|
|
19
|
-
|
|
20
|
-
// .el-tabs__item {
|
|
21
|
-
// display: inline-block;
|
|
22
|
-
// height: getCssVar('tab-page-exp-item', 'height');
|
|
23
|
-
// padding: getCssVar('tab-page-exp-item', 'padding');
|
|
24
|
-
// margin: getCssVar('tab-page-exp-item', 'margin');
|
|
25
|
-
// overflow: hidden;
|
|
26
|
-
// font-size: getCssVar('tab-page-exp-item', 'font-size');
|
|
27
|
-
// line-height: getCssVar('tab-page-exp-item', 'line-height');
|
|
28
|
-
// vertical-align: middle;
|
|
29
|
-
// background-color: getCssVar('tab-page-exp-item', 'bg-color');
|
|
30
|
-
// border-radius: getCssVar('tab-page-exp-item', 'border-radius');
|
|
31
|
-
// opacity: getCssVar('tab-page-exp-item', 'opacity');
|
|
32
|
-
// }
|
|
33
|
-
|
|
34
|
-
// .el-tabs__header {
|
|
35
|
-
// border-bottom: none;
|
|
36
|
-
// }
|
|
37
|
-
// }
|
|
38
|
-
// }
|
|
39
|
-
|
|
40
|
-
// @include e(right) {
|
|
41
|
-
// width: getCssVar('tab-page-exp', 'right-width');
|
|
42
|
-
// }
|
|
43
|
-
// }
|