@oinone/kunlun-vue-admin-layout 6.2.0
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/README.md +1 -0
- package/dist/oinone-kunlun-vue-admin-layout.css +1 -0
- package/dist/oinone-kunlun-vue-admin-layout.esm.js +12049 -0
- package/dist/oinone-kunlun-vue-admin-layout.scss +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/src/basic/MaskWidget.d.ts +17 -0
- package/dist/types/src/basic/index.d.ts +2 -0
- package/dist/types/src/basic/register/index.d.ts +1 -0
- package/dist/types/src/basic/register/manager.d.ts +7 -0
- package/dist/types/src/basic/token/BaseMaskWidget.d.ts +55 -0
- package/dist/types/src/basic/token/index.d.ts +1 -0
- package/dist/types/src/component/app-switcher/AppSwitcher.vue.d.ts +84 -0
- package/dist/types/src/component/app-switcher/AppSwitcherMask.vue.d.ts +61 -0
- package/dist/types/src/component/app-switcher/AppSwitcherWidget.d.ts +33 -0
- package/dist/types/src/component/app-switcher/index.d.ts +3 -0
- package/dist/types/src/component/breadcrumb/BreadcrumbWidget.d.ts +33 -0
- package/dist/types/src/component/breadcrumb/DefaultBreadcrumb.vue.d.ts +58 -0
- package/dist/types/src/component/breadcrumb/index.d.ts +2 -0
- package/dist/types/src/component/debug/Debug.vue.d.ts +11 -0
- package/dist/types/src/component/debug/DebugWidget.d.ts +8 -0
- package/dist/types/src/component/debug/constants.d.ts +2 -0
- package/dist/types/src/component/debug/index.d.ts +6 -0
- package/dist/types/src/component/debug/spi/DebugMaskEditor.d.ts +6 -0
- package/dist/types/src/component/debug/spi/DebugRouterInitializeService.d.ts +4 -0
- package/dist/types/src/component/debug/spi/index.d.ts +1 -0
- package/dist/types/src/component/debug/typing.d.ts +159 -0
- package/dist/types/src/component/debug/view/DebugMainView.vue.d.ts +28 -0
- package/dist/types/src/component/debug/view/DebugMainViewWidget.d.ts +9 -0
- package/dist/types/src/component/debug/view/components/DebugDefaultInfo.vue.d.ts +22 -0
- package/dist/types/src/component/debug/view/components/DebugJsonView.vue.d.ts +26 -0
- package/dist/types/src/component/debug/view/components/DebugRequestInfoPanel.vue.d.ts +22 -0
- package/dist/types/src/component/debug/view/components/DebugResponsePanel.vue.d.ts +12 -0
- package/dist/types/src/component/debug/view/debug-api/DebugApi.vue.d.ts +52 -0
- package/dist/types/src/component/debug/view/debug-api/DebugApiWidget.d.ts +32 -0
- package/dist/types/src/component/debug/view/debug-utils.d.ts +44 -0
- package/dist/types/src/component/debug/view/debug-view/DebugView.vue.d.ts +78 -0
- package/dist/types/src/component/debug/view/debug-view/DebugViewWidget.d.ts +26 -0
- package/dist/types/src/component/debug/view/index.d.ts +5 -0
- package/dist/types/src/component/debug/view/service/DebugRuntimeContextService.d.ts +18 -0
- package/dist/types/src/component/debug/view/service/DebugStackInfoService.d.ts +27 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugDefaultRuntimeContextService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugRuntimeActionService.d.ts +7 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugRuntimeDslService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugRuntimeFieldService.d.ts +7 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugRuntimeLayoutService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugRuntimeMaskService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugRuntimeTemplateService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/runtime-context/DebugRuntimeViewService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugBizStackService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugConfigureService.d.ts +4 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugDefaultStackInfoService.d.ts +8 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugExceptionStackService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugFunctionService.d.ts +4 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugHalfBizStackService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugModelService.d.ts +4 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugPureBizStackService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugStacktraceGqlRequestContextService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugStacktraceSceneAnalysisService.d.ts +7 -0
- package/dist/types/src/component/debug/view/service/impl/stack-info/DebugStacktraceSessionService.d.ts +6 -0
- package/dist/types/src/component/debug/view/service/index.d.ts +20 -0
- package/dist/types/src/component/debug/view/storage.d.ts +19 -0
- package/dist/types/src/component/debug/view/useDebugRequestInfo.d.ts +7 -0
- package/dist/types/src/component/divider/Divider.vue.d.ts +2 -0
- package/dist/types/src/component/divider/DividerWidget.d.ts +4 -0
- package/dist/types/src/component/divider/index.d.ts +1 -0
- package/dist/types/src/component/index.d.ts +14 -0
- package/dist/types/src/component/language/DefaultLanguage.vue.d.ts +34 -0
- package/dist/types/src/component/language/LanguageWidget.d.ts +16 -0
- package/dist/types/src/component/language/index.d.ts +1 -0
- package/dist/types/src/component/layout/BaseMaskLayoutWidget.d.ts +4 -0
- package/dist/types/src/component/layout/MaskBlock.vue.d.ts +24 -0
- package/dist/types/src/component/layout/block/MaskBlockWidget.d.ts +4 -0
- package/dist/types/src/component/layout/block/index.d.ts +1 -0
- package/dist/types/src/component/layout/container/MaskContainerWidget.d.ts +4 -0
- package/dist/types/src/component/layout/container/index.d.ts +1 -0
- package/dist/types/src/component/layout/content/MaskContentWidget.d.ts +7 -0
- package/dist/types/src/component/layout/content/index.d.ts +1 -0
- package/dist/types/src/component/layout/grid/Grid.vue.d.ts +2 -0
- package/dist/types/src/component/layout/grid/GridWidget.d.ts +9 -0
- package/dist/types/src/component/layout/grid/index.d.ts +1 -0
- package/dist/types/src/component/layout/header/MaskHeaderWidget.d.ts +4 -0
- package/dist/types/src/component/layout/header/index.d.ts +1 -0
- package/dist/types/src/component/layout/index.d.ts +9 -0
- package/dist/types/src/component/layout/mask/MaskRootWidget.d.ts +4 -0
- package/dist/types/src/component/layout/mask/index.d.ts +1 -0
- package/dist/types/src/component/layout/sidebar/MaskSidebarWidget.d.ts +10 -0
- package/dist/types/src/component/layout/sidebar/index.d.ts +1 -0
- package/dist/types/src/component/layout/widget/MaskCommonWidget.d.ts +14 -0
- package/dist/types/src/component/layout/widget/index.d.ts +1 -0
- package/dist/types/src/component/menu/DefaultMenu.vue.d.ts +115 -0
- package/dist/types/src/component/menu/DefaultSubMenu.vue.d.ts +17 -0
- package/dist/types/src/component/menu/MenuWidget.d.ts +71 -0
- package/dist/types/src/component/menu/index.d.ts +3 -0
- package/dist/types/src/component/multi-tabs/MultiTabs.vue.d.ts +151 -0
- package/dist/types/src/component/multi-tabs/MultiTabsWidget.d.ts +60 -0
- package/dist/types/src/component/multi-tabs/index.d.ts +2 -0
- package/dist/types/src/component/multi-tabs/typing.d.ts +6 -0
- package/dist/types/src/component/notification/DefaultNotification.vue.d.ts +61 -0
- package/dist/types/src/component/notification/NotificationWidget.d.ts +139 -0
- package/dist/types/src/component/notification/index.d.ts +2 -0
- package/dist/types/src/component/order-statistic/OrderStatistic.vue.d.ts +8 -0
- package/dist/types/src/component/order-statistic/index.d.ts +14 -0
- package/dist/types/src/component/partner-switcher/PartnerSwitcher.vue.d.ts +28 -0
- package/dist/types/src/component/partner-switcher/PartnerSwitcherWidget.d.ts +15 -0
- package/dist/types/src/component/partner-switcher/index.d.ts +6 -0
- package/dist/types/src/component/partner-switcher/service/PartnerSwitcherService.d.ts +17 -0
- package/dist/types/src/component/partner-switcher/service/impl/PartnerSwitcherServiceImpl.d.ts +17 -0
- package/dist/types/src/component/partner-switcher/service/index.d.ts +2 -0
- package/dist/types/src/component/partner-switcher/session/PartnerInfoSession.d.ts +26 -0
- package/dist/types/src/component/partner-switcher/session/impl/DefaultPartnerInfoSession.d.ts +15 -0
- package/dist/types/src/component/partner-switcher/session/index.d.ts +2 -0
- package/dist/types/src/component/partner-switcher/spi/PartnerSwitcherMaskEditor.d.ts +6 -0
- package/dist/types/src/component/partner-switcher/spi/index.d.ts +1 -0
- package/dist/types/src/component/partner-switcher/typing/index.d.ts +1 -0
- package/dist/types/src/component/partner-switcher/typing/partner.d.ts +20 -0
- package/dist/types/src/component/quick-search/QuickSearch.vue.d.ts +29 -0
- package/dist/types/src/component/quick-search/index.d.ts +24 -0
- package/dist/types/src/component/user/DefaultUser.vue.d.ts +39 -0
- package/dist/types/src/component/user/UserWidget.d.ts +16 -0
- package/dist/types/src/component/user/index.d.ts +1 -0
- package/dist/types/src/config/DebugConfig.d.ts +16 -0
- package/dist/types/src/config/PartnerSwitcherConfig.d.ts +16 -0
- package/dist/types/src/config/index.d.ts +2 -0
- package/dist/types/src/index.d.ts +10 -0
- package/dist/types/src/service/index.d.ts +5 -0
- package/dist/types/src/service/menu-service.d.ts +12 -0
- package/dist/types/src/service/message-service.d.ts +16 -0
- package/dist/types/src/service/module-service.d.ts +7 -0
- package/dist/types/src/service/top-bar-service.d.ts +10 -0
- package/dist/types/src/service/user-service.d.ts +4 -0
- package/dist/types/src/spi/index.d.ts +1 -0
- package/dist/types/src/spi/mask-editor.d.ts +54 -0
- package/dist/types/src/tags/Block.vue.d.ts +5 -0
- package/dist/types/src/tags/Breadcrumb.vue.d.ts +5 -0
- package/dist/types/src/tags/Container.vue.d.ts +5 -0
- package/dist/types/src/tags/Content.vue.d.ts +5 -0
- package/dist/types/src/tags/Header.vue.d.ts +5 -0
- package/dist/types/src/tags/Mask.vue.d.ts +5 -0
- package/dist/types/src/tags/MultiTabs.vue.d.ts +5 -0
- package/dist/types/src/tags/Sidebar.vue.d.ts +5 -0
- package/dist/types/src/tags/Widget.vue.d.ts +5 -0
- package/dist/types/src/tags/context/context.d.ts +8 -0
- package/dist/types/src/tags/context/index.d.ts +1 -0
- package/dist/types/src/tags/index.d.ts +6 -0
- package/dist/types/src/tags/mixin/MaskWidgetTagMixin.d.ts +2 -0
- package/dist/types/src/tags/mixin/index.d.ts +3 -0
- package/dist/types/src/tags/mixin/typing.d.ts +6 -0
- package/dist/types/src/tags/mixin/use-mask-widget-tag.d.ts +38 -0
- package/dist/types/src/tags/register/index.d.ts +1 -0
- package/dist/types/src/tags/register/manager.d.ts +9 -0
- package/dist/types/src/tags/resolve/index.d.ts +2 -0
- package/dist/types/src/tags/resolve/internal/index.d.ts +2 -0
- package/dist/types/src/tags/resolve/internal/typing.d.ts +5 -0
- package/dist/types/src/tags/resolve/internal/widget-resolve.d.ts +3 -0
- package/dist/types/src/tags/resolve/typing.d.ts +26 -0
- package/dist/types/src/tags/resolve/widget-resolve.d.ts +5 -0
- package/dist/types/src/template/default-mask.d.ts +2 -0
- package/dist/types/src/template/index.d.ts +6 -0
- package/dist/types/src/theme/index.d.ts +1 -0
- package/dist/types/src/typing/constant.d.ts +1 -0
- package/dist/types/src/typing/index.d.ts +3 -0
- package/dist/types/src/typing/menu.d.ts +12 -0
- package/dist/types/src/typing/stream-symble.d.ts +12 -0
- package/dist/types/src/util/HomepageUtils.d.ts +3 -0
- package/dist/types/src/util/MenuUtil.d.ts +5 -0
- package/dist/types/src/util/index.d.ts +3 -0
- package/dist/types/src/util/unauthorized-action.d.ts +14 -0
- package/dist/types/src/utils.d.ts +86 -0
- package/index.ts +1 -0
- package/package.json +47 -0
- package/rollup.config.js +33 -0
- package/src/basic/MaskWidget.ts +74 -0
- package/src/basic/index.ts +2 -0
- package/src/basic/register/index.ts +1 -0
- package/src/basic/register/manager.ts +17 -0
- package/src/basic/token/BaseMaskWidget.ts +187 -0
- package/src/basic/token/index.ts +1 -0
- package/src/component/app-switcher/AppSwitcher.vue +133 -0
- package/src/component/app-switcher/AppSwitcherMask.vue +237 -0
- package/src/component/app-switcher/AppSwitcherWidget.ts +152 -0
- package/src/component/app-switcher/index.ts +3 -0
- package/src/component/breadcrumb/BreadcrumbWidget.ts +167 -0
- package/src/component/breadcrumb/DefaultBreadcrumb.vue +95 -0
- package/src/component/breadcrumb/index.ts +2 -0
- package/src/component/debug/Debug.vue +28 -0
- package/src/component/debug/DebugWidget.ts +38 -0
- package/src/component/debug/constants.ts +3 -0
- package/src/component/debug/index.ts +6 -0
- package/src/component/debug/spi/DebugMaskEditor.ts +19 -0
- package/src/component/debug/spi/DebugRouterInitializeService.ts +21 -0
- package/src/component/debug/spi/index.ts +1 -0
- package/src/component/debug/typing.ts +191 -0
- package/src/component/debug/view/DebugMainView.vue +206 -0
- package/src/component/debug/view/DebugMainViewWidget.ts +42 -0
- package/src/component/debug/view/components/DebugDefaultInfo.vue +31 -0
- package/src/component/debug/view/components/DebugJsonView.vue +107 -0
- package/src/component/debug/view/components/DebugRequestInfoPanel.vue +129 -0
- package/src/component/debug/view/components/DebugResponsePanel.vue +66 -0
- package/src/component/debug/view/components/runtime-context/DebugRuntimeFieldComponent.vue +29 -0
- package/src/component/debug/view/debug-api/DebugApi.vue +225 -0
- package/src/component/debug/view/debug-api/DebugApiWidget.ts +400 -0
- package/src/component/debug/view/debug-utils.ts +114 -0
- package/src/component/debug/view/debug-view/DebugView.vue +331 -0
- package/src/component/debug/view/debug-view/DebugViewWidget.ts +181 -0
- package/src/component/debug/view/index.ts +6 -0
- package/src/component/debug/view/service/DebugRuntimeContextService.ts +21 -0
- package/src/component/debug/view/service/DebugStackInfoService.ts +33 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugDefaultRuntimeContextService.ts +16 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugRuntimeActionService.ts +28 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugRuntimeDslService.ts +16 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugRuntimeFieldService.ts +33 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugRuntimeLayoutService.ts +16 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugRuntimeMaskService.ts +30 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugRuntimeTemplateService.ts +16 -0
- package/src/component/debug/view/service/impl/runtime-context/DebugRuntimeViewService.ts +16 -0
- package/src/component/debug/view/service/impl/stack-info/DebugBizStackService.ts +19 -0
- package/src/component/debug/view/service/impl/stack-info/DebugConfigureService.ts +6 -0
- package/src/component/debug/view/service/impl/stack-info/DebugDefaultStackInfoService.ts +62 -0
- package/src/component/debug/view/service/impl/stack-info/DebugExceptionStackService.ts +19 -0
- package/src/component/debug/view/service/impl/stack-info/DebugFunctionService.ts +6 -0
- package/src/component/debug/view/service/impl/stack-info/DebugHalfBizStackService.ts +19 -0
- package/src/component/debug/view/service/impl/stack-info/DebugModelService.ts +6 -0
- package/src/component/debug/view/service/impl/stack-info/DebugPureBizStackService.ts +19 -0
- package/src/component/debug/view/service/impl/stack-info/DebugStacktraceGqlRequestContextService.ts +22 -0
- package/src/component/debug/view/service/impl/stack-info/DebugStacktraceSceneAnalysisService.ts +35 -0
- package/src/component/debug/view/service/impl/stack-info/DebugStacktraceSessionService.ts +19 -0
- package/src/component/debug/view/service/index.ts +22 -0
- package/src/component/debug/view/storage.ts +35 -0
- package/src/component/debug/view/useDebugRequestInfo.ts +17 -0
- package/src/component/divider/Divider.vue +15 -0
- package/src/component/divider/DividerWidget.ts +12 -0
- package/src/component/divider/index.ts +1 -0
- package/src/component/index.ts +15 -0
- package/src/component/language/DefaultLanguage.vue +111 -0
- package/src/component/language/LanguageWidget.ts +72 -0
- package/src/component/language/index.ts +1 -0
- package/src/component/layout/BaseMaskLayoutWidget.ts +12 -0
- package/src/component/layout/MaskBlock.vue +31 -0
- package/src/component/layout/block/MaskBlockWidget.ts +17 -0
- package/src/component/layout/block/index.ts +1 -0
- package/src/component/layout/container/MaskContainerWidget.ts +13 -0
- package/src/component/layout/container/index.ts +1 -0
- package/src/component/layout/content/MaskContentWidget.ts +41 -0
- package/src/component/layout/content/index.ts +1 -0
- package/src/component/layout/grid/Grid.vue +10 -0
- package/src/component/layout/grid/GridWidget.ts +62 -0
- package/src/component/layout/grid/index.ts +1 -0
- package/src/component/layout/header/MaskHeaderWidget.ts +13 -0
- package/src/component/layout/header/index.ts +1 -0
- package/src/component/layout/index.ts +9 -0
- package/src/component/layout/mask/MaskRootWidget.ts +13 -0
- package/src/component/layout/mask/index.ts +1 -0
- package/src/component/layout/sidebar/MaskSidebarWidget.ts +31 -0
- package/src/component/layout/sidebar/index.ts +1 -0
- package/src/component/layout/widget/MaskCommonWidget.ts +95 -0
- package/src/component/layout/widget/index.ts +1 -0
- package/src/component/menu/DefaultMenu.vue +252 -0
- package/src/component/menu/DefaultSubMenu.vue +68 -0
- package/src/component/menu/MenuWidget.ts +349 -0
- package/src/component/menu/index.ts +3 -0
- package/src/component/menu/style/common.scss +411 -0
- package/src/component/menu/style/index.scss +2 -0
- package/src/component/menu/style/menu-theme/index.scss +5 -0
- package/src/component/menu/style/menu-theme/theme2.scss +37 -0
- package/src/component/menu/style/menu-theme/theme3.scss +59 -0
- package/src/component/menu/style/menu-theme/theme4.scss +56 -0
- package/src/component/menu/style/menu-theme/theme5.scss +45 -0
- package/src/component/menu/style/menu-theme/theme6.scss +45 -0
- package/src/component/menu/style/mixin.scss +23 -0
- package/src/component/multi-tabs/MultiTabs.vue +475 -0
- package/src/component/multi-tabs/MultiTabsWidget.ts +450 -0
- package/src/component/multi-tabs/index.ts +2 -0
- package/src/component/multi-tabs/style/index.scss +217 -0
- package/src/component/multi-tabs/style/mixin.scss +13 -0
- package/src/component/multi-tabs/style/parameters.scss +2 -0
- package/src/component/multi-tabs/style/theme1.scss +92 -0
- package/src/component/multi-tabs/style/theme2.scss +89 -0
- package/src/component/multi-tabs/style/theme3.scss +60 -0
- package/src/component/multi-tabs/style/theme4.scss +85 -0
- package/src/component/multi-tabs/typing.ts +7 -0
- package/src/component/notification/DefaultNotification.vue +455 -0
- package/src/component/notification/NotificationWidget.ts +332 -0
- package/src/component/notification/index.ts +2 -0
- package/src/component/order-statistic/OrderStatistic.vue +12 -0
- package/src/component/order-statistic/index.ts +146 -0
- package/src/component/partner-switcher/PartnerSwitcher.vue +75 -0
- package/src/component/partner-switcher/PartnerSwitcherWidget.ts +70 -0
- package/src/component/partner-switcher/index.ts +6 -0
- package/src/component/partner-switcher/service/PartnerSwitcherService.ts +20 -0
- package/src/component/partner-switcher/service/impl/PartnerSwitcherServiceImpl.ts +48 -0
- package/src/component/partner-switcher/service/index.ts +2 -0
- package/src/component/partner-switcher/session/PartnerInfoSession.ts +32 -0
- package/src/component/partner-switcher/session/impl/DefaultPartnerInfoSession.ts +46 -0
- package/src/component/partner-switcher/session/index.ts +2 -0
- package/src/component/partner-switcher/spi/PartnerSwitcherMaskEditor.ts +24 -0
- package/src/component/partner-switcher/spi/index.ts +1 -0
- package/src/component/partner-switcher/typing/index.ts +1 -0
- package/src/component/partner-switcher/typing/partner.ts +22 -0
- package/src/component/quick-search/QuickSearch.vue +34 -0
- package/src/component/quick-search/index.ts +237 -0
- package/src/component/style/index.scss +4 -0
- package/src/component/style/layout.scss +229 -0
- package/src/component/user/DefaultUser.vue +92 -0
- package/src/component/user/UserWidget.ts +129 -0
- package/src/component/user/index.ts +1 -0
- package/src/config/DebugConfig.ts +30 -0
- package/src/config/PartnerSwitcherConfig.ts +30 -0
- package/src/config/index.ts +2 -0
- package/src/index.ts +11 -0
- package/src/service/index.ts +5 -0
- package/src/service/menu-service.ts +105 -0
- package/src/service/message-service.ts +65 -0
- package/src/service/module-service.ts +69 -0
- package/src/service/top-bar-service.ts +144 -0
- package/src/service/user-service.ts +10 -0
- package/src/shim-translate.d.ts +7 -0
- package/src/shim-vue.d.ts +6 -0
- package/src/spi/index.ts +1 -0
- package/src/spi/mask-editor.ts +102 -0
- package/src/tags/Block.vue +16 -0
- package/src/tags/Breadcrumb.vue +16 -0
- package/src/tags/Container.vue +16 -0
- package/src/tags/Content.vue +16 -0
- package/src/tags/Header.vue +16 -0
- package/src/tags/Mask.vue +16 -0
- package/src/tags/MultiTabs.vue +16 -0
- package/src/tags/Sidebar.vue +16 -0
- package/src/tags/Widget.vue +16 -0
- package/src/tags/context/context.ts +24 -0
- package/src/tags/context/index.ts +1 -0
- package/src/tags/index.ts +48 -0
- package/src/tags/mixin/MaskWidgetTagMixin.ts +79 -0
- package/src/tags/mixin/index.ts +3 -0
- package/src/tags/mixin/typing.ts +8 -0
- package/src/tags/mixin/use-mask-widget-tag.ts +172 -0
- package/src/tags/register/index.ts +1 -0
- package/src/tags/register/manager.ts +43 -0
- package/src/tags/resolve/index.ts +2 -0
- package/src/tags/resolve/internal/index.ts +2 -0
- package/src/tags/resolve/internal/typing.ts +6 -0
- package/src/tags/resolve/internal/widget-resolve.ts +57 -0
- package/src/tags/resolve/typing.ts +39 -0
- package/src/tags/resolve/widget-resolve.ts +64 -0
- package/src/template/default-mask.ts +51 -0
- package/src/template/index.ts +26 -0
- package/src/theme/index.ts +1 -0
- package/src/typing/constant.ts +3 -0
- package/src/typing/index.ts +3 -0
- package/src/typing/menu.ts +15 -0
- package/src/typing/stream-symble.ts +14 -0
- package/src/util/HomepageUtils.ts +41 -0
- package/src/util/MenuUtil.ts +18 -0
- package/src/util/index.ts +3 -0
- package/src/util/unauthorized-action.ts +98 -0
- package/src/utils.ts +716 -0
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="oio-debug-request-info">
|
|
3
|
+
<oio-group class="oio-debug-request-info" title="请求信息">
|
|
4
|
+
<oio-form>
|
|
5
|
+
<oio-row :wrap="true">
|
|
6
|
+
<oio-col class="oio-debug-basic-info" flex="1">
|
|
7
|
+
<oio-form-item label="URL">
|
|
8
|
+
<span>{{ requestInfo.url }}</span>
|
|
9
|
+
</oio-form-item>
|
|
10
|
+
<oio-form-item label="请求方式">
|
|
11
|
+
<span>{{ requestInfo.method }}</span>
|
|
12
|
+
</oio-form-item>
|
|
13
|
+
<oio-form-item label="完整请求耗时(毫秒)">
|
|
14
|
+
<span>{{ requestInfo.allDuration }}</span>
|
|
15
|
+
</oio-form-item>
|
|
16
|
+
<oio-form-item label="连接耗时(毫秒)">
|
|
17
|
+
<span>{{ requestInfo.connectDuration }}</span>
|
|
18
|
+
</oio-form-item>
|
|
19
|
+
<oio-form-item label="请求耗时(毫秒)">
|
|
20
|
+
<span>{{ requestInfo.requestDuration }}</span>
|
|
21
|
+
</oio-form-item>
|
|
22
|
+
<oio-form-item label="响应耗时(毫秒)">
|
|
23
|
+
<span>{{ requestInfo.responseDuration }}</span>
|
|
24
|
+
</oio-form-item>
|
|
25
|
+
<template v-if="isShowError">
|
|
26
|
+
<oio-form-item class="oio-debug-error-text" label="异常编码">
|
|
27
|
+
<span>{{ requestInfo.errorCode }}</span>
|
|
28
|
+
</oio-form-item>
|
|
29
|
+
<oio-form-item class="oio-debug-error-text" label="异常信息">
|
|
30
|
+
<span>{{ requestInfo.errorMessage }}</span>
|
|
31
|
+
</oio-form-item>
|
|
32
|
+
</template>
|
|
33
|
+
<template v-else>
|
|
34
|
+
<oio-form-item label=" ">
|
|
35
|
+
<span>无异常</span>
|
|
36
|
+
</oio-form-item>
|
|
37
|
+
</template>
|
|
38
|
+
</oio-col>
|
|
39
|
+
<oio-col flex="1">
|
|
40
|
+
<oio-form-item label="请求头">
|
|
41
|
+
<oio-textarea class="oio-debug-textarea" :value="requestInfo.header" />
|
|
42
|
+
</oio-form-item>
|
|
43
|
+
</oio-col>
|
|
44
|
+
</oio-row>
|
|
45
|
+
</oio-form>
|
|
46
|
+
</oio-group>
|
|
47
|
+
<oio-tabs destroyInactiveTabPane>
|
|
48
|
+
<oio-tab v-for="gqlInfo of requestInfo.gqlInfos" :tab="gqlInfo.title" :key="gqlInfo.key">
|
|
49
|
+
<oio-form>
|
|
50
|
+
<oio-form-item label="GQL">
|
|
51
|
+
<oio-textarea class="oio-debug-textarea" :value="gqlInfo.gql" />
|
|
52
|
+
</oio-form-item>
|
|
53
|
+
<oio-form-item label="Variables">
|
|
54
|
+
<oio-textarea class="oio-debug-textarea" :value="gqlInfo.variables" />
|
|
55
|
+
</oio-form-item>
|
|
56
|
+
</oio-form>
|
|
57
|
+
<oio-tabs v-if="gqlInfo.handledExceptions" class="oio-debug-tabs" destroyInactiveTabPane>
|
|
58
|
+
<oio-tab v-for="panel of gqlInfo.handledExceptions" :tab="panel.title" :key="panel.key">
|
|
59
|
+
<component v-if="panel.component" :is="panel.component" v-bind="constructPanelProps(panel)" />
|
|
60
|
+
<debug-default-info v-else v-bind="panel" />
|
|
61
|
+
</oio-tab>
|
|
62
|
+
</oio-tabs>
|
|
63
|
+
</oio-tab>
|
|
64
|
+
</oio-tabs>
|
|
65
|
+
</div>
|
|
66
|
+
</template>
|
|
67
|
+
<script lang="ts">
|
|
68
|
+
import { OioCol, OioForm, OioFormItem, OioGroup, OioRow, OioTab, OioTabs, OioTextarea } from '@oinone/kunlun-vue-ui-antd';
|
|
69
|
+
import { defineComponent, PropType } from 'vue';
|
|
70
|
+
import { DebugErrorPanel, DebugRequestInfo } from '../../typing';
|
|
71
|
+
import { useDebugRequestInfo } from '../useDebugRequestInfo';
|
|
72
|
+
import DebugDefaultInfo from './DebugDefaultInfo.vue';
|
|
73
|
+
|
|
74
|
+
export default defineComponent({
|
|
75
|
+
name: 'DebugRequestInfoPanel',
|
|
76
|
+
components: {
|
|
77
|
+
OioCol,
|
|
78
|
+
OioForm,
|
|
79
|
+
OioFormItem,
|
|
80
|
+
OioGroup,
|
|
81
|
+
OioRow,
|
|
82
|
+
OioTab,
|
|
83
|
+
OioTabs,
|
|
84
|
+
OioTextarea,
|
|
85
|
+
DebugDefaultInfo
|
|
86
|
+
},
|
|
87
|
+
inheritAttrs: false,
|
|
88
|
+
props: {
|
|
89
|
+
requestInfo: {
|
|
90
|
+
type: Object as PropType<DebugRequestInfo>
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
setup(props) {
|
|
94
|
+
const constructPanelProps = (panel: DebugErrorPanel) => {
|
|
95
|
+
const properties = { ...panel };
|
|
96
|
+
delete properties.component;
|
|
97
|
+
return properties;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
return {
|
|
101
|
+
...useDebugRequestInfo(props),
|
|
102
|
+
constructPanelProps
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
</script>
|
|
107
|
+
<style lang="scss">
|
|
108
|
+
.oio-debug-request-info {
|
|
109
|
+
display: flex;
|
|
110
|
+
flex-direction: column;
|
|
111
|
+
row-gap: 24px;
|
|
112
|
+
|
|
113
|
+
.oio-form {
|
|
114
|
+
.oio-debug-basic-info .oio-form-item.oio-form-item-horizontal > .ant-form-item-label {
|
|
115
|
+
width: 190px;
|
|
116
|
+
max-width: unset;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.oio-form-item.oio-form-item-horizontal > .ant-form-item-label {
|
|
120
|
+
width: 80px;
|
|
121
|
+
max-width: unset;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.oio-debug-stack-info-textarea {
|
|
126
|
+
min-height: 600px;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
</style>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="oio-debug-response-panel">
|
|
3
|
+
<oio-tabs class="oio-debug-tabs" destroyInactiveTabPane>
|
|
4
|
+
<oio-tab v-for="fun of requestInfo.functions" :tab="`${fun.namespace}#${fun.name}`" :key="fun.key">
|
|
5
|
+
<oio-form>
|
|
6
|
+
<oio-row :wrap="true">
|
|
7
|
+
<oio-col flex="1">
|
|
8
|
+
<oio-form-item label="请求类型">
|
|
9
|
+
<span>{{ fun.method }}</span>
|
|
10
|
+
</oio-form-item>
|
|
11
|
+
</oio-col>
|
|
12
|
+
<oio-col flex="1">
|
|
13
|
+
<oio-form-item label="命名空间">
|
|
14
|
+
<span>{{ fun.namespace }}</span>
|
|
15
|
+
</oio-form-item>
|
|
16
|
+
</oio-col>
|
|
17
|
+
<oio-col flex="1">
|
|
18
|
+
<oio-form-item label="方法名">
|
|
19
|
+
<span>{{ fun.name }}</span>
|
|
20
|
+
</oio-form-item>
|
|
21
|
+
</oio-col>
|
|
22
|
+
</oio-row>
|
|
23
|
+
<oio-form-item label="响应结果">
|
|
24
|
+
<debug-json-view :text="fun.responseData" text-class="oio-debug-textarea" />
|
|
25
|
+
</oio-form-item>
|
|
26
|
+
</oio-form>
|
|
27
|
+
</oio-tab>
|
|
28
|
+
</oio-tabs>
|
|
29
|
+
</div>
|
|
30
|
+
</template>
|
|
31
|
+
<script lang="ts">
|
|
32
|
+
import { OioCol, OioForm, OioFormItem, OioRow, OioTab, OioTabs, OioTextarea } from '@oinone/kunlun-vue-ui-antd';
|
|
33
|
+
import { defineComponent, PropType } from 'vue';
|
|
34
|
+
import { DebugRequestInfo } from '../../typing';
|
|
35
|
+
import DebugJsonView from '../components/DebugJsonView.vue';
|
|
36
|
+
|
|
37
|
+
export default defineComponent({
|
|
38
|
+
name: 'DebugResponsePanel',
|
|
39
|
+
components: {
|
|
40
|
+
OioCol,
|
|
41
|
+
OioForm,
|
|
42
|
+
OioFormItem,
|
|
43
|
+
OioRow,
|
|
44
|
+
OioTab,
|
|
45
|
+
OioTabs,
|
|
46
|
+
OioTextarea,
|
|
47
|
+
DebugJsonView
|
|
48
|
+
},
|
|
49
|
+
inheritAttrs: false,
|
|
50
|
+
props: {
|
|
51
|
+
requestInfo: {
|
|
52
|
+
type: Object as PropType<DebugRequestInfo>
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
setup(props) {
|
|
56
|
+
return {};
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
</script>
|
|
60
|
+
<style lang="scss">
|
|
61
|
+
.oio-debug-response-panel {
|
|
62
|
+
display: flex;
|
|
63
|
+
flex-direction: column;
|
|
64
|
+
row-gap: 24px;
|
|
65
|
+
}
|
|
66
|
+
</style>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="oio-debug-runtime-context-fields">这是一个自定义组件</div>
|
|
3
|
+
</template>
|
|
4
|
+
<script lang="ts">
|
|
5
|
+
import { RuntimeModelField } from '@oinone/kunlun-engine';
|
|
6
|
+
import { defineComponent, PropType } from 'vue';
|
|
7
|
+
import { DebugInfoProps } from '../../../typing';
|
|
8
|
+
|
|
9
|
+
interface SimplifyFields {
|
|
10
|
+
handle: string;
|
|
11
|
+
modelFields: RuntimeModelField[];
|
|
12
|
+
childrenContext: SimplifyFields[];
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default defineComponent({
|
|
16
|
+
name: 'DebugRuntimeFieldComponent',
|
|
17
|
+
components: {},
|
|
18
|
+
inheritAttrs: false,
|
|
19
|
+
props: {
|
|
20
|
+
...DebugInfoProps,
|
|
21
|
+
simplifyFields: {
|
|
22
|
+
type: Object as PropType<SimplifyFields>
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
setup() {
|
|
26
|
+
return {};
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
</script>
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="oio-debug-api" v-if="activeDebugTab === 'debugApi'">
|
|
3
|
+
<div class="oio-debug-api-wrapper">
|
|
4
|
+
<oio-group class="oio-debug-request" title="接口调试" help="请通过浏览器控制台复制fetch格式请求粘贴至以下输入框">
|
|
5
|
+
<oio-textarea class="oio-debug-textarea" v-model:value="requestData" />
|
|
6
|
+
<template #titleToolbar>
|
|
7
|
+
<div class="oio-debug-error-text" v-if="requestHint">{{ requestHint }}</div>
|
|
8
|
+
<div class="oio-debug-level">
|
|
9
|
+
<oio-tooltip-help>
|
|
10
|
+
<template #title>
|
|
11
|
+
<div class="oio-debug-level-label-help">
|
|
12
|
+
<span>日志级别</span>
|
|
13
|
+
<ul>
|
|
14
|
+
<li>默认调试: 1</li>
|
|
15
|
+
<li>权限调试: 2</li>
|
|
16
|
+
<li>Debug级别日志调试: 3</li>
|
|
17
|
+
<li>Trace级别日志调试: 4</li>
|
|
18
|
+
</ul>
|
|
19
|
+
</div>
|
|
20
|
+
</template>
|
|
21
|
+
</oio-tooltip-help>
|
|
22
|
+
<div class="oio-debug-level-label">日志级别</div>
|
|
23
|
+
<oio-input-number v-model:value="logLevel" min="1" @blur="onLogLevelBlur" />
|
|
24
|
+
</div>
|
|
25
|
+
<oio-button type="primary" async @click="onRequest">发起请求</oio-button>
|
|
26
|
+
<oio-button type="primary" @click="onReset">重置</oio-button>
|
|
27
|
+
</template>
|
|
28
|
+
</oio-group>
|
|
29
|
+
<oio-group class="oio-debug-response" title="接口响应结果">
|
|
30
|
+
<debug-json-view text-class="oio-debug-textarea" :text="responseData" />
|
|
31
|
+
<template #titleToolbar>
|
|
32
|
+
<oio-button v-if="isShowResponseInfo" type="primary" @click="onDownload">下载接口调试数据</oio-button>
|
|
33
|
+
</template>
|
|
34
|
+
</oio-group>
|
|
35
|
+
</div>
|
|
36
|
+
<debug-request-info-panel v-if="isShowResponseInfo" :request-info="requestInfo" />
|
|
37
|
+
<debug-response-panel v-if="isShowResponseInfo" :request-info="requestInfo" />
|
|
38
|
+
</div>
|
|
39
|
+
</template>
|
|
40
|
+
<script lang="ts">
|
|
41
|
+
import {
|
|
42
|
+
OioButton,
|
|
43
|
+
OioGroup,
|
|
44
|
+
OioInputNumber,
|
|
45
|
+
OioTextarea,
|
|
46
|
+
OioTooltipHelp,
|
|
47
|
+
uniqueKeyGenerator
|
|
48
|
+
} from '@oinone/kunlun-vue-ui-antd';
|
|
49
|
+
import { defineComponent, PropType, Ref, ref } from 'vue';
|
|
50
|
+
import { DebugFetchRequest, DebugFetchResponse, DebugRequestInfo } from '../../typing';
|
|
51
|
+
import DebugJsonView from '../components/DebugJsonView.vue';
|
|
52
|
+
import DebugRequestInfoPanel from '../components/DebugRequestInfoPanel.vue';
|
|
53
|
+
import DebugResponsePanel from '../components/DebugResponsePanel.vue';
|
|
54
|
+
import { DebugUtils } from '../debug-utils';
|
|
55
|
+
import { useDebugRequestInfo } from '../useDebugRequestInfo';
|
|
56
|
+
|
|
57
|
+
function setData(val: Ref, newValue, defaultValue = '') {
|
|
58
|
+
if (newValue === undefined) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
if (newValue === null) {
|
|
62
|
+
val.value = defaultValue;
|
|
63
|
+
} else {
|
|
64
|
+
val.value = newValue;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export default defineComponent({
|
|
69
|
+
name: 'DebugApi',
|
|
70
|
+
components: {
|
|
71
|
+
DebugResponsePanel,
|
|
72
|
+
DebugRequestInfoPanel,
|
|
73
|
+
OioButton,
|
|
74
|
+
OioGroup,
|
|
75
|
+
OioInputNumber,
|
|
76
|
+
OioTextarea,
|
|
77
|
+
OioTooltipHelp,
|
|
78
|
+
DebugJsonView
|
|
79
|
+
},
|
|
80
|
+
inheritAttrs: false,
|
|
81
|
+
props: {
|
|
82
|
+
activeDebugTab: {
|
|
83
|
+
type: String
|
|
84
|
+
},
|
|
85
|
+
requestInfo: {
|
|
86
|
+
type: Object as PropType<DebugRequestInfo>
|
|
87
|
+
},
|
|
88
|
+
responseData: {
|
|
89
|
+
type: String
|
|
90
|
+
},
|
|
91
|
+
resolveRequestData: {
|
|
92
|
+
type: Function as PropType<(data: string) => DebugFetchRequest | undefined>
|
|
93
|
+
},
|
|
94
|
+
request: {
|
|
95
|
+
type: Function as PropType<(fetchObject: DebugFetchRequest) => DebugFetchResponse | undefined>
|
|
96
|
+
},
|
|
97
|
+
resetInfo: {
|
|
98
|
+
type: Function
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
setup(props) {
|
|
102
|
+
const logLevel = ref(1);
|
|
103
|
+
const requestData = ref('');
|
|
104
|
+
const requestHint = ref('');
|
|
105
|
+
|
|
106
|
+
const { isShowResponseInfo, isShowError } = useDebugRequestInfo(props);
|
|
107
|
+
|
|
108
|
+
const getDownloadResponseData = () => {
|
|
109
|
+
const requestInfo = props.requestInfo;
|
|
110
|
+
if (!isShowResponseInfo.value || !props.responseData || !requestInfo) {
|
|
111
|
+
return '';
|
|
112
|
+
}
|
|
113
|
+
try {
|
|
114
|
+
return DebugUtils.toJSONString(DebugUtils.generatorDownloadRequestInfo(requestInfo, props.responseData));
|
|
115
|
+
} catch (e) {
|
|
116
|
+
return DebugUtils.toJSONString({
|
|
117
|
+
...props.requestInfo,
|
|
118
|
+
responseData: props.responseData
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
const getDownloadFilename = () => {
|
|
124
|
+
if (!isShowResponseInfo.value) {
|
|
125
|
+
return '';
|
|
126
|
+
}
|
|
127
|
+
return `oinone_debug_${uniqueKeyGenerator()}.json`;
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
const clearLastedRequestInfo = () => {
|
|
131
|
+
requestHint.value = '';
|
|
132
|
+
props.resetInfo?.();
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
const onLogLevelBlur = () => {
|
|
136
|
+
if (!logLevel.value || logLevel.value <= 1) {
|
|
137
|
+
logLevel.value = 1;
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
const onRequest = async () => {
|
|
142
|
+
clearLastedRequestInfo();
|
|
143
|
+
const body = requestData.value;
|
|
144
|
+
if (!body) {
|
|
145
|
+
requestHint.value = '请输入请求内容';
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
const fetchObject = await props.resolveRequestData?.(body);
|
|
149
|
+
if (!fetchObject) {
|
|
150
|
+
requestHint.value = '请求内容格式无法识别';
|
|
151
|
+
return;
|
|
152
|
+
}
|
|
153
|
+
const fetchResponse = await props.request?.({
|
|
154
|
+
...fetchObject,
|
|
155
|
+
level: logLevel.value || 1
|
|
156
|
+
});
|
|
157
|
+
if (!fetchResponse) {
|
|
158
|
+
requestHint.value = '无法正确获取响应结果';
|
|
159
|
+
return;
|
|
160
|
+
}
|
|
161
|
+
const { hint } = fetchResponse;
|
|
162
|
+
|
|
163
|
+
setData(requestHint, hint);
|
|
164
|
+
DebugUtils.getDebugStorage().responseData = props.responseData;
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
const onReset = () => {
|
|
168
|
+
logLevel.value = 1;
|
|
169
|
+
requestData.value = '';
|
|
170
|
+
requestHint.value = '';
|
|
171
|
+
props.resetInfo?.();
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
const onDownload = () => {
|
|
175
|
+
DebugUtils.downloadJSON(getDownloadResponseData(), getDownloadFilename());
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
return {
|
|
179
|
+
logLevel,
|
|
180
|
+
requestData,
|
|
181
|
+
requestHint,
|
|
182
|
+
|
|
183
|
+
isShowResponseInfo,
|
|
184
|
+
isShowError,
|
|
185
|
+
|
|
186
|
+
onLogLevelBlur,
|
|
187
|
+
onRequest,
|
|
188
|
+
onReset,
|
|
189
|
+
onDownload
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
});
|
|
193
|
+
</script>
|
|
194
|
+
<style lang="scss">
|
|
195
|
+
.oio-debug-api {
|
|
196
|
+
display: flex;
|
|
197
|
+
flex-direction: column;
|
|
198
|
+
row-gap: 24px;
|
|
199
|
+
|
|
200
|
+
.oio-debug-api-wrapper {
|
|
201
|
+
display: flex;
|
|
202
|
+
column-gap: 16px;
|
|
203
|
+
align-items: flex-start;
|
|
204
|
+
|
|
205
|
+
& > div {
|
|
206
|
+
flex: 1;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.oio-debug-response .oio-group-title-wrapper {
|
|
210
|
+
height: 48px;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.oio-debug-level {
|
|
215
|
+
width: 140px;
|
|
216
|
+
display: flex;
|
|
217
|
+
align-items: center;
|
|
218
|
+
column-gap: 8px;
|
|
219
|
+
|
|
220
|
+
&-label {
|
|
221
|
+
white-space: nowrap;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
</style>
|