@gct-paas/core 0.1.4-dev.7 → 0.1.4-dev.9
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/dist/index.esm.min.mjs +6520 -18715
- package/dist/index.min.cjs +386 -2
- package/dist/index.system.min.js +386 -2
- package/es/constants/core.mjs +0 -1
- package/es/constants/editor-register/editor-register.mjs +0 -1
- package/es/constants/editor-type/editor-type.d.ts +65 -1
- package/es/constants/editor-type/editor-type.mjs +14 -1
- package/es/constants/expression-type/BuiltOperators.d.ts +20 -0
- package/es/constants/expression-type/BuiltOperators.mjs +148 -0
- package/es/constants/expression-type/FunctionKeys.d.ts +1 -0
- package/es/constants/expression-type/FunctionKeys.mjs +81 -0
- package/es/constants/expression-type/editor.d.ts +8 -0
- package/es/constants/expression-type/editor.mjs +4 -0
- package/es/constants/expression-type/function.d.ts +7 -0
- package/es/constants/expression-type/function.mjs +875 -0
- package/es/constants/expression-type/index.d.ts +42 -0
- package/es/constants/expression-type/index.mjs +120 -0
- package/es/constants/expression-type/modeCfg.d.ts +30 -0
- package/es/constants/expression-type/modeCfg.mjs +268 -0
- package/es/constants/expression-type/variable.d.ts +12 -0
- package/es/constants/expression-type/variable.mjs +42 -0
- package/es/constants/form-container-type/form-container-type.mjs +0 -1
- package/es/constants/index.d.ts +5 -0
- package/es/constants/index.mjs +6 -6
- package/es/controller/edit-form/edit-form.controller.mjs +0 -1
- package/es/controller/editor/color-editor.controller.mjs +0 -1
- package/es/controller/editor/length-unit-editor.controller.mjs +0 -1
- package/es/controller/editor-item/editor-item.controller.mjs +0 -1
- package/es/controller/form/form.controller.mjs +5 -4
- package/es/controller/form-collapse/form-collapse.controller.mjs +4 -3
- package/es/controller/form-collapse-pane/form-collapse-pane.controller.mjs +4 -3
- package/es/controller/form-edit-item/form-edit-item.controller.d.ts +1 -0
- package/es/controller/form-edit-item/form-edit-item.controller.mjs +6 -2
- package/es/controller/form-group/form-group.controller.mjs +4 -3
- package/es/controller/form-item/form-item.controller.d.ts +1 -0
- package/es/controller/form-item/form-item.controller.mjs +7 -3
- package/es/controller/form-item-basic/form-item-basic.controller.mjs +3 -2
- package/es/controller/form-item-hidden/form-item-hidden.controller.mjs +0 -1
- package/es/controller/form-tab/form-tab.controller.mjs +4 -3
- package/es/controller/form-tab-pane/form-tab-pane.controller.mjs +4 -3
- package/es/controller/gct-form/gct-form.controller.mjs +5 -4
- package/es/create-app-vue.mjs +3 -9
- package/es/enums/app-designer/index.d.ts +13 -1
- package/es/enums/app-designer/index.mjs +8 -2
- package/es/enums/appEnum.d.ts +22 -66
- package/es/enums/appEnum.mjs +24 -15
- package/es/enums/appStateEnum.mjs +0 -1
- package/es/enums/authActionEnum.mjs +0 -1
- package/es/enums/breakpointEnum.mjs +0 -1
- package/es/enums/cacheEnum.mjs +0 -1
- package/es/enums/designEnum.d.ts +2 -2
- package/es/enums/designEnum.mjs +31 -32
- package/es/enums/developer-center/index.d.ts +1 -0
- package/es/enums/developer-center/integration.d.ts +4 -0
- package/es/enums/developer-center/integration.mjs +7 -0
- package/es/enums/exceptionEnum.mjs +0 -1
- package/es/enums/expressionEnum.d.ts +130 -0
- package/es/enums/expressionEnum.mjs +75 -0
- package/es/enums/globalEnum.d.ts +38 -0
- package/es/enums/globalEnum.mjs +25 -0
- package/es/enums/httpEnum.mjs +0 -1
- package/es/enums/index.d.ts +19 -0
- package/es/enums/index.mjs +13 -16
- package/es/enums/menuEnum.mjs +0 -1
- package/es/enums/page-designer/designer.d.ts +23 -3
- package/es/enums/page-designer/designer.mjs +90 -6
- package/es/enums/page-designer/panel.d.ts +78 -7
- package/es/enums/page-designer/panel.mjs +22 -4
- package/es/enums/page-designer/toolkit.mjs +0 -1
- package/es/enums/page-designer/widget.d.ts +2 -1
- package/es/enums/page-designer/widget.mjs +3 -3
- package/es/enums/pageEnum.mjs +0 -1
- package/es/enums/plugin-enum.mjs +0 -1
- package/es/enums/processEnum.d.ts +54 -0
- package/es/enums/processEnum.mjs +36 -2
- package/es/enums/roleEnum.mjs +0 -1
- package/es/enums/sizeEnum.mjs +0 -1
- package/es/global/gct/gct.d.ts +11 -28
- package/es/global/gct/gct.mjs +29 -32
- package/es/hooks/index.d.ts +2 -1
- package/es/hooks/use-app-inst/use-app-inst.d.ts +8 -0
- package/es/hooks/use-app-inst/use-app-inst.mjs +8 -0
- package/es/hooks/use-form/use-form.mjs +0 -1
- package/es/hooks/use-gct-form-value/use-gct-form-value.d.ts +1 -1
- package/es/hooks/use-gct-form-value/use-gct-form-value.mjs +0 -4
- package/es/hooks/use-modal/use-modal.mjs +0 -1
- package/es/hooks/use-overlay-scrollbars/use-overlay-scrollbars.d.ts +11 -0
- package/es/hooks/use-sub-app-utils/use-sub-app-utils.d.ts +31 -0
- package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +30 -0
- package/es/hooks/useCopyToClipboard.mjs +0 -1
- package/es/index.d.ts +6 -8
- package/es/index.mjs +98 -64
- package/es/interface/controller/form-edit-item/form-edit-item.controller.d.ts +5 -0
- package/es/interface/controller/index.d.ts +0 -1
- package/es/interface/form/i-editor/i-editor-basic.d.ts +2 -2
- package/es/interface/form/i-editor/i-model-field-select-editor.d.ts +18 -0
- package/es/interface/form/i-form/i-form-collapse-pane.d.ts +4 -0
- package/es/interface/form/i-form/i-form-item-basic.d.ts +1 -1
- package/es/interface/form/i-form/i-form-tab-pane.d.ts +4 -0
- package/es/interface/form/index.d.ts +1 -0
- package/es/interface/i-app-context/i-app-context.d.ts +34 -0
- package/es/interface/i-field-code-chain/i-field-code-chain.d.ts +17 -0
- package/es/interface/i-global-var/i-global-var.d.ts +15 -0
- package/es/interface/i-mobile-home-menu-item/i-mobile-home-menu-item.d.ts +94 -0
- package/es/interface/i-pinia-action/i-global-actions.d.ts +8 -20
- package/es/interface/i-pinia-getter/i-global-getters.d.ts +1 -1
- package/es/interface/i-pinia-state/i-global-state.d.ts +7 -14
- package/es/interface/index.d.ts +5 -5
- package/es/interface/open-util/i-message-util/i-message-util.d.ts +54 -0
- package/es/interface/{i-modal → open-util/i-modal}/i-modal.d.ts +9 -10
- package/es/interface/{i-modal-data → open-util/i-modal-data}/i-modal-data.d.ts +6 -0
- package/es/interface/open-util/i-modal-options/i-modal-options.d.ts +12 -0
- package/es/interface/open-util/i-open-window-options/i-open-window-options.d.ts +59 -0
- package/es/interface/open-util/i-overlay-container/i-overlay-container.d.ts +36 -0
- package/es/interface/open-util/i-overlay-controller/i-overlay-controller.d.ts +36 -0
- package/es/interface/open-util/index.d.ts +7 -0
- package/es/interface/state/index.d.ts +0 -1
- package/es/locale/index.mjs +2 -2
- package/es/modules/env-manager/env-manager.const.mjs +0 -1
- package/es/modules/env-manager/env-manager.interface.mjs +0 -1
- package/es/modules/env-manager/env-manager.mjs +7 -8
- package/es/modules/error-handler/error-handler.const.mjs +1 -30
- package/es/modules/error-handler/error-strategy.mjs +0 -1
- package/es/modules/error-handler/index.mjs +0 -1
- package/es/modules/platform-config/constants/index.d.ts +7 -0
- package/es/modules/platform-config/constants/login.const.d.ts +15 -0
- package/es/modules/platform-config/constants/login.const.mjs +50 -0
- package/es/modules/platform-config/constants/org.const.d.ts +9 -0
- package/es/modules/platform-config/constants/org.const.mjs +54 -0
- package/es/modules/platform-config/constants/theme.const.d.ts +9 -0
- package/es/modules/platform-config/constants/theme.const.mjs +5 -0
- package/es/modules/platform-config/constants/watermark.const.d.ts +16 -0
- package/es/modules/platform-config/constants/watermark.const.mjs +14 -0
- package/es/modules/platform-config/enums/deploy.enum.d.ts +10 -0
- package/es/modules/platform-config/enums/deploy.enum.mjs +7 -0
- package/es/modules/platform-config/enums/index.d.ts +6 -0
- package/es/modules/platform-config/{constants.d.ts → enums/login.enum.d.ts} +3 -7
- package/es/modules/platform-config/enums/login.enum.mjs +16 -0
- package/es/modules/platform-config/enums/platform.enum.d.ts +27 -0
- package/es/modules/platform-config/enums/platform.enum.mjs +26 -0
- package/es/modules/platform-config/index.d.ts +6 -17
- package/es/modules/platform-config/interfaces/global-setting.interface.d.ts +7 -0
- package/es/modules/platform-config/interfaces/index.d.ts +7 -0
- package/es/modules/platform-config/interfaces/login-config.interface.d.ts +17 -0
- package/es/modules/platform-config/interfaces/platform-map.interface.d.ts +8 -0
- package/es/modules/platform-config/interfaces/theme-setting.interface.d.ts +30 -0
- package/es/modules/platform-config/store.d.ts +221 -0
- package/es/modules/platform-config/store.mjs +78 -0
- package/es/modules/platform-config/useBasicSetting.d.ts +6 -2
- package/es/modules/platform-config/useBasicSetting.mjs +39 -0
- package/es/modules/platform-config/useDeploySetting.d.ts +9 -4
- package/es/modules/platform-config/useDeploySetting.mjs +27 -0
- package/es/modules/platform-config/useLoginSetting.d.ts +4 -14
- package/es/modules/platform-config/useLoginSetting.mjs +177 -0
- package/es/modules/platform-config/useOrgSetting.d.ts +5 -1
- package/es/modules/platform-config/useOrgSetting.mjs +66 -0
- package/es/modules/platform-config/useProjectSetting.d.ts +12 -0
- package/es/modules/platform-config/useProjectSetting.mjs +11 -0
- package/es/modules/platform-config/useSecuritySetting.d.ts +5 -1
- package/es/modules/platform-config/useSecuritySetting.mjs +60 -0
- package/es/modules/platform-config/useThemeSetting.d.ts +6 -3
- package/es/modules/platform-config/useThemeSetting.mjs +64 -0
- package/es/modules/platform-config/useWatermarkSetting.d.ts +4 -1
- package/es/modules/platform-config/useWatermarkSetting.mjs +26 -0
- package/es/modules/user-stores/index.d.ts +3 -0
- package/es/modules/user-stores/store/permission.store.d.ts +21 -0
- package/es/modules/user-stores/store/permission.store.mjs +38 -0
- package/es/modules/user-stores/store/tenant.store.d.ts +9 -0
- package/es/modules/user-stores/store/tenant.store.mjs +24 -0
- package/es/modules/user-stores/store/user.store.d.ts +154 -0
- package/es/modules/user-stores/store/user.store.mjs +107 -0
- package/es/modules/user-stores/types/permission.d.ts +1 -0
- package/es/modules/user-stores/types/tenant.d.ts +1 -0
- package/es/modules/user-stores/types/user.d.ts +14 -0
- package/es/register/editor-register/editor-register.d.ts +5 -13
- package/es/register/editor-register/editor-register.mjs +8 -17
- package/es/register/form-item-register/form-item-register.d.ts +4 -15
- package/es/register/form-item-register/form-item-register.mjs +7 -17
- package/es/register/index.d.ts +12 -2
- package/es/router/index.mjs +0 -1
- package/es/setup-app.d.ts +8 -0
- package/es/setup-app.mjs +30 -0
- package/es/state/form/form.state.mjs +0 -1
- package/es/state/form-collapse/form-collapse.state.mjs +0 -1
- package/es/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -1
- package/es/state/form-edit-item/form-edit-item.state.mjs +0 -1
- package/es/state/form-group/form-group.state.mjs +0 -1
- package/es/state/form-item/form-item.state.mjs +0 -1
- package/es/state/form-item-basic/form-item-basic.state.mjs +0 -1
- package/es/state/form-tab/form-tab.state.mjs +0 -1
- package/es/state/form-tab-pane/form-tab-pane.state.mjs +0 -1
- package/es/state/global-pinia-state/global-pinia-state.d.ts +8 -25
- package/es/state/global-pinia-state/global-pinia-state.mjs +30 -16
- package/es/store/global-store.d.ts +1 -0
- package/es/store/global-store.mjs +40 -37
- package/es/store/index.d.ts +2 -3
- package/es/store/index.mjs +0 -1
- package/es/types/index.d.ts +18 -1
- package/es/utils/axios/interceptors.mjs +2 -23
- package/es/utils/cache-adapter/cache-adapter.d.ts +2 -0
- package/es/utils/cache-adapter/cache-adapter.mjs +59 -0
- package/es/utils/deviceFingerprint.d.ts +17 -0
- package/es/utils/deviceFingerprint.mjs +73 -0
- package/es/utils/dictionary/dictionary.mjs +0 -1
- package/es/utils/i18n/index.d.ts +2 -1
- package/es/utils/i18n/index.mjs +3 -4
- package/es/utils/index.d.ts +17 -3
- package/es/utils/linked-list/linked-list.d.ts +72 -0
- package/es/utils/linked-list/linked-list.mjs +119 -0
- package/es/utils/linked-node/linked-node.d.ts +31 -0
- package/es/utils/linked-node/linked-node.mjs +32 -0
- package/es/utils/lowcode/utils.d.ts +1 -0
- package/es/utils/lowcode/utils.mjs +20 -0
- package/es/utils/lowcode/validate.d.ts +13 -0
- package/es/utils/lowcode/validate.mjs +29 -0
- package/es/utils/mitt/mitt.d.ts +1 -0
- package/es/utils/mitt/mitt.mjs +5 -0
- package/es/utils/model-loader/model-loader.d.ts +118 -0
- package/es/utils/model-loader/model-loader.mjs +326 -0
- package/es/utils/namespace/namespace.d.ts +8 -0
- package/es/utils/namespace/namespace.mjs +4 -2
- package/es/utils/openUtil/index.d.ts +2 -0
- package/es/utils/openUtil/modal/modal.d.ts +61 -0
- package/es/utils/openUtil/modal/modal.mjs +80 -0
- package/es/utils/openUtil/overlay-container/overlay-container.d.ts +100 -0
- package/es/utils/openUtil/overlay-container/overlay-container.mjs +139 -0
- package/es/utils/plugin-static-resource/plugin-static-resource.mjs +0 -1
- package/es/utils/props/gct-form-item/gct-form-item.props.d.ts +63 -0
- package/es/utils/props/gct-form-item/gct-form-item.props.mjs +66 -0
- package/es/utils/props/index.d.ts +1 -0
- package/es/utils/style/index.d.ts +16 -0
- package/es/utils/style/index.mjs +141 -0
- package/es/utils/tools/tools.d.ts +13 -10
- package/es/utils/tools/tools.mjs +23 -11
- package/es/utils/treeHelper/treeHelper.d.ts +124 -0
- package/es/utils/treeHelper/treeHelper.mjs +234 -0
- package/es/utils/util.d.ts +39 -0
- package/es/utils/util.mjs +40 -0
- package/es/utils/uuid/uuid.d.ts +3 -0
- package/es/utils/uuid/uuid.mjs +48 -0
- package/es/utils/value-helper/value-helper.d.ts +49 -0
- package/es/utils/value-helper/value-helper.mjs +111 -0
- package/es/utils/width-install/width-install.mjs +4 -2
- package/package.json +13 -16
- package/es/controller/index.mjs +0 -17
- package/es/enums/page-designer/index.mjs +0 -6
- package/es/global/index.mjs +0 -3
- package/es/hooks/index.mjs +0 -7
- package/es/hooks/use-namespace/use-namespace.d.ts +0 -9
- package/es/hooks/use-namespace/use-namespace.mjs +0 -9
- package/es/interface/controller/i-designer-controller.d.ts +0 -116
- package/es/interface/hooks/i-designer-hooks.d.ts +0 -26
- package/es/interface/hooks/index.d.ts +0 -1
- package/es/interface/i-message-util/i-message-util.d.ts +0 -78
- package/es/interface/index.mjs +0 -1
- package/es/interface/low-code-types/index.d.ts +0 -4
- package/es/interface/low-code-types/modal-types.d.ts +0 -67
- package/es/interface/low-code-types/model/index.d.ts +0 -5338
- package/es/interface/low-code-types/schema/index.d.ts +0 -12
- package/es/interface/low-code-types/widget-basic-types.d.ts +0 -667
- package/es/interface/state/i-designer-state.d.ts +0 -27
- package/es/modules/env-manager/index.mjs +0 -5
- package/es/modules/platform-config/index.mjs +0 -17
- package/es/modules/platform-config/types.d.ts +0 -67
- package/es/provider/i-designer-provider/i-designer-provider.d.ts +0 -102
- package/es/provider/index.d.ts +0 -1
- package/es/provider/index.mjs +0 -1
- package/es/register/designer-register/designer-register.d.ts +0 -53
- package/es/register/designer-register/designer-register.mjs +0 -68
- package/es/register/index.mjs +0 -6
- package/es/register/render-register/render-register.d.ts +0 -59
- package/es/register/render-register/render-register.mjs +0 -64
- package/es/state/index.mjs +0 -12
- package/es/utils/index.mjs +0 -10
- package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +0 -96
- package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +0 -260
package/dist/index.system.min.js
CHANGED
|
@@ -1,2 +1,386 @@
|
|
|
1
|
-
System.register(["pinia","lodash-es","axios","vue-i18n","vue-router","vue","qs"],(function(h,zh){"use strict";var Te,Re,Se,Z,X,ne,ge,Ee,Pe,Oe,Me,Ce,te,_e,fe,ae,ye,se,Be,Ue;return{setters:[T=>{Te=T.defineStore,Re=T.createPinia,Se=T.setActivePinia},T=>{Z=T.mergeWith,X=T.cloneDeep,ne=T.unionWith,ge=T.isEqual},T=>{Ee=T.AxiosHeaders,Pe=T.default},T=>{Oe=T.createI18n},T=>{Me=T.createRouter,Ce=T.createWebHashHistory},T=>{te=T.reactive,_e=T.onUnmounted,fe=T.inject,ae=T.computed,ye=T.getCurrentInstance,se=T.ref,Be=T.watch},T=>{Ue=T.default}],execute:(function(){h({copyTextToClipboard:ft,createAppVue:$h,deepMerge:oh,default:ct,getPathQuery:tt,getTenant:ah,getTimezone:at,getToken:Ye,install:ct,interceptors:st,isDef:gt,setTenant:sh,setToken:et,t:xs,useCopyToClipboard:Gh,useEditFormController:vh,useForm:nt,useFormController:Th,useFormItemController:Rh,useGctFormValue:wh,useGctFormValueByText:kh,useModal:xh,useNamespace:Fh,widthEditorInstall:rh});const T=h("SIDE_BAR_MINI_WIDTH",48),Jh=h("SIDE_BAR_SHOW_TIT_MINI_WIDTH",80);var Qt=h("ContentEnum",(e=>(e.FULL="full",e.FIXED="fixed",e))(Qt||{})),It=h("ThemeEnum",(e=>(e.DARK="dark",e.LIGHT="light",e))(It||{})),Lt=h("SettingButtonPositionEnum",(e=>(e.AUTO="auto",e.HEADER="header",e.FIXED="fixed",e))(Lt||{})),At=h("SessionTimeoutProcessingEnum",(e=>(e[e.ROUTE_JUMP=0]="ROUTE_JUMP",e[e.PAGE_COVERAGE=1]="PAGE_COVERAGE",e))(At||{})),bt=h("PermissionModeEnum",(e=>(e.ROLE="ROLE",e.BACK="BACK",e.ROUTE_MAPPING="ROUTE_MAPPING",e.PLATFORM_ROLE="PLATFORM_ROLE",e))(bt||{})),Nt=h("RouterTransitionEnum",(e=>(e.ZOOM_FADE="zoom-fade",e.ZOOM_OUT="zoom-out",e.FADE_SIDE="fade-slide",e.FADE="fade",e.FADE_BOTTOM="fade-bottom",e.FADE_SCALE="fade-scale",e))(Nt||{})),j=h("ProjectName",(e=>(e.PORTAL="portal",e.BACKEND_MANAGEMENT="backend-management",e.DEVELOPER_CENTER="developer-center",e.TENANT_CENTER="tenant-center",e.APP_DESIGNER="app-designer",e.PAGE_DESIGNER="page-designer",e.WEB_RENDER="web-render",e.MOBILE_RENDER="mobile-render",e))(j||{})),vt=h("FIELD_TYPE_CATEGORY",(e=>(e.ALL="field_type_all",e.BASIC="field_type_basic",e.LOGIC="field_type_logic",e.TRACE="field_type_trace",e))(vt||{})),I=h("FIELD_TYPE",(e=>(e.PRIMARY_KEY="primary_key",e.ASSOCIATED_PRIMARY_KEY="associated_primary_key",e.TEXT="text",e.LONG_TEXT="long_text",e.INTEGER="integer",e.LONG="long",e.DOUBLE="double",e.DECIMAL="decimal",e.BOOLEAN="boolean",e.DATE="date",e.TIME="time",e.DATE_TIME="date_time",e.IMAGE="image",e.ATTACHMENT="attachment",e.SERIAL="serial_number",e.MASTERSLAVE="master_slave",e.USER="user",e.USER_MULTI="user_multi",e.ORG="org",e.ORG_MULTI="org_multi",e.ENUM="enum",e.ENUM_MULTI="enum_multi",e.OPTION="option",e.OPTION_MULTI="option_multi",e.REF="ref",e.REF_MULTI="ref_multi",e.RDO_REF="rdo_ref",e.EXPRESSION="expression",e.EXPRESSION_CONDITION="expression_condition",e.AGG="agg",e.ESOP="esop",e.TRANSACTION="transaction",e.LABEL_TEMPLATE="label_template",e.LABEL_TEMPLATE_REF="label_template_ref",e.DOCUMENT_TEMPLATE="document_template",e.SERIALRULE="serial_number_rule",e.PRINTER="printer",e.MESSAGE_TMPL="message_tmpl",e.RANGE_USER="range_user",e.SIGNATURE="electronic_signature",e.ONLINE_FORM_TEMPLATE="online_form_tmpl",e.E_DHR_TEMPLATE="edhr_tmpl",e.ONLINE_FORM="online_form",e.DATA_TABLE_FORMULA="data_table_formula",e.READONLYCMP="readonlycmp",e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e.Biz_Process="biz_process",e))(I||{})),Tt=h("FIELD_TYPE_BASIC",(e=>(e.TEXT="text",e.LONG_TEXT="long_text",e.INTEGER="integer",e.LONG="long",e.DOUBLE="double",e.DECIMAL="decimal",e.BOOLEAN="boolean",e.DATE="date",e.TIME="time",e.DATE_TIME="date_time",e))(Tt||{})),Rt=h("FIELD_TYPE_LOGIC",(e=>(e.IMAGE="image",e.ATTACHMENT="attachment",e.SERIAL="serial_number",e.MASTERSLAVE="master_slave",e.USER="user",e.USER_MULTI="user_multi",e.ORG="org",e.ORG_MULTI="org_multi",e.ENUM="enum",e.ENUM_MULTI="enum_multi",e.OPTION="option",e.OPTION_MULTI="option_multi",e.REF="ref",e.REF_MULTI="ref_multi",e.RDO_REF="rdo_ref",e.EXPRESSION="expression",e.EXPRESSION_CONDITION="expression_condition",e.AGG="agg",e.ESOP="esop",e.TRANSACTION="transaction",e.LABEL_TEMPLATE="label_template",e.LABEL_TEMPLATE_REF="label_template_ref",e.DOCUMENT_TEMPLATE="document_template",e.SERIALRULE="serial_number_rule",e.PRINTER="printer",e.MESSAGE_TMPL="message_tmpl",e.RANGE_USER="range_user",e.SIGNATURE="electronic_signature",e.ONLINE_FORM_TEMPLATE="online_form_tmpl",e.E_DHR_TEMPLATE="edhr_tmpl",e.ONLINE_FORM="online_form",e.Biz_Process="biz_process",e))(Rt||{})),St=h("FIELD_TYPE_TRACE",(e=>(e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e))(St||{}));const qh=h("FieldTypeToJs",{attachment:"string",boolean:"boolean",date:"string",date_time:"string",decimal:"number",double:"number",enum:"string",enum_multi:"string",image:"string",integer:"number",long:"number",long_text:"string",master_slave:"string",org:"string",org_multi:"string",rdo_ref:"string",ref:"string",ref_multi:"string",serial_number:"string",text:"string",time:"string",user:"string",user_multi:"string",expression:"string",expression_condition:"string",agg:"number",esop:"string",serial_number_rule:"string",label_template:"string",label_template_ref:"string",document_template:"string",transaction:"string",printer:"string",message_tmpl:"string",range_user:"string",primary_key:"string",associated_primary_key:"string",readonlycmp:"string",material_no:"string",product:"string",device:"string",option:"string",option_multi:"string",electronic_signature:"string",online_form_tmpl:"string",edhr_tmpl:"string",online_form:"string",data_table_formula:"string",biz_process:"string"});var Et=h("CreateType",(e=>(e.SYSTEM="SYSTEM",e.USER_DEFINED="USER_DEFINED",e.BUILTIN="BUILTIN",e.CUSTOM="CUSTOM",e.PROCESS="PROCESS",e))(Et||{})),Pt=h("MenuType",(e=>(e.CATALOG="CATALOG",e.STANDARD="STANDARD",e.LINK="LINK",e))(Pt||{})),Ot=h("OpenMode",(e=>(e.PRESENT="PRESENT",e.IFRAME="IFRAME",e.NEW="NEW",e))(Ot||{})),Mt=h("MaterialEnum",(e=>(e.MaterialFormField="formField",e.MaterialTableField="tableField",e.MaterialEmbedTableField="embedTableField",e.MaterialSubTableField="subTableField",e.MaterialSubTableModalField="subTableModalField",e.cardListFormField="cardList",e.MaterialTableSelectField="tableSelectField",e.DescriptionsFormField="descriptions",e))(Mt||{}));const Zh=h("FieldIconMap",{primary_key:"icon-id",text:"icon-wenben1",long_text:"icon-changwenben",integer:"icon-zhengshu",long:"icon-changzhengshu",decimal:"icon-jingduxiaoshu1",double:"icon-xiaoshu",boolean:"icon-buer",date:"icon-riqi1",time:"icon-shijian1",date_time:"icon-riqishijian",user:"icon-renyuanguanlian",org:"icon-bumenguanlian",user_multi:"icon-renyuanduoxuan",org_multi:"icon-bumenduoxuan",image:"icon-tupian1",attachment:"icon-fujian1",serial_number:"icon-xuliehao",master_slave:"icon-zhuziguanlian",enum:"icon-meijuguanlian",ref:"icon-moxingguanlian",rdo_ref:"icon-RDOmoxingguanlian",enum_multi:"icon-meijuguanlianduoxuan",option:"icon-meijuguanlian",option_multi:"icon-meijuguanlianduoxuan",ref_multi:"icon-moxingduoxuan",expression:"icon-gongshiziduan",expression_condition:"icon-gongshiziduan",agg:"icon-huizong",esop:"icon-E-SOP",transaction:"icon-ziduan1",serial_number_rule:"icon-ziduan1",printer:"icon-dayinanniu",message_tmpl:"icon-xiaoximoban",range_user:"icon-fanweirenyuan",label_template_ref:"icon-biaoqianmoban",document_template:"icon-danjumoban",electronic_signature:"icon-qianming1",online_form_tmpl:"icon-zaixianbiaodanmoban",edhr_tmpl:"icon-edhr",online_form:"icon-zaixianbiaodan",data_table_formula:"icon-gongshiziduan",readonlycmp:"icon-wenben1",tenant:"icon-id",associated_primary_key:"icon-id",material_no:"icon-field-material-no",product:"icon-field-product",device:"icon-field-device",biz_process:"icon-jichengzhongxin1"});var Ct=h("AggTypes",(e=>(e.COUNT="COUNT",e.SUM="SUM",e.MAX="MAX",e.MIN="MIN",e.AVG="AVG",e))(Ct||{})),_t=h("NodesConfigTypeEnum",(e=>(e.SPEC="spec",e.SUB_WORKFLOW="sub_workflow",e))(_t||{})),Bt=h("selectionTypeEnums",(e=>(e.None="none",e.SingleChoice="gct_radio",e.MultipleChoice="checkbox",e))(Bt||{})),Ut=h("UniqueConstraintType",(e=>(e.NONE="NONE",e.GLOBAL="GLOBAL",e.LEVEL="LEVEL",e.LOGIC="LOGIC",e))(Ut||{})),wt=h("MessageType",(e=>(e.ALL="all",e.UNREAD="unread",e))(wt||{})),kt=h("WorkbenchType",(e=>(e.TEST="myTestApp",e.QUICK="quickAccess",e.MY="myApp",e))(kt||{})),xt=h("PersonalCenterType",(e=>(e.PROFILE="profile",e.GENDER="gender",e.ENTERPRISE="enterprise",e))(xt||{})),Ft=h("GENDER_TYPE",(e=>(e.FEMALE="female",e.MALE="male",e.PRIVARY="privary",e))(Ft||{})),Gt=h("TODO_TYPE",(e=>(e.TODO="todo",e.APPLICATION="application",e.DONE="done",e.DELEGATE="delegate",e))(Gt||{}));const Yh=h("SHOW_FIELDTYPES",[I.TEXT,I.LONG_TEXT,I.LONG,I.INTEGER,I.DECIMAL,I.DOUBLE,I.SERIAL]);var Kt=h("UserServiceType",(e=>(e.SCRIPT_SERVICE="SCRIPT_SERVICE",e.SQL_SERVICE="SQL_SERVICE",e.SO_SERVICE="SO_SERVICE",e.BUILTIN_SERVICE="SYS_BUILTIN",e))(Kt||{})),Vt=h("EntityModelCategoryEnum",(e=>(e.ENTITY="entity",e.DATA="data",e.VIEW="view",e))(Vt||{})),Ht=h("EntityModelTypeEnum",(e=>(e.BASE="BASE",e.NDO="NDO",e.RDO="RDO",e.TREE="TREE",e.DYNAMIC_FORM="DYNAMIC_FORM",e.WORKFLOW="WORKFLOW",e.TRANSACTION="TRANSACTION",e))(Ht||{})),Wt=h("FieldDefaultValueTypeEnum",(e=>(e.NONE="NONE",e.FIXED="FIXED",e.SYS_VAR="SYS_VAR",e))(Wt||{})),Xt=h("FieldSysVarDefaultValueEnum",(e=>(e.NULL="",e.SYS_DATE="SYS_DATE",e.SYS_TIME="SYS_TIME",e.SYS_DATE_TIME="SYS_DATE_TIME",e.CURRENT_USER="CURRENT_USER",e.CURRENT_ORG="CURRENT_ORG",e))(Xt||{})),jt=h("scriptTypeEnum",(e=>(e.EVENT="event",e.BUSINESSSERVICE="businessService",e.TIMER="timer",e))(jt||{})),$t=h("PanelEnum",(e=>(e.PAGE="page",e.HISTORY="history",e.GLOBAL="global",e.WIDGET="widget",e.CHANGE_DESIGN="changeDesign",e))($t||{})),zt=h("Postion",(e=>(e.STATIC="static",e.RELATIVE="relative",e.ABSOLUTE="absolute",e.FIXED="fixed",e.STICKY="sticky",e))(zt||{})),Jt=h("BorderStyle",(e=>(e.NONE="none",e.SOLID="solid",e.DOTTED="dotted",e.DASHED="dashed",e.DOUBLE="double",e))(Jt||{})),qt=h("TextAlign",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.JUSTIFY="justify",e))(qt||{})),Zt=h("TextDecoration",(e=>(e.LINETHROUGH="line-through",e.UNDERLINE="underline",e.NONE="none",e))(Zt||{})),Yt=h("EventCategory",(e=>(e.INNER="inner",e.JS="js",e.LO="lo",e))(Yt||{})),ea=h("PropGroup",(e=>(e.BASIC="basic",e.ADVANCED="advance",e.DISPLAY="display",e.LABEL="label",e.VUE3="vue3",e.FIELD="field",e.DATA="data",e.OTHER="other",e.LIST="list",e.Table="table",e.SUBMIT_RULE="submitRule",e.LISTDATA="listdata",e.SHOW="show",e.FIELD_CONFIG="fieldConfig",e.FORM_CONFIG="formConfig",e.FIELD_LAYOUT="FieldLayout",e.TABLESELECT_CONFIG="tableSelect",e.GENRADIO="genRadio",e.GENCHECKBOX="genCheckbox",e.GENSWITCH="genSwitch",e.OPTIONS="options",e.COLLAPSE="collapse",e.IFRAME="iframe",e.FILECOLLECT="fileCollect",e.CARDLIST="cardList",e.BUTTON="button",e.Button="Button",e.ButtonShow="ButtonShow",e.ButtonStyle="ButtonStyle",e.LISTBUTTON="listButton",e.MODAL="modal",e.MODALWIDTH="modalWidth",e.MODALHEIGHT="modalHeight",e.MODALTITLECONFIG="modalTitleConfig",e.SEARCH="search",e.QUERY="query",e.INPUT_CONFIG="inputConfig",e.DATALINKAGE="dataLinkage",e.PERMISSION="permission",e.DATASOURCE="dataSource",e.VALIDATERULE="validaterule",e.TEXT="text",e.GRID_CONFIG="gridConfig",e.COL_CONFIG="colConfig",e.COMPONENTDEPENDENCY="componentDependency",e.GENIMAGE="genImage",e.DATARANGE="dataRange",e.OPERATOR_CONFIG="operatorConfig",e.BUSINESS_CONFIG="businessConfig",e))(ea||{})),ta=h("StyleGroup",(e=>(e.LAYOUT="layout",e.STYLE="style",e.BACKGROUND="background",e.MARGIN="margin",e.BORDER="border",e.HEADER="header",e))(ta||{})),aa=h("tagEnum",(e=>(e.TAG="tag",e.PROGRESS="progress",e))(aa||{})),sa=h("TagTypeEnum",(e=>(e.RADIUS="radius",e.LINEAR_RADIUS="linear_radius",e.BIG_RADIUS="big_radius",e.LINEAR_BIG_RADIUS="linear_big_radius",e.DASHED_RADIUS="dashed_radius",e.STATUS="status",e))(sa||{})),ha=h("ProgressTypeEnum",(e=>(e.CIRCLE="circle",e.LINE="line",e))(ha||{})),oa=h("DisplayType",(e=>(e.RULE="rule",e.CONFIG="config",e))(oa||{})),ra=h("GLOBAL_VAR_TYPE",(e=>(e.STRING="string",e.NUMBER="number",e.BOOLEAN="boolean",e.OBJECT="object",e.ARRAY="array",e.NULL="NULL",e.DATE="date",e.DATETIME="datetime",e.TIME="time",e))(ra||{})),da=h("GLOBAL_TYPE",(e=>(e.MODAL="modal",e.EVENT="event",e.VAR="var",e))(da||{})),pa=h("COLUMNS_TYPE",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.TOP="top",e.BOTTOM="bottom",e))(pa||{})),la=h("INNER_EVENT",(e=>(e.CLOSE_MODAL="__CLOSEMODAL__",e.OPEN_MODAL="__OPENMODAL__",e.REFRESH_TABLE="__REFRESHTABLE__",e))(la||{})),ua=h("SUB_TABLE_EDIT_MODE",(e=>(e.INLINE="inline",e.MODAL="modal",e))(ua||{})),ia=h("SUB_TABLE_OPE_EVENT_TYPE_INLINE",(e=>(e.DELETE="delete",e.COPY="copy",e))(ia||{})),ma=h("SUB_TABLE_OPE_EVENT_TYPE",(e=>(e.DELETE="delete",e.EDIT="edit",e.COPY="copy",e))(ma||{})),na=h("VERIFICATIONCONDITIONS_TYPE",(e=>(e.JS="js",e))(na||{})),ga=h("ASSIGNMENTSTRATEGY_ENUM",(e=>(e.alwaysCover="alwaysCover",e.notCovered="notCovered",e))(ga||{})),fa=h("Dependency_ENUM",(e=>(e.HIDDEN="hidden",e.READONLY="readonly",e.DISABLED="disabled",e.REQUIRED="required",e.ASSIGNMENT="assignment",e))(fa||{})),ya=h("ToolkitEnum",(e=>(e.OUTLINE="OUTLINE",e.WIDGETS="WIDGETS",e.FIELD="FIELD",e.MODAL="MODAL",e.JS="JS",e.CSS="CSS",e.TEMPLATE="TEMPLATE",e.LO="LO",e))(ya||{})),Da=h("CategoryTypeEnum",(e=>(e.FORM="form",e.LAYOUT="layout",e.ADVANCED="advanced",e.DATA="data",e.BUTTON="button",e.RDO="rdo",e.KIT="kit",e.PROCESS="process",e))(Da||{})),he=h("Platform",(e=>(e.WEB="web",e.MOBILE="mobile",e))(he||{})),ca=h("BuiltinType",(e=>(e.MODAL="modal",e.MODAL_BODY="modalBody",e.MODAL_FOOTER="modalFooter",e.BottomButtonContainer="bottom-button-container",e))(ca||{})),Qa=h("DateRangeEnums",(e=>(e.WEEK_NOW="sys.pageDesigner.dateRange.weekNow",e.MONTH_NOW="sys.pageDesigner.dateRange.monthNow",e.QUARTER_NOW="sys.pageDesigner.dateRange.quarterNow",e.YEAR_NOW="sys.pageDesigner.dateRange.yearNow",e.WEEk_BEFORE="sys.pageDesigner.dateRange.weekBefore",e.MONTH_BEFORE="sys.pageDesigner.dateRange.monthBefore",e.QUARTER_BEFORE="sys.pageDesigner.dateRange.quarterBefore",e.YEAR_BEFORE="sys.pageDesigner.dateRange.yearBefore",e.DATE_BEFORE="sys.pageDesigner.dateRange.dateBefore",e.DATE_AFTER="sys.pageDesigner.dateRange.dateAfter",e))(Qa||{})),Ia=h("SelectPickerEnums",(e=>(e.DROPDOWN_SELECTION="dropdownSelection",e.TREE_SELECTION="treeSelection",e.MODAL_BOX_SELECTION="modalBoxSelection",e))(Ia||{})),La=h("CURRENCY_ENUM",(e=>(e["¥"]="¥",e.$="$",e.S$="S$",e))(La||{})),Aa=h("TIMETYPE_ENUM",(e=>(e.d="d",e["d:h"]="d:h",e["d:h:m"]="d:h:m",e["d:h:m:s"]="d:h:m:s",e.h="h",e["h:m"]="h:m",e["h:m:s"]="h:m:s",e.m="m",e["m:s"]="m:s",e.s="s",e))(Aa||{})),ba=h("TIMETYPE_LANG_ENUM",(e=>(e.d="days",e["d:h"]="dayhour",e["d:h:m"]="dayhourminute",e["d:h:m:s"]="dayhourminutesecond",e.h="hour",e["h:m"]="hourminute",e["h:m:s"]="hourminutesecond",e.m="minute",e["m:s"]="minutesecond",e.s="seconds",e))(ba||{})),Na=h("CURRENCY_LANG_ENUM",(e=>(e["¥"]="chMoney",e.$="usMoney",e.S$="sgpMoney",e))(Na||{})),va=h("RowSelectionTypeEnums",(e=>(e.SingleChoice="radio",e.MultipleChoice="checkbox",e))(va||{})),Ta=h("StatisticalMethodEnums",(e=>(e.Current="current",e.Whole="whole",e))(Ta||{})),Ra=h("PrintModeEnums",(e=>(e.Local="local",e.Server="server",e.PREVIEW_PRINT="PreviewPrint",e.DIRECT_PRINTING="DirectPrinting",e))(Ra||{})),Sa=h("openWindowEnums",(e=>(e.OPEN="open",e.APPROVE="linkApprove",e))(Sa||{})),Ea=h("KeyMode",(e=>(e.SYSTEM="system",e.TRANSACTION="transaction",e))(Ea||{})),Pa=h("TransactionMode",(e=>(e.CURRENT="current",e.REFERENCE="reference",e))(Pa||{})),Oa=h("DisplayEnums",(e=>(e.BLOCK="block",e.INLINE_BLOCK="inline-block",e))(Oa||{})),Ma=h("ButtonColorType",(e=>(e.DEFAULT="default",e.LINK="link",e))(Ma||{})),Ca=h("ButtonColorTheme",(e=>(e.DEFAULT="default",e.PRIMARY="primary",e.ERROR="error",e.WARNING="warning",e.SUCCESS="success",e))(Ca||{})),_a=h("ButtonStyle",(e=>(e.ORDINARY="ordinary",e.SQUARE="square",e))(_a||{})),Ba=h("ButtonSize",(e=>(e.SMALL="small",e.DEFAULT="middle",e.LARGE="large",e))(Ba||{})),Ua=h("ButtonTypeGroup",(e=>(e.TEXT="TEXT",e.ICON_TEXT="ICON_TEXT",e.ICON="ICON",e))(Ua||{})),wa=h("ButtonType",(e=>(e.PRIMARY="primary",e.DEFAULT="default",e.DASHED="dashed",e.LINK="link",e))(wa||{})),ka=h("ButtonType_vant",(e=>(e.PRIMARY="primary",e.DANGER="danger",e.DEFAULT="default",e))(ka||{}));const eo=h("ButtonGroupType",{TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0}],ICON_TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0,hasIcon:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0,hasIcon:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0,hasIcon:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0,hasIcon:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0,hasIcon:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0,hasIcon:!0}],ICON:[{type:"primary",hasIcon:!0},{type:"default",hasIcon:!0},{type:"primary",danger:!0,hasIcon:!0},{type:"default",danger:!0,hasIcon:!0},{type:"dashed",hasIcon:!0},{type:"link",hasIcon:!0}]});var xa=h("operateSysEnums",(e=>(e.COLUMNDELETE="columnDelete",e.COLUMNLINK="columnLink",e.COPY="copy",e.VERSION_COPY="version_copy",e.VERSION_CREATE="version_create",e.DETAILS="details",e.EDIT="edit",e.USAGEINFORMATION="usageInformation",e.MODELINGTRACEABILITY="modelingTraceability",e.IMPORT="import",e.EXPORT="export",e.BATCHDELETE="batchDelete",e.SUBMIT="submit",e.RESET="reset",e.EXCUTE="excute",e.LABEL_PRINT="label_print",e.DOCUMENT_PRINT="document_print",e.EXAMINE_AND_APPROVE="examineAndApprove",e))(xa||{})),Fa=h("TableSearchTypeEnum",(e=>(e.NONE="none",e.EMBEDDED="embedded",e.EXTERNAL="external",e))(Fa||{})),Ga=h("TableTypeEnum",(e=>(e.DEFAULT="default",e.EMBED="embed",e.SUB="sub",e))(Ga||{})),Ka=h("TableEditingMethodEnum",(e=>(e.DEFAULTEDITING="defaultEditing",e.CLICKTOENTEREDITING="clickToEnterEditing",e))(Ka||{})),Va=h("WidgetInScopeEnum",(e=>(e.GCT="gct",e.GCT_MODAL="gct-modal",e.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",e))(Va||{})),Ha=h("ListTreeSearchTypeEnum",(e=>(e.ALL="ALL",e.SEARCH="SEARCH",e.SEARCHALL="SEARCHALL",e.LEVEL="LEVEL",e.CHILDREN="CHILDREN",e))(Ha||{})),Wa=h("DatasourceTypeEnum",(e=>(e.REALTIMEDATASOURCE="realTimeDataSource",e.SERVICEDATASOURCE="serviceDataSource",e))(Wa||{})),Xa=h("SignatureTypeEnum",(e=>(e.SIGNATURE_ONLY="signature_only",e.SIGNATURE_DATE="signature_date",e.SIGNATURE_DATETIME="signature_datetime",e))(Xa||{})),ja=h("ResetRuleType",(e=>(e.WIPE_DATA="wipe_data",e.REFRESHDATA="refresh_data",e))(ja||{})),$a=h("SCOPE",(e=>(e.PAGE="page",e.MODAL="modal",e))($a||{})),za=h("FormComponents",(e=>(e.RdoInput="rdo-input",e.Input="input",e.ElectronicSignature="electronic-signature",e.UseinfoButton="useinfo-button",e.ModelingButton="modeling-button",e.ImportButton="gc-import-button",e.ExportButton="gc-export-button",e.DocumentPrintButton="document-print-button",e.SubmitButton="submit-button",e.BatchDeleteButton="batchdelete-button",e.CustomButton="custom-button",e.TableLinkButton="table-link-button",e.TableInfoButton="table-info-button",e.TableApproveButton="table-approve-button",e.OpeButton="ope-button",e.ResetButton="reset-button",e.RdoSaveButton="rdo-save-button",e.LabelPrintButton="labelprint-button",e.ProcessButton="process-button",e.ProcessApproveButton="process-approve-button",e.CreateButton="create-button",e.DeleteButton="delete-button",e.CopyButton="copy-button",e.RefreshButton="refresh-button",e.CreateVersionButton="create-version-button",e.CopyVersionButton="copy-version-button",e.Checkbox="checkbox",e.DataTable="data-table",e.TreeTable="tree-table",e.DataTableColumn="data-table-column",e.RefDataTable="ref-data-table",e.DataList="data-list",e.RdoDataList="rdo-data-list",e.DataTableOpe="data-table-ope",e.DataTableFormula="data-table-formula",e.Datepicker="datepicker",e.DateTimepicker="datetimepicker",e.Department="department",e.Form="form",e.RdoForm="rdo-form",e.RdoTable="rdo-table",e.MedProRdoForm="medprordo-form",e.MedProRdoTable="medprordo-table",e.FormProcess="form-process",e.Inputmoney="inputmoney",e.Inputnumber="inputnumber",e.InputDouble="inputdouble",e.Radio="radio",e.Select="select",e.RdoSelect="rdo-select",e.Switch="switch",e.Textarea="textarea",e.Timepicker="timepicker",e.Userpicker="userpicker",e.Search="search",e.SelectSearch="select-search",e.QuickSearch="quick-search",e.LayoutContainer="layout-container",e.ButtonContainer="button-container",e.ButtonProcessContainer="button-process-container",e.BottomButtonContainer="bottom-button-container",e.Grid="grid",e.GridCol="grid-col",e.Tabs="tabs",e.TabPane="tab-pane",e.LeftRightColumns="left-right-columns",e.TopBottomColumns="top-bottom-columns",e.LeftLayoutThree="left-layout-three",e.TopLayoutThree="top-layout-three",e.UploadFile="upload-file",e.UploadImage="upload-image",e.SubTable="sub-table",e.SubTableOpe="sub-table-ope",e.SubTableAddBtn="sub-table-add-button",e.SubTableCopyBtn="sub-table-copy-button",e.SubTableEditBtn="sub-table-edit-button",e.SubTableDeleteBtn="sub-table-delete-button",e.LinkPageBtn="link-page-button",e.Collapse="collapse",e.CardList="card-list",e.CardHeaderLeft="card-header-left",e.CardHeaderRight="card-header-right",e.CardContent="card-content",e.CardOpeBtn="card-ope-btn",e.BaseButton="base-button",e.ReadonlyCmp="readonlycmp",e.TableSelect="table-select",e.GenCheckbox="gen-checkbox",e.GenRadio="gen-radio",e.GenSwitch="gen-switch",e.WorkflowNodes="workflow-nodes",e.WorkflowNodeModal="workflow-node-modal",e.ESOP="e-sop",e.EXPRESSION="expression",e.ExpressionCondition="expression-condition",e.AGG="agg",e.DynamicFormType="dynamic-form-type",e.DynamicFormValue="dynamic-form-value",e.DynamicFormOpts="dynamic-form-options",e.DynamicFormShowType="dynamic-form-show-type",e.DynamicTable="dynamic-table",e.Transaction="transaction",e.SerialRule="serial-rule",e.LabelTemplate="label-template",e.LabelTemplateRef="label-template-ref",e.DocumentTemplate="document-template",e.Wacom="wacom",e.Text="text",e.CustomField="custom-field",e.Printer="printer",e.Descriptions="descriptions",e.RangeUser="range-user",e.GenImage="gen-image",e.TestButton="test-button",e.Iframe="iframe",e.ExcuteButton="medproexcute-button",e.SubDataTable="sub-data-table",e.Signature="signature",e.OnlineForm="online-form",e.TmplTreeSelect="tmpl-tree-select",e.Boolean="boolean",e.BizProcess="biz-process",e.ApprovalHistory="approval-history",e.FlowDiagram="flow-diagram",e))(za||{})),Ja=h("SearchComponents",(e=>(e.SearchInput="SearchInput",e.SearchNumberInput="SearchNumberInput",e.SearchStringNumberInput="SearchStringNumberInput",e.SearchSwitch="SearchSwitch",e.SearchDate="SearchDate",e.SearchDateTime="SearchDateTime",e.SearchTime="SearchTime",e.SearchSelect="SearchSelect",e.SearchRdoSelect="SearchRdoSelect",e.SearchTransaction="SearchTransaction",e.SearchTmplTreeSelect="SearchTmplTreeSelect",e.SearchPrinter="SearchPrinter",e.SearchBizProcess="SearchBizProcess",e))(Ja||{})),qa=h("tableColumnWidthEnum",(e=>(e.ATUO="selfAdaption",e.ENUMERATION="fixed",e.PERCENTAGE="percentage",e))(qa||{})),Za=h("controlConfigEnum",(e=>(e.NULL="NULL",e.STRING="空字符串",e.ZERO="0",e))(Za||{})),Ya=h("statisticalMethodEnum",(e=>(e.TOTAL="total",e.AVERAGE="average",e))(Ya||{})),es=h("fixedAlignENUM",(e=>(e.RIGHT="right",e.NONE="",e.LEFT="left",e))(es||{})),ts=h("tableColumnTypeEnum",(e=>(e.COLUMN_TEXT="COLUMN_TEXT",e.COLUMN_NUMBER="COLUMN_NUMBER",e.COLUMNTEXT_DATA="COLUMNTEXT_DATA",e.COLUMNTEXT_REF="COLUMNTEXT_REF",e.COLUMNTEXT_ENUM="COLUMNTEXT_ENUM",e.COLUMNTEXT_ORG="COLUMNTEXT_ORG",e.COLUMNTEXT_USER="COLUMNTEXT_USER",e.COLUMNTEXT_BOOLEAN="COLUMNTEXT_BOOLEAN",e.COLUMNTEXT_IMAGE="COLUMNTEXT_IMAGE",e))(ts||{})),as=h("tabsTypeENUM",(e=>(e.LINE="line",e.CARD="card",e.TEXt="text",e.CAPSULE="capsule",e.CUSTOM="custom",e))(as||{})),ss=h("sortTypeEnum",(e=>(e.ASC="asc",e.DESC="desc",e))(ss||{})),hs=h("BindCmpStyleEnum",(e=>(e.CMP_TEXT="TEXT",e.CMP_TEXTAREA="TEXTAREA",e.CMP_ELECTRONICSIGNATURE="ELECTRONICSIGNATURE",e.CMP_BOOLEAN="BOOLEAN",e.CMP_SELECT_LIST="SELECT_LIST",e.CMP_RADIO="RADIO",e.CMP_CHECKBOX="CHECKBOX",e.CMP_DROPDOWN_SELECT="dropdownSelection",e.CMP_MODAL="modalBoxSelection",e.CMP_TREE_SELECTION="treeSelection",e.CMP_NUMBER="NUMBER",e.CMP_CURRENCY="CURRENCY",e.CMP_TIME="TIME",e))(hs||{}));const to=h("Ch_BindCmpStyleEnum",{TEXT:"sys.pageDesigner.bindCmpStyle.bindText",TEXTAREA:"sys.pageDesigner.bindCmpStyle.bindTextarea",ELECTRONICSIGNATURE:"sys.pageDesigner.bindCmpStyle.electronicSignature",BOOLEAN:"sys.pageDesigner.bindCmpStyle.bindBoolean",SELECT_LIST:"sys.pageDesigner.bindCmpStyle.bindSelectList",RADIO:"sys.pageDesigner.bindCmpStyle.bindRadio",CHECKBOX:"sys.pageDesigner.bindCmpStyle.bindCheckbox",dropdownSelection:"sys.pageDesigner.bindCmpStyle.bindDropdownSelect",modalBoxSelection:"sys.pageDesigner.bindCmpStyle.bindModal",treeSelection:"sys.pageDesigner.bindCmpStyle.bindTreeSelection",NUMBER:"sys.pageDesigner.bindCmpStyle.bindNumber",CURRENCY:"sys.pageDesigner.bindCmpStyle.bindCurrency",TIME:"sys.pageDesigner.bindCmpStyle.bindTime"});var os=h("BindCmpStyleTypeEnum",(e=>(e.BindText="bindText",e.BindLongText="BindLongText",e.BindBool="bindBool",e.BindPerson="bindPerson",e.BindDept="bindDept",e.BindLink="bindLink",e.BindMulti="bindMulti",e.BindNum="bindNum",e.BindDecimal="bindDecimal",e))(os||{}));const ao=h("transformBindCmp2CmpType",{TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"}),so=h("bindCmpStyleMap",{bindText:["TEXT","TEXTAREA"],BindLongText:["TEXT","TEXTAREA","ELECTRONICSIGNATURE"],bindBool:["BOOLEAN","SELECT_LIST","RADIO","CHECKBOX"],bindPerson:["dropdownSelection","modalBoxSelection"],bindDept:["treeSelection","modalBoxSelection"],bindLink:["SELECT_LIST","RADIO"],bindMulti:["SELECT_LIST","CHECKBOX"],bindNum:["NUMBER","CURRENCY","TIME"],bindDecimal:["NUMBER","CURRENCY"]});var rs=h("buttonShowType",(e=>(e.FOLD_ALL="foldAll",e.FOLD_PART="foldPart",e))(rs||{}));const ho=h("searchListByFieldType",[I.BOOLEAN,I.DATE,I.DATE_TIME,I.DECIMAL,I.DOUBLE,I.ENUM,I.ENUM_MULTI,I.INTEGER,I.LONG,I.LONG_TEXT,I.TEXT,I.USER_MULTI,I.USER,I.TIME,I.REF_MULTI,I.REF,I.RDO_REF,I.ORG_MULTI,I.ORG,I.AGG,I.EXPRESSION,I.SERIAL,I.ONLINE_FORM_TEMPLATE,I.E_DHR_TEMPLATE,I.PRINTER,I.LABEL_TEMPLATE_REF,I.Biz_Process,I.DOCUMENT_TEMPLATE]);var ds=h("AppPublishStateEnum",(e=>(e.SUCCESS="SUCCESS",e.FAILURE="FAILURE",e.PREPARING="PREPARING",e.EVENTING="EVENTING",e.PROCESSIING="PROCESSIING",e.DEPLOYING="DEPLOYING",e))(ds||{})),ps=h("BasicAction",(e=>(e.Insert="Insert",e.Update="Update",e.Delete="Delete",e.Import="Import",e.Export="Export",e.Setting="Setting",e.Download="Download",e.Test="Test",e.Design="Design",e.Add="Add",e))(ps||{})),ls=h("CustomAction",(e=>(e.ResetPassword="ResetPassword",e.PermissionSetting="PermissionSetting",e.RemoveAndHandover="RemoveAndHandover",e.CategoryManagement="CategoryManagement",e.BaiscSetting="BaiscSetting",e.WatermarkSetting="WatermarkSetting",e.SecuritySetting="SecuritySetting",e.LoginSetting="LoginSetting",e.ThemeSetting="ThemeSetting",e.OrganizationSetting="OrganizationSetting",e.ApkSetting="ApkSetting",e.DevelopIconManagement="DevelopIconManagement",e.DevelopImageManagement="DevelopImageManagement",e.Reprint="Reprint",e.ViewTask="ViewTask",e.ManualTrigger="ManualTrigger",e.Setting="Setting",e.Terminate="Terminate",e.Reassign="Reassign",e.Log="Log",e.Moving="Moving",e.EnableDisable="EnableDisable",e))(ls||{}));const oo=h("DefaultActions",["Insert","Update","Delete"]),ro=h("PlatformSettingActions",["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"]);var us=h("sizeEnum",(e=>(e.XS="XS",e.SM="SM",e.MD="MD",e.LG="LG",e.XL="XL",e.XXL="XXL",e))(us||{})),is=h("screenEnum",(e=>(e[e.XS=480]="XS",e[e.SM=576]="SM",e[e.MD=768]="MD",e[e.LG=992]="LG",e[e.XL=1200]="XL",e[e.XXL=1600]="XXL",e))(is||{}));const $=h("screenMap",new Map);$.set("XS",480),$.set("SM",576),$.set("MD",768),$.set("LG",992),$.set("XL",1200),$.set("XXL",1600);const ms=h("TIMEZONE_KEY","TIMEZONE__"),po=h("TENANT_KEY","TENANT__"),lo=h("TOKEN_KEY","TOKEN__"),uo=h("LOCALE_KEY","LOCALE__"),io=h("LOCALE_LIST_KEY","LOCALE__LIST"),mo=h("LOCAL_I18N_TRANSLATE","LOCAL_I18N_TRANSLATE"),no=h("USER_INFO_KEY","USER__INFO__"),go=h("ROLES_KEY","ROLES__KEY__"),fo=h("PROJ_CFG_KEY","PROJ__CFG__KEY__"),yo=h("LOCK_INFO_KEY","LOCK__INFO__KEY__"),Do=h("MULTIPLE_TABS_KEY","MULTIPLE_TABS__KEY__"),co=h("APP_DARK_MODE_KEY_","__APP__DARK__MODE__"),Qo=h("APP_LOCAL_CACHE_KEY","COMMON__LOCAL__KEY__"),Io=h("APP_SESSION_CACHE_KEY","COMMON__SESSION__KEY__"),Lo=h("DESIGNER_SESSION_CACHE_KEY","DESIGNER_SESSION_CACHE_KEY");var ns=h("CacheTypeEnum",(e=>(e[e.SESSION=0]="SESSION",e[e.LOCAL=1]="LOCAL",e))(ns||{})),gs=h("SEARCH_SEVICE",(e=>(e.EQ="eq",e.IEQ="iEq",e.NE="ne",e.INE="ine",e.GT="gt",e.GE="ge",e.LT="lt",e.LE="le",e.ISNULL="isNull",e.ISNOTNULL="isNotNull",e.LIKE="like",e.ILIKE="iLike",e.NOTLIKE="notLike",e.NOTILIKE="iNotLike",e.LEFTLIKE="leftLike",e.ILEFTLIKE="iLeftLike",e.RIGHTLIKE="rightLike",e.IRIGHTLIKE="iRightLike",e.IN="in",e.NOTIN="notIn",e.CONTAINANY="containAny",e.CONTAINALL="containAll",e.RANGE="range",e.ORANGE="oRange",e.LORANGE="loRange",e.RORANGE="roRange",e.VERSIONIN="versionIn",e))(gs||{}));const Ao=h("notSingleArr",["in","notIn","containAny","containAll","versionIn"]);var fs=h("AGLINE_ENUMS",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.BETWEEN="between",e))(fs||{}));const bo=h("presetColor",["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"]);var ys=h("ButtonOpeEnum",(e=>(e[e.SINGLELINE=0]="SINGLELINE",e[e.HEAD=1]="HEAD",e[e.BATCH=2]="BATCH",e[e.SINGLELINE_RDO=3]="SINGLELINE_RDO",e))(ys||{})),Ds=h("RdoButtonOpeEnum",(e=>(e[e.parentVersion=0]="parentVersion",e[e.childVersion=1]="childVersion",e))(Ds||{})),cs=h("ExceptionEnum",(e=>(e[e.PAGE_NOT_ACCESS=403]="PAGE_NOT_ACCESS",e[e.PAGE_NOT_FOUND=404]="PAGE_NOT_FOUND",e[e.ERROR=500]="ERROR",e[e.NET_WORK_ERROR=1e4]="NET_WORK_ERROR",e[e.PAGE_NOT_DATA=10100]="PAGE_NOT_DATA",e))(cs||{})),_=h("ErrorTypeEnum",(e=>(e.VUE="vue",e.SCRIPT="script",e.RESOURCE="resource",e.AJAX="ajax",e.PROMISE="promise",e))(_||{})),Qs=h("ResultEnum",(e=>(e[e.SUCCESS=200]="SUCCESS",e[e.ERROR=-1]="ERROR",e[e.TIMEOUT=401]="TIMEOUT",e.TYPE="success",e))(Qs||{})),Is=h("RequestEnum",(e=>(e.GET="GET",e.POST="POST",e.PUT="PUT",e.DELETE="DELETE",e))(Is||{})),Ls=h("ContentTypeEnum",(e=>(e.JSON="application/json;charset=UTF-8",e.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",e.FORM_DATA="multipart/form-data;charset=UTF-8",e))(Ls||{})),As=h("BizServiceEnum",(e=>(e.submit="post",e.listByIds="get",e.getone="post",e.listAll="post",e.listByPage="post",e.listTree="post",e.save="post",e.saveOrUpdate="post",e.saveBatch="post",e.importData="post",e.exportData="post",e.remove="post",e.removeById="delete",e.removeByIds="delete",e.update="put",e.updateById="put",e.updateByIds="put",e.rdoSave="post",e.rdoListAll="post",e.rdoListByPage="post",e.rdoListVersionById="get",e.rdoSaveVersion="post",e.rdoSaveBatch="post",e.rdoUpdateVersionById="put",e.rdoRemoveVersionById="delete",e.rdoRemoveById="delete",e.rdoGetVersionById="get",e.getOne="post",e.rdoGetVersionByRefId="post",e.getById="get",e.rdoListAllVersion="post",e.rdoRefListByPage="post",e.export="post",e.import="post",e.rdoExport="post",e.rdoImport="post",e.biz_search="post",e))(As||{})),bs=h("MenuTypeEnum",(e=>(e.SIDEBAR="sidebar",e.MIX_SIDEBAR="mix-sidebar",e.MIX="mix",e.TOP_MENU="top-menu",e))(bs||{})),Ns=h("TriggerEnum",(e=>(e.NONE="NONE",e.FOOTER="FOOTER",e.HEADER="HEADER",e))(Ns||{})),vs=h("MenuModeEnum",(e=>(e.VERTICAL="vertical",e.HORIZONTAL="horizontal",e.VERTICAL_RIGHT="vertical-right",e.INLINE="inline",e))(vs||{})),Ts=h("MenuSplitTyeEnum",(e=>(e[e.NONE=0]="NONE",e[e.TOP=1]="TOP",e[e.LEFT=2]="LEFT",e))(Ts||{})),Rs=h("TopMenuAlignEnum",(e=>(e.CENTER="center",e.START="start",e.END="end",e))(Rs||{})),Ss=h("MixSidebarTriggerEnum",(e=>(e.HOVER="hover",e.CLICK="click",e))(Ss||{})),Es=h("PageEnum",(e=>(e.BASE_LOGIN="/login",e.BASE_TENANT="/tenant",e.BASE_HOME="/home",e.USER_CENTER="/user-center",e.PROCESS_CENTER="/process",e.MESSAGE_CENTER="/message",e.ERROR_PAGE="/exception",e.ERROR_LOG_PAGE="/error-log/list",e.USER_CENTER_PWD="/user-center/password",e))(Es||{})),Ps=h("RoleEnum",(e=>(e.SUPER="super",e.TEST="test",e))(Ps||{})),Os=h("SizeEnum",(e=>(e.DEFAULT="default",e.SMALL="small",e.LARGE="large",e))(Os||{})),Ms=h("ProcessStatusEnum",(e=>(e.APPROVING="APPROVING",e.COMPLETED="COMPLETED",e.REFUSED="REFUSED",e.REJECTED="REJECTED",e.TERMINATED="TERMINATED",e.WITHDRAWN="WITHDRAWN",e))(Ms||{}));const No=h("ch_ProcessStatusMap",{APPROVING:"sys.process.status.approving",COMPLETED:"sys.process.status.completed",REFUSED:"sys.process.status.refused",REJECTED:"sys.process.status.rejected",TERMINATED:"sys.process.status.terminated",WITHDRAWN:"sys.process.status.withdrawn"});var Cs=h("ExamineAndApproveStateEnum",(e=>(e.MY_APPLICATION="myApplication",e.MY_AGENT="myAgent",e.MY_DONE="myDone",e.MY_CUSTOM="myCustom",e.MY_CUSTOM_Modal="myCustomModal",e))(Cs||{})),Y=h("PluginModeEnum",(e=>(e.DESIGN="design",e.WEB="web",e.MOBILE="mobile",e))(Y||{}));class we{projectName=j.PORTAL;tenantId="";lang="zh-CN";appInfo={};userInfo={};tenantUserInfo={}}h("GlobalPiniaState",we);class De{loaded=!1;isNew=!0;loading=!1;destroyed=!1;data={}}h("FormState",De);class U{disabled=!1;readonly=!1;visible=!0;keepalive=!1;destroyed=!1}h("FormItemBasicState",U);class ke extends U{}h("FormCollapsePaneState",ke);class xe extends U{}h("FormCollapseState",xe);class Fe extends U{activePane=""}h("FormTabState",Fe);class Ge extends U{}h("FormTabPaneState",Ge);class ce extends U{label="";value=null;options=[]}h("FormEditItemState",ce);class Ke extends U{expand=!0}h("FormGroupState",Ke);class Ve extends ce{}h("FormItemState",Ve);var _s=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Bs(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Us(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if(typeof t=="function"){var a=function s(){var r=!1;try{r=this instanceof s}catch{}return r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};a.prototype=t.prototype}else a={};return Object.defineProperty(a,"__esModule",{value:!0}),Object.keys(e).forEach(function(s){var r=Object.getOwnPropertyDescriptor(e,s);Object.defineProperty(a,s,r.get?r:{enumerable:!0,get:function(){return e[s]}})}),a}var Qe={exports:{}};const He=Us(Object.freeze(Object.defineProperty({__proto__:null,default:{}},Symbol.toStringTag,{value:"Module"})));var We;function ws(){return We||(We=1,(function(e){(function(){var t="input is invalid type",a=typeof window=="object",s=a?window:{};s.JS_SHA256_NO_WINDOW&&(a=!1);var r=!a&&typeof self=="object",o=!s.JS_SHA256_NO_NODE_JS&&typeof process=="object"&&process.versions&&process.versions.node&&process.type!="renderer";o?s=_s:r&&(s=self);var d=!s.JS_SHA256_NO_COMMON_JS&&!0&&e.exports,u=!s.JS_SHA256_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",p="0123456789abcdef".split(""),y=[-2147483648,8388608,32768,128],n=[24,16,8,0],Q=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],b=["hex","array","digest","arrayBuffer"],v=[];(s.JS_SHA256_NO_NODE_JS||!Array.isArray)&&(Array.isArray=function(l){return Object.prototype.toString.call(l)==="[object Array]"}),u&&(s.JS_SHA256_NO_ARRAY_BUFFER_IS_VIEW||!ArrayBuffer.isView)&&(ArrayBuffer.isView=function(l){return typeof l=="object"&&l.buffer&&l.buffer.constructor===ArrayBuffer});var P=function(l,f){return function(D){return new E(f,!0).update(D)[l]()}},R=function(l){var f=P("hex",l);o&&(f=le(f,l)),f.create=function(){return new E(l)},f.update=function(c){return f.create().update(c)};for(var D=0;D<b.length;++D){var g=b[D];f[g]=P(g,l)}return f},le=function(l,f){var D=He,g=He.Buffer,c=f?"sha224":"sha256",m;g.from&&!s.JS_SHA256_NO_BUFFER_FROM?m=g.from:m=function(i){return new g(i)};var L=function(i){if(typeof i=="string")return D.createHash(c).update(i,"utf8").digest("hex");if(i==null)throw new Error(t);return i.constructor===ArrayBuffer&&(i=new Uint8Array(i)),Array.isArray(i)||ArrayBuffer.isView(i)||i.constructor===g?D.createHash(c).update(m(i)).digest("hex"):l(i)};return L},ue=function(l,f){return function(D,g){return new ie(D,f,!0).update(g)[l]()}},k=function(l){var f=ue("hex",l);f.create=function(c){return new ie(c,l)},f.update=function(c,m){return f.create(c).update(m)};for(var D=0;D<b.length;++D){var g=b[D];f[g]=ue(g,l)}return f};function E(l,f){f?(v[0]=v[16]=v[1]=v[2]=v[3]=v[4]=v[5]=v[6]=v[7]=v[8]=v[9]=v[10]=v[11]=v[12]=v[13]=v[14]=v[15]=0,this.blocks=v):this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],l?(this.h0=3238371032,this.h1=914150663,this.h2=812702999,this.h3=4144912697,this.h4=4290775857,this.h5=1750603025,this.h6=1694076839,this.h7=3204075428):(this.h0=1779033703,this.h1=3144134277,this.h2=1013904242,this.h3=2773480762,this.h4=1359893119,this.h5=2600822924,this.h6=528734635,this.h7=1541459225),this.block=this.start=this.bytes=this.hBytes=0,this.finalized=this.hashed=!1,this.first=!0,this.is224=l}E.prototype.update=function(l){if(!this.finalized){var f,D=typeof l;if(D!=="string"){if(D==="object"){if(l===null)throw new Error(t);if(u&&l.constructor===ArrayBuffer)l=new Uint8Array(l);else if(!Array.isArray(l)&&(!u||!ArrayBuffer.isView(l)))throw new Error(t)}else throw new Error(t);f=!0}for(var g,c=0,m,L=l.length,i=this.blocks;c<L;){if(this.hashed&&(this.hashed=!1,i[0]=this.block,this.block=i[16]=i[1]=i[2]=i[3]=i[4]=i[5]=i[6]=i[7]=i[8]=i[9]=i[10]=i[11]=i[12]=i[13]=i[14]=i[15]=0),f)for(m=this.start;c<L&&m<64;++c)i[m>>>2]|=l[c]<<n[m++&3];else for(m=this.start;c<L&&m<64;++c)g=l.charCodeAt(c),g<128?i[m>>>2]|=g<<n[m++&3]:g<2048?(i[m>>>2]|=(192|g>>>6)<<n[m++&3],i[m>>>2]|=(128|g&63)<<n[m++&3]):g<55296||g>=57344?(i[m>>>2]|=(224|g>>>12)<<n[m++&3],i[m>>>2]|=(128|g>>>6&63)<<n[m++&3],i[m>>>2]|=(128|g&63)<<n[m++&3]):(g=65536+((g&1023)<<10|l.charCodeAt(++c)&1023),i[m>>>2]|=(240|g>>>18)<<n[m++&3],i[m>>>2]|=(128|g>>>12&63)<<n[m++&3],i[m>>>2]|=(128|g>>>6&63)<<n[m++&3],i[m>>>2]|=(128|g&63)<<n[m++&3]);this.lastByteIndex=m,this.bytes+=m-this.start,m>=64?(this.block=i[16],this.start=m-64,this.hash(),this.hashed=!0):this.start=m}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296<<0,this.bytes=this.bytes%4294967296),this}},E.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var l=this.blocks,f=this.lastByteIndex;l[16]=this.block,l[f>>>2]|=y[f&3],this.block=l[16],f>=56&&(this.hashed||this.hash(),l[0]=this.block,l[16]=l[1]=l[2]=l[3]=l[4]=l[5]=l[6]=l[7]=l[8]=l[9]=l[10]=l[11]=l[12]=l[13]=l[14]=l[15]=0),l[14]=this.hBytes<<3|this.bytes>>>29,l[15]=this.bytes<<3,this.hash()}},E.prototype.hash=function(){var l=this.h0,f=this.h1,D=this.h2,g=this.h3,c=this.h4,m=this.h5,L=this.h6,i=this.h7,A=this.blocks,S,O,M,F,N,G,K,ee,Ne,ve,me;for(S=16;S<64;++S)N=A[S-15],O=(N>>>7|N<<25)^(N>>>18|N<<14)^N>>>3,N=A[S-2],M=(N>>>17|N<<15)^(N>>>19|N<<13)^N>>>10,A[S]=A[S-16]+O+A[S-7]+M<<0;for(me=f&D,S=0;S<64;S+=4)this.first?(this.is224?(ee=300032,N=A[0]-1413257819,i=N-150054599<<0,g=N+24177077<<0):(ee=704751109,N=A[0]-210244248,i=N-1521486534<<0,g=N+143694565<<0),this.first=!1):(O=(l>>>2|l<<30)^(l>>>13|l<<19)^(l>>>22|l<<10),M=(c>>>6|c<<26)^(c>>>11|c<<21)^(c>>>25|c<<7),ee=l&f,F=ee^l&D^me,K=c&m^~c&L,N=i+M+K+Q[S]+A[S],G=O+F,i=g+N<<0,g=N+G<<0),O=(g>>>2|g<<30)^(g>>>13|g<<19)^(g>>>22|g<<10),M=(i>>>6|i<<26)^(i>>>11|i<<21)^(i>>>25|i<<7),Ne=g&l,F=Ne^g&f^ee,K=i&c^~i&m,N=L+M+K+Q[S+1]+A[S+1],G=O+F,L=D+N<<0,D=N+G<<0,O=(D>>>2|D<<30)^(D>>>13|D<<19)^(D>>>22|D<<10),M=(L>>>6|L<<26)^(L>>>11|L<<21)^(L>>>25|L<<7),ve=D&g,F=ve^D&l^Ne,K=L&i^~L&c,N=m+M+K+Q[S+2]+A[S+2],G=O+F,m=f+N<<0,f=N+G<<0,O=(f>>>2|f<<30)^(f>>>13|f<<19)^(f>>>22|f<<10),M=(m>>>6|m<<26)^(m>>>11|m<<21)^(m>>>25|m<<7),me=f&D,F=me^f&g^ve,K=m&L^~m&i,N=c+M+K+Q[S+3]+A[S+3],G=O+F,c=l+N<<0,l=N+G<<0,this.chromeBugWorkAround=!0;this.h0=this.h0+l<<0,this.h1=this.h1+f<<0,this.h2=this.h2+D<<0,this.h3=this.h3+g<<0,this.h4=this.h4+c<<0,this.h5=this.h5+m<<0,this.h6=this.h6+L<<0,this.h7=this.h7+i<<0},E.prototype.hex=function(){this.finalize();var l=this.h0,f=this.h1,D=this.h2,g=this.h3,c=this.h4,m=this.h5,L=this.h6,i=this.h7,A=p[l>>>28&15]+p[l>>>24&15]+p[l>>>20&15]+p[l>>>16&15]+p[l>>>12&15]+p[l>>>8&15]+p[l>>>4&15]+p[l&15]+p[f>>>28&15]+p[f>>>24&15]+p[f>>>20&15]+p[f>>>16&15]+p[f>>>12&15]+p[f>>>8&15]+p[f>>>4&15]+p[f&15]+p[D>>>28&15]+p[D>>>24&15]+p[D>>>20&15]+p[D>>>16&15]+p[D>>>12&15]+p[D>>>8&15]+p[D>>>4&15]+p[D&15]+p[g>>>28&15]+p[g>>>24&15]+p[g>>>20&15]+p[g>>>16&15]+p[g>>>12&15]+p[g>>>8&15]+p[g>>>4&15]+p[g&15]+p[c>>>28&15]+p[c>>>24&15]+p[c>>>20&15]+p[c>>>16&15]+p[c>>>12&15]+p[c>>>8&15]+p[c>>>4&15]+p[c&15]+p[m>>>28&15]+p[m>>>24&15]+p[m>>>20&15]+p[m>>>16&15]+p[m>>>12&15]+p[m>>>8&15]+p[m>>>4&15]+p[m&15]+p[L>>>28&15]+p[L>>>24&15]+p[L>>>20&15]+p[L>>>16&15]+p[L>>>12&15]+p[L>>>8&15]+p[L>>>4&15]+p[L&15];return this.is224||(A+=p[i>>>28&15]+p[i>>>24&15]+p[i>>>20&15]+p[i>>>16&15]+p[i>>>12&15]+p[i>>>8&15]+p[i>>>4&15]+p[i&15]),A},E.prototype.toString=E.prototype.hex,E.prototype.digest=function(){this.finalize();var l=this.h0,f=this.h1,D=this.h2,g=this.h3,c=this.h4,m=this.h5,L=this.h6,i=this.h7,A=[l>>>24&255,l>>>16&255,l>>>8&255,l&255,f>>>24&255,f>>>16&255,f>>>8&255,f&255,D>>>24&255,D>>>16&255,D>>>8&255,D&255,g>>>24&255,g>>>16&255,g>>>8&255,g&255,c>>>24&255,c>>>16&255,c>>>8&255,c&255,m>>>24&255,m>>>16&255,m>>>8&255,m&255,L>>>24&255,L>>>16&255,L>>>8&255,L&255];return this.is224||A.push(i>>>24&255,i>>>16&255,i>>>8&255,i&255),A},E.prototype.array=E.prototype.digest,E.prototype.arrayBuffer=function(){this.finalize();var l=new ArrayBuffer(this.is224?28:32),f=new DataView(l);return f.setUint32(0,this.h0),f.setUint32(4,this.h1),f.setUint32(8,this.h2),f.setUint32(12,this.h3),f.setUint32(16,this.h4),f.setUint32(20,this.h5),f.setUint32(24,this.h6),this.is224||f.setUint32(28,this.h7),l};function ie(l,f,D){var g,c=typeof l;if(c==="string"){var m=[],L=l.length,i=0,A;for(g=0;g<L;++g)A=l.charCodeAt(g),A<128?m[i++]=A:A<2048?(m[i++]=192|A>>>6,m[i++]=128|A&63):A<55296||A>=57344?(m[i++]=224|A>>>12,m[i++]=128|A>>>6&63,m[i++]=128|A&63):(A=65536+((A&1023)<<10|l.charCodeAt(++g)&1023),m[i++]=240|A>>>18,m[i++]=128|A>>>12&63,m[i++]=128|A>>>6&63,m[i++]=128|A&63);l=m}else if(c==="object"){if(l===null)throw new Error(t);if(u&&l.constructor===ArrayBuffer)l=new Uint8Array(l);else if(!Array.isArray(l)&&(!u||!ArrayBuffer.isView(l)))throw new Error(t)}else throw new Error(t);l.length>64&&(l=new E(f,!0).update(l).array());var S=[],O=[];for(g=0;g<64;++g){var M=l[g]||0;S[g]=92^M,O[g]=54^M}E.call(this,f,D),this.update(O),this.oKeyPad=S,this.inner=!0,this.sharedMemory=D}ie.prototype=new E,ie.prototype.finalize=function(){if(E.prototype.finalize.call(this),this.inner){this.inner=!1;var l=this.array();E.call(this,this.is224,this.sharedMemory),this.update(this.oKeyPad),this.update(l),E.prototype.finalize.call(this)}};var x=R();x.sha256=x,x.sha224=R(!0),x.sha256.hmac=k(),x.sha224.hmac=k(!0),d?e.exports=x:(s.sha256=x.sha256,s.sha224=x.sha224)})()})(Qe)),Qe.exports}var ks=ws();class Xe{configs=new Map;cache=new Map;getConfig(t){return this.configs.get(t)}register(t){this.configs.set(t.tag,t),t.items&&this.cache.set(t.tag,t.items)}unregister(t){this.configs.delete(t),this.cache.delete(t)}get(t){return this.cache.get(t)||[]}async asyncGet(t,a){const s=this.configs.get(t);return s?s.mode==="static"?this.getByConfig(s):s.mode==="async"?this.cache.has(t)?this.cache.get(t)||[]:this.asyncGetByConfig(s,a):[]:[]}getByConfig(t){return t.items||[]}async asyncGetByConfig(t,a={}){if(t.fetch){const s=await t.fetch(a||{});if(s){const[r,o]=t.keys||["name","id"];return this.deepFormat(s,r,o)}}return[]}deepFormat(t,a,s){return t.map(r=>{const o={label:r[a],value:r[s]};return r.children&&r.children.length>0&&(o.options=this.deepFormat(r.children,a,s)),o})}}h("DictionaryUtil",Xe);function xs(e,t){return _gct.i18n.global.t(e,t)}var je=h("EditorRegisterConst",(e=>(e.PREFIX="EDITOR___",e))(je||{})),Fs=h("EditorType",(e=>(e.LENGTH_UNIT="length-unit",e.COLOR="color",e.SPAN="span",e.TEXT="text",e.NUMBER="number",e.INFO="info",e.SELECT="select",e.RADIO="radio",e.PICKER="picker",e.I18N="i18n",e.TEXTAREA="textarea",e.DATE_RANGE="date-range",e.SWITCH="switch",e.CHECK_SWITCH="check-switch",e.ICON_SELECT="icon-select",e.CHECKBOX="checkbox",e))(Fs||{})),Gs=h("EditorTypeOld",(e=>(e.LENGTH_UNIT="length-unit-editor",e.COLOR="color-editor",e.SPAN="span-editor",e.TEXT="text-editor",e.NUMBER="number-editor",e.INFO="info-editor",e.SELECT="select-editor",e.MODEL_SELECT="model-editor",e.Field_SELECT="field-editor",e.RADIO="radio-editor",e.PICKER="picker-editor",e.I18N="i18n-editor",e.TEXTAREA="textarea-editor",e.DATE_RANGE="date-range-editor",e.SWITCH="switch-editor",e.CHECK_SWITCH="check-switch-editor",e.ICON_SELECT="icon-select-editor",e.CHECKBOX="checkbox-editor",e.BORDER="border-editor",e.BORDER_RADIUS="border-radius-editor",e.ALIGN="align-editor",e.FONT_STYLE="font-style-editor",e.POSITION="position-editor",e.SPACING="spacing-editor",e.MARGIN="margin-editor",e))(Gs||{})),Ks=h("FormContainerType",(e=>(e.FORM_TITLE_GROUP="form-title-group",e))(Ks||{}));const z=h("CoreConst",{TOKEN:"gct-token",TENANT:"gct-tenant"}),Vs=h("STYLE_NAMESPACE_TAG","gct"),Hs=h("PLUGIN_BASE_URL","/minio"),Ws="is-";function V(e,t,a,s,r){let o=`${e}-${t}`;return a&&(o+=`-${a}`),s&&(o+=`__${s}`),r&&(o+=`--${r}`),o}class $e{constructor(t,a){this.block=t,this.namespace=a||Vs}namespace;b(t=""){return V(this.namespace,this.block,t,"","")}e(t){return t?V(this.namespace,this.block,"",t,""):""}m(t){return t?V(this.namespace,this.block,"","",t):""}be(t,a){return t&&a?V(this.namespace,this.block,t,a,""):""}em(t,a){return t&&a?V(this.namespace,this.block,"",t,a):""}bm(t,a){return t&&a?V(this.namespace,this.block,t,"",a):""}bem(t,a,s){return t&&a&&s?V(this.namespace,this.block,t,a,s):""}is(t,a){return t&&a?`${Ws}${t}`:""}cssVar(t){const a={};for(const s in t)t[s]&&(a[this.cssVarName(s)]=t[s]);return a}cssVarBlock(t){const a={};for(const s in t)t[s]&&(a[this.cssVarBlockName(s)]=t[s]);return a}cssVarName(t){return`--${this.namespace}-${t}`}cssVarBlockName(t){return`--${this.namespace}-${this.block}-${t}`}}h("Namespace",$e);var Ie,ze;function Xs(){if(ze)return Ie;ze=1;function e(r){if(typeof r!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(r))}function t(r,o){for(var d="",u=0,p=-1,y=0,n,Q=0;Q<=r.length;++Q){if(Q<r.length)n=r.charCodeAt(Q);else{if(n===47)break;n=47}if(n===47){if(!(p===Q-1||y===1))if(p!==Q-1&&y===2){if(d.length<2||u!==2||d.charCodeAt(d.length-1)!==46||d.charCodeAt(d.length-2)!==46){if(d.length>2){var b=d.lastIndexOf("/");if(b!==d.length-1){b===-1?(d="",u=0):(d=d.slice(0,b),u=d.length-1-d.lastIndexOf("/")),p=Q,y=0;continue}}else if(d.length===2||d.length===1){d="",u=0,p=Q,y=0;continue}}o&&(d.length>0?d+="/..":d="..",u=2)}else d.length>0?d+="/"+r.slice(p+1,Q):d=r.slice(p+1,Q),u=Q-p-1;p=Q,y=0}else n===46&&y!==-1?++y:y=-1}return d}function a(r,o){var d=o.dir||o.root,u=o.base||(o.name||"")+(o.ext||"");return d?d===o.root?d+u:d+r+u:u}var s={resolve:function(){for(var o="",d=!1,u,p=arguments.length-1;p>=-1&&!d;p--){var y;p>=0?y=arguments[p]:(u===void 0&&(u=process.cwd()),y=u),e(y),y.length!==0&&(o=y+"/"+o,d=y.charCodeAt(0)===47)}return o=t(o,!d),d?o.length>0?"/"+o:"/":o.length>0?o:"."},normalize:function(o){if(e(o),o.length===0)return".";var d=o.charCodeAt(0)===47,u=o.charCodeAt(o.length-1)===47;return o=t(o,!d),o.length===0&&!d&&(o="."),o.length>0&&u&&(o+="/"),d?"/"+o:o},isAbsolute:function(o){return e(o),o.length>0&&o.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var o,d=0;d<arguments.length;++d){var u=arguments[d];e(u),u.length>0&&(o===void 0?o=u:o+="/"+u)}return o===void 0?".":s.normalize(o)},relative:function(o,d){if(e(o),e(d),o===d||(o=s.resolve(o),d=s.resolve(d),o===d))return"";for(var u=1;u<o.length&&o.charCodeAt(u)===47;++u);for(var p=o.length,y=p-u,n=1;n<d.length&&d.charCodeAt(n)===47;++n);for(var Q=d.length,b=Q-n,v=y<b?y:b,P=-1,R=0;R<=v;++R){if(R===v){if(b>v){if(d.charCodeAt(n+R)===47)return d.slice(n+R+1);if(R===0)return d.slice(n+R)}else y>v&&(o.charCodeAt(u+R)===47?P=R:R===0&&(P=0));break}var le=o.charCodeAt(u+R),ue=d.charCodeAt(n+R);if(le!==ue)break;le===47&&(P=R)}var k="";for(R=u+P+1;R<=p;++R)(R===p||o.charCodeAt(R)===47)&&(k.length===0?k+="..":k+="/..");return k.length>0?k+d.slice(n+P):(n+=P,d.charCodeAt(n)===47&&++n,d.slice(n))},_makeLong:function(o){return o},dirname:function(o){if(e(o),o.length===0)return".";for(var d=o.charCodeAt(0),u=d===47,p=-1,y=!0,n=o.length-1;n>=1;--n)if(d=o.charCodeAt(n),d===47){if(!y){p=n;break}}else y=!1;return p===-1?u?"/":".":u&&p===1?"//":o.slice(0,p)},basename:function(o,d){if(d!==void 0&&typeof d!="string")throw new TypeError('"ext" argument must be a string');e(o);var u=0,p=-1,y=!0,n;if(d!==void 0&&d.length>0&&d.length<=o.length){if(d.length===o.length&&d===o)return"";var Q=d.length-1,b=-1;for(n=o.length-1;n>=0;--n){var v=o.charCodeAt(n);if(v===47){if(!y){u=n+1;break}}else b===-1&&(y=!1,b=n+1),Q>=0&&(v===d.charCodeAt(Q)?--Q===-1&&(p=n):(Q=-1,p=b))}return u===p?p=b:p===-1&&(p=o.length),o.slice(u,p)}else{for(n=o.length-1;n>=0;--n)if(o.charCodeAt(n)===47){if(!y){u=n+1;break}}else p===-1&&(y=!1,p=n+1);return p===-1?"":o.slice(u,p)}},extname:function(o){e(o);for(var d=-1,u=0,p=-1,y=!0,n=0,Q=o.length-1;Q>=0;--Q){var b=o.charCodeAt(Q);if(b===47){if(!y){u=Q+1;break}continue}p===-1&&(y=!1,p=Q+1),b===46?d===-1?d=Q:n!==1&&(n=1):d!==-1&&(n=-1)}return d===-1||p===-1||n===0||n===1&&d===p-1&&d===u+1?"":o.slice(d,p)},format:function(o){if(o===null||typeof o!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof o);return a("/",o)},parse:function(o){e(o);var d={root:"",dir:"",base:"",ext:"",name:""};if(o.length===0)return d;var u=o.charCodeAt(0),p=u===47,y;p?(d.root="/",y=1):y=0;for(var n=-1,Q=0,b=-1,v=!0,P=o.length-1,R=0;P>=y;--P){if(u=o.charCodeAt(P),u===47){if(!v){Q=P+1;break}continue}b===-1&&(v=!1,b=P+1),u===46?n===-1?n=P:R!==1&&(R=1):n!==-1&&(R=-1)}return n===-1||b===-1||R===0||R===1&&n===b-1&&n===Q+1?b!==-1&&(Q===0&&p?d.base=d.name=o.slice(1,b):d.base=d.name=o.slice(Q,b)):(Q===0&&p?(d.name=o.slice(1,n),d.base=o.slice(1,b)):(d.name=o.slice(Q,n),d.base=o.slice(Q,b)),d.ext=o.slice(n,b)),Q>0?d.dir=o.slice(0,Q-1):p&&(d.dir="/"),d},sep:"/",delimiter:":",win32:null,posix:null};return s.posix=s,Ie=s,Ie}var js=Xs();const C=Bs(js);class $s{static cache=new Map;static cacheModules=new Map;static module=new Map;static async loadPluginConfig(t,a,s=[]){const r=`${t}-${a}-${s.join("_")}`;if(this.cache.has(r))return this.cache.get(r);const o={client:a===he.WEB?"WEB":"MOBILE"};s.length>0&&(o.tag=s.join(","));const u=(await _api.platform.plugin.postGetTenantCompList(o)).data;return u.length>0&&this.cache.set(r,u),u}static async loadPlugins(t,a=[]){const s={};if(a.length>0){const r=a.map(d=>{const u=C.join(Hs,d.url,"dist");return{imports:{[d.key]:`${u}/${t}.system.min.js?version=${d.version}`},styles:{[d.key]:`${u}/${t}.min.css?version=${d.version}`}}}),o=[];r.forEach(d=>{System.addImportMap(d),d.imports&&Object.keys(d.imports).forEach(u=>{const p=async()=>{try{const y=await System.import(u);s[u]=y,this.module.set(u,y)}catch(y){console.error(y)}};o.push(p())})}),await Promise.all(o)}return s}static async loadPlugin(t,a,s){s=["common",...s];const r=`${t}-${a}-${s.join("_")}`;try{const o=await this.loadPluginConfig(t,a,s);if(!this.cacheModules.has(r)){const d=[];o.forEach(p=>{p.plugins&&d.push(...p.plugins)});const u=await this.loadPlugins(t,d);this.cacheModules.set(r,u)}return[o,this.cacheModules.get(r)]}catch(o){console.error(o)}return[[],{}]}static async loadDesignPlugin(t,a,s=[]){try{const r=await this.loadPlugin(Y.DESIGN,a,s),[o,d]=r;return o.forEach(u=>{u.plugins.forEach(y=>{const n=d[y.key];if(!n){console.error(`${y.key} 插件加载失败,请检查插件配置是否正确`);return}if(a===he.WEB){const Q=n.web??n.default;Q&&_gct.register.designer.web.register(y.key,()=>new Q)}else{const Q=n.mobile??n.default;Q&&_gct.register.designer.mobile.register(y.key,()=>new Q)}})}),r}catch(r){console.error(r)}return[[],{}]}static async loadDesignDeletedPlugins(t,a=[]){try{const s=await this.loadPlugins(Y.DESIGN,a);a.forEach(r=>{const o=s[r.key];if(!o){console.error(`${r.key} 插件加载失败,请检查插件配置是否正确`);return}if(t===he.WEB){const d=o.web??o.default;d&&_gct.register.designer.web.register(r.key,()=>new d)}else{const d=o.mobile??o.default;d&&_gct.register.designer.mobile.register(r.key,()=>new d)}})}catch(s){console.error(s)}}static async loadMobilePlugin(t=[]){try{const a=await this.loadPlugins(Y.MOBILE,t);t.forEach(s=>{if(!a[s.key]){console.error(`${s.key} 插件加载失败,请检查插件配置是否正确`);return}_gct.register.render.mobile.register(s.key,a[s.key].default)})}catch(a){console.error(a)}}static async loadWebPlugin(t=[]){try{const a=await this.loadPlugins(Y.WEB,t);t.forEach(s=>{if(!a[s.key]){console.error(`${s.key} 插件加载失败,请检查插件配置是否正确`);return}_gct.register.render.web.register(s.key,a[s.key].default)})}catch(a){console.error(a)}}}h("PluginPgkUtil",$s);class zs{constructor(t,a=!1){this.isDev=a,this.url=new URL(t),this.baseDir=C.dirname(this.url.pathname)}baseDir;url;dir(t){return this.isDev===!0?t:this.url.origin+C.resolve(this.baseDir,t)}}h("PluginStaticResource",zs);function Js(e){if(e instanceof Array)e&&e.length>0&&e.splice(0,e.length);else if(e instanceof Object&&e)for(const t in e)Object.prototype.hasOwnProperty.call(e,t)&&delete e[t]}class qs{constructor(){this.map=new Map,this.maxListeners=100}setMaxListeners(t){this.maxListeners=t}getSize(t){return this.map.has(t)?this.map.get(t).length:0}addListener(t,a){if(a instanceof Function){this.map.has(t)||this.map.set(t,[]);const s=this.map.get(t);if(s.length<this.maxListeners)s.push(a);else throw new Error(`事件监听已达最大上限[${this.maxListeners}],无法新增监听!`)}}removeListener(t,a){if(this.map.has(t)){const s=this.map.get(t);if(s.length>0){for(let r=0;r<s.length;r++)if(s[r]===a){s.splice(r,1);break}}}}emit(t,...a){this.map.has(t)&&this.map.get(t).forEach(r=>{r(...a)})}async asyncEmit(t,...a){if(this.map.has(t)){const r=this.map.get(t).map(o=>o(...a));return Promise.all(r)}return[]}reset(){this.map.forEach(t=>{Js(t)}),this.map.clear()}}class Je{constructor(t){this.e=new qs,this.e.setMaxListeners(t||300)}getSize(t){return this.e.getSize(t)}on(t,a){this.e.addListener(t,a)}off(t,a){this.e.removeListener(t,a)}emit(t,...a){this.e.emit(t,...a)}asyncEmit(t,...a){return this.e.asyncEmit(t,...a)}reset(){this.e.reset()}}const{toString:Zs}=Object.prototype;function Ys(e){return th(e)==="function"}const eh={"[object Boolean]":"boolean","[object Number]":"number","[object String]":"string","[object Function]":"function","[object Array]":"array","[object Date]":"date","[object RegExp]":"regExp","[object Undefined]":"undefined","[object Null]":"null","[object Object]":"object","[object Set]":"set","[object Map]":"map","[object WeakMap]":"weakmap"};function th(e){return eh[Zs.call(e)]}function Le(e,t,a=0,s=!1,r="/"){let o="";if(s&&!/^(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)$/.test(location.hostname)){const u=location.hostname;u.indexOf(".")!==u.lastIndexOf(".")&&(o=`;domain=${u.substring(u.indexOf("."),u.length)}`)}if(a!==0){const d=a*24*60*60*1e3,u=new Date(new Date().getTime()+d);document.cookie=`${e}=${escape(t)};path=${r};expires=${u.toUTCString()}${o}`}else document.cookie=`${e}=${escape(t)};path=${r}${o}`}function qe(e,t){Le(e,"",-1,t)}function Ze(e){const t=new RegExp(`(^| )${e}=([^;]*)(;|$)`),a=document.cookie.match(t);return a&&a.length>1?unescape(a[2]):null}class oe{constructor(){this.items=[]}get size(){return this.items.length}callSync(t,...a){const s=t||Object.create({});let r;for(let o=0;o<this.items.length;o++){const d=this.items[o];if(d.fn&&(r=d.fn(s,...a)),r===null){console.warn(`因${d.fn?d.fn.name:null}方法返回值为「null」,钩子中断执行。`,d);break}}return s}tap(t){if(t&&Ys(t)){const a={mode:"sync"};a.fn=t,this.items.push(a)}}removeTap(t){if(t)for(let a=0;a<this.items.length;a++){const s=this.items[a];t===s.fn&&this.items.splice(a,1)}}clear(){this.items=[]}}function Ye(){return Ze(z.TOKEN)}function et(e){e?Le(z.TOKEN,e,7,!0):qe(z.TOKEN,!0)}function ah(){return Ze(z.TENANT)}function sh(e){e?Le(z.TENANT,e,7,!0):qe(z.TENANT,!0)}function tt(){const e=location.pathname.replace("/src/projects","").split("/");return{aid:e[2],pid:e[3]}}const hh=h("isMobile",(()=>{const e=navigator.userAgent,t=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/,a=window.innerWidth<=768,s="ontouchstart"in window||navigator.maxTouchPoints>0;return t.test(e)||a&&s})());function at(){return localStorage.getItem(ms)||"UTC+08:00"}function oh(e,t){return Z(X(e),t,(a,s)=>{if(typeof a=="object"&&typeof s=="object")return Z(X(a),s,(r,o)=>Array.isArray(r)?ne(r,o,ge):void 0)})}function rh(e,t,a,s){return{install(r){e&&t&&_gct.register.editor.register(je.PREFIX+e,t),a&&r.component(s??a.name,a)}}}function st(e){e.interceptors.request.use(t=>{if(t.headers||(t.headers=new Ee),Object.assign(t.headers,{Token:Ye(),Source:hh?502:501,Lang:_gct.store.lang,"Tenant-Id":_gct.store.tenantId,Timezone:at()}),!t.headers["App-Tag"])if(t.url.includes("/gct-apaas/")){const a=tt();t.headers["App-Tag"]=a.aid,t.headers.Module="TENANT_CENTER"}else t.headers["App-Tag"]="__platform__";return[j.TENANT_CENTER,j.APP_DESIGNER,j.WEB_RENDER].includes(_gct.store.projectName)?t.headers.Module="TENANT_CENTER":_gct.store.projectName===j.BACKEND_MANAGEMENT&&(t.headers.Module="BACKEND_MANAGEMENT"),t})}const dh=Te("global-store",{state(){return new we},getters:{tenantList(){return this.userInfo.tenantList||[]}},actions:{setProjectName(e){this.$state.projectName=e},setTenantId(e){this.$state.tenantId=e},setLang(e){this.$state.lang=e},async login(e){const{username:t,password:a}=e,s=ks.sha256(a),r=await _gct.api.platform.login.postSign({username:t,password:s});return this.$state.userInfo=r.data,et(r.data.token),r.data},async loadUserInfo(){const e=await _gct.api.platform.user.getInfo();return this.$state.userInfo=e.data,e.data},async loadTenantUserInfo(){const e=await _gct.api.platform.tenant.getUserInfo();return this.$state.tenantUserInfo=e.data,e.data}}});class ht{pinia=Re();store;constructor(){Se(this.pinia),this.store=dh()}}h("GlobalStoreUtil",ht);class re{map=new Map;providers=new Map;hooks={register:new oe,unregister:new oe};register(t,a){this.map.set(t,a);const s=a();this.providers.set(t,s),this.hooks.register.callSync(null,t,s)}unregister(t){this.map.delete(t);const a=this.providers.get(t);a&&(this.hooks.unregister.callSync(null,t,a),this.providers.delete(t))}getProvider(t){return this.providers.get(t)}getKeys(){return Array.from(this.map.keys())}getProviders(){return Array.from(this.providers.values())}}h("DesignerRegister",re);class J{static editors=new Map;static providers=new Map;static register(t,a){J.editors.set(t,a)}static unregister(t){J.editors.delete(t)}static get(t){if(this.providers.has(t))return this.providers.get(t);const a=J.editors.get(t);if(a){const s=a();return this.providers.set(t,s),s}return null}}h("EditorRegister",J);class q{static items=new Map;static register(t,a){q.items.set(t,a)}static unregister(t){q.items.delete(t)}static create(t){const a=q.items.get(t);return a?a():null}}h("FormItemRegister",q);class de{map=new Map;hooks={register:new oe,unregister:new oe};register(t,a){this.map.set(t,a),this.hooks.register.callSync(null,t,a)}unregister(t){this.map.delete(t),this.hooks.unregister.callSync(null,t)}get(t){return this.map.get(t)}keys(){return Array.from(this.map.keys())}}h("RenderRegister",de);var pe=(e=>(e.DEV="dev",e.TEST="test",e.PROD="prod",e))(pe||{});const ph=/^http:\/\/\d{1,3}(\.\d{1,3}){3}:(\d{1,5})$/,ot=/^https?:\/\/([a-z0-9]+)-test\./,lh=/\/web-render|\/web\/|web-single\/|dev-single\/|test-single\//,uh=/\/web\/|\/web-single\//,ih=/\/web-render\//,mh=/\/dev-single\//,nh=/\/test-single\//;class gh{_testEnv=!1;_testTenantData={};_platformOrigin;_isHostMode=!1;constructor(){this._platformOrigin=location.origin||"",this._isHostMode=ot.test(this._platformOrigin)}get isAppRun(){return lh.test(location.pathname)}get isAppProd(){return uh.test(location.pathname)}get isAppPreview(){return ih.test(location.pathname)}get isDevSingleEnv(){return mh.test(location.pathname)}get isTestEnv(){return nh.test(location.pathname)||this._testEnv}get platformOrigin(){return this._platformOrigin}get isHostMode(){return this._isHostMode}get testTenantData(){return this._testTenantData}async checkIsTestEnv(){let t=null;if(this._isHostMode){if(t=this._platformOrigin.match(ot),this._testEnv=!!(t&&t[1]),this._testEnv){const a=await _api.platform.tenant.getInfoByPortOrDomain({domain:t[1]});Object.assign(this._testTenantData,a.data)}}else{t=this._platformOrigin.match(ph);const a=t&&t[2];if(a){const s=await _api.platform.tenant.getInfoByPortOrDomain({port:a});s.data&&(Object.assign(this._testTenantData,s.data),this._testEnv=s.data.testEnvPort===a)}}}getEnv(){return this.isTestEnv?pe.TEST:this.isAppProd?pe.PROD:pe.DEV}}class fh{i18n=Oe({locale:"zh-CN",fallbackLocale:"en",messages:{en:{message:{hello:"hello world"}},ja:{message:{hello:"こんにちは、世界"}}}});locale="zh-CN";constructor(){this.init()}async init(){await this.loadLocales();const t=this.getMessageUrl({locale:this.locale});await this.loadMessages(t)}async loadLocales(){const t=await(await fetch("/gct-platform/api/i18n-config/list")).json();if(t.code===200){const a=t.data.find(s=>s.defaultLanguage);this.locale=a.languageTag}}async loadMessages(t,a=this.locale){const o=(await(await fetch(t)).text()).split(`
|
|
2
|
-
`).reduce((d,u)=>{const[p,...y]=u.split(":");return d[p]=y.join(":"),d},{});this.i18n.global.mergeLocaleMessage(a,o)}getMessageUrl(t){if("app"in t){const a=t.env==="dev"?`dev_${t.branch}`:t.env;return`minio/${t.app}/locale-js/${a}/${t.locale}__.json`}return`/minio/locale-js/${t.locale}__platform__.json`}}function yh(e){e.use(_gct.i18n)}const Dh=[];class ch{router;constructor(){this.router=Me({history:Ce(),routes:Dh})}async add(t){Array.isArray(t)?t.forEach(a=>this.add(a)):this.router.addRoute(t),await this.router.replace(this.router.currentRoute.value.fullPath)}}function Qh(e){e.use(_gct.router)}class rt{i18nUtil=new fh;i18n=this.i18nUtil.i18n;t(t,a){return this.i18n.global.t(t,a)}storeUtil=new ht;store=this.storeUtil.store;routerUtil=new ch;router=this.routerUtil.router;message;dictionary=new Xe;env=new gh;register={designer:{pad:new re,mobile:new re,web:new re},render:{pad:new de,mobile:new de,web:new de},editor:J,formItem:q};async init(){await this.env.checkIsTestEnv()}}h("GctGlobal",rt);const Ih=[{name:"appBranch",entityName:"app-branch",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appGlobalSettings",entityName:"app-global-settings",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appGrantedUser",entityName:"app-granted-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"post",method:"postBatch",path:"batch",hasQuery:!1,hasData:!0},{mode:"get",method:"getGrantedStatistic",path:"grantedStatistic",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getRemoveAndTransfer",path:"removeAndTransfer",hasQuery:!0,hasData:!1},{mode:"get",method:"getUngrantedList",path:"ungranted/list",hasQuery:!1,hasData:!1}]},{name:"appOrg",entityName:"app-org",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postTransferAndDelete",path:"transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserAdd",path:"user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserCreateAndAdd",path:"user/createAndAdd",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserMove",path:"user/move",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserPageList",path:"user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRemove",path:"user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserUpdate",path:"user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appPublishLog",entityName:"app-publish-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appState",entityName:"app-state",apis:[{mode:"get",method:"getDraft",path:"draft",hasQuery:!1,hasData:!1}]},{name:"appUser",entityName:"app-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!1,hasData:!0},{mode:"put",method:"putDisable",path:"disable",hasQuery:!0,hasData:!1},{mode:"put",method:"putEnable",path:"enable",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemove",path:"remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultPwd",path:"reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultSignPwd",path:"reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"approvalLog",entityName:"approval-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"auditLog",entityName:"audit-log",apis:[{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getModules",path:"modules",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperateTypes",path:"operateTypes",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0}]},{name:"basicConfig",entityName:"basic-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"get",method:"getAiRagEnabled",path:"aiRagEnabled",hasQuery:!1,hasData:!1},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"post",method:"postGlobal",path:"global",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postTheme",path:"theme",hasQuery:!1,hasData:!0},{mode:"put",method:"putKey",path:"{key}",hasQuery:!1,hasData:!0}]},{name:"bizEvent",entityName:"biz-event",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"bizProcessDefinition",entityName:"biz-process-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteDeleteCategory",path:"deleteCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"bizProcessDefinitionVersion",entityName:"biz-process-definition-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postDeploy",path:"deploy",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveAndDeploy",path:"saveAndDeploy",hasQuery:!1,hasData:!0},{mode:"get",method:"getId",path:"",hasQuery:!0,hasData:!1}]},{name:"bizServiceCrud",entityName:"biz-service-crud",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataModelList",path:"data-model/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewModelList",path:"view-model/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"bizService",entityName:"biz-service",apis:[{mode:"get",method:"getModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1}]},{name:"bom",entityName:"bom",apis:[{mode:"post",method:"postImport",path:"import",hasQuery:!1,hasData:!1}]},{name:"category",entityName:"category",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetListRdoOrNdo",path:"getListRdoOrNdo",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListComplete",path:"listComplete",hasQuery:!0,hasData:!1},{mode:"get",method:"getPage",path:"page",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"categoryRelation",entityName:"category-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"chat",entityName:"chat",apis:[{mode:"post",method:"postImportExcel",path:"importExcel",hasQuery:!0,hasData:!1}]},{name:"codeTs",entityName:"code-ts",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1}]},{name:"commitLog",entityName:"commit-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCanPublishProdReleaseTagList",path:"canPublishProdReleaseTagList",hasQuery:!1,hasData:!1},{mode:"get",method:"getCanReleaseTagList",path:"canReleaseTagList",hasQuery:!1,hasData:!1},{mode:"post",method:"postCommit",path:"commit",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetLatestCommit",path:"getLatestCommit",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getReleaseInfo",path:"release/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getReleasePageList",path:"release/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewDetail",path:"viewDetail",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewDraft",path:"viewDraft",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"commonInfoCard",entityName:"common-info-card",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetById",path:"getById",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdateName",path:"updateName",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"controlConfig",entityName:"control-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCategoryList",path:"category/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoTypeRefId",path:"info/{type}/{refId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSpecialPageList",path:"special/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"customerComplaint",entityName:"customer-complaint",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSync",path:"sync",hasQuery:!1,hasData:!1},{mode:"get",method:"getUpdateFeishu",path:"updateFeishu",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dashboard",entityName:"dashboard",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dataModel",entityName:"data-model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dataSource",entityName:"data-source",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSelect",path:"select",hasQuery:!1,hasData:!0}]},{name:"dataTrace",entityName:"data-trace",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"designerCommon",entityName:"designer-common",apis:[{mode:"get",method:"getEnumModelFieldList",path:"enumModelField/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetApp",path:"getApp",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetCanBeUsedOrg",path:"getCanBeUsedOrg",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetCanBeUsedOrgUser",path:"getCanBeUsedOrgUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetUserGroupUser",path:"getUserGroupUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVisibleOrg",path:"getVisibleOrg",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVisibleOrgUser",path:"getVisibleOrgUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVisibleUser",path:"getVisibleUser",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVisibleUserAndVisibleOrgUser",path:"getVisibleUserAndVisibleOrgUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getListUserByIds",path:"listUserByIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getTableEntityModelList",path:"table-entity-model/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadFile",path:"upload/file",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadLabelImage",path:"upload/label/image",hasQuery:!1,hasData:!1},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!1,hasData:!1}]},{name:"designerLock",entityName:"designer-lock",apis:[{mode:"post",method:"postCancelOccupyPage",path:"cancelOccupyPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetPageOccupyMsg",path:"getPageOccupyMsg",hasQuery:!0,hasData:!1},{mode:"post",method:"postLockPage",path:"lockPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postOccupyPage",path:"occupyPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postUnLockPage",path:"unLockPage",hasQuery:!1,hasData:!0}]},{name:"designerOperateLog",entityName:"designer-operate-log",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"devops",entityName:"devops",apis:[{mode:"get",method:"getListAllDigitsFields",path:"listAllDigitsFields",hasQuery:!1,hasData:!1},{mode:"post",method:"postUpdateDigits",path:"updateDigits",hasQuery:!1,hasData:!0}]},{name:"dhr",entityName:"dhr",apis:[{mode:"get",method:"getLogListIsntanceId",path:"log/list/{isntanceId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postProcessApprove",path:"process/approve",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReassign",path:"process/interfere/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReturn",path:"process/interfere/return",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessJump",path:"process/jump",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReassign",path:"process/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReturn",path:"process/return",hasQuery:!1,hasData:!0}]},{name:"difyChat",entityName:"dify-chat",apis:[{mode:"post",method:"postAsyncDocument",path:"asyncDocument",hasQuery:!1,hasData:!0},{mode:"post",method:"postChat",path:"chat",hasQuery:!1,hasData:!0}]},{name:"docControlStarted",entityName:"doc-control-started",apis:[{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"docControlTaskDone",entityName:"doc-control-task-done",apis:[{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"docControlTaskTodo",entityName:"doc-control-task-todo",apis:[{mode:"get",method:"getAllUserPageList",path:"all-user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getCount",path:"count",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"docControl",entityName:"doc-control",apis:[{mode:"post",method:"postProcessApprove",path:"process/approve",hasQuery:!1,hasData:!0},{mode:"get",method:"getProcessInfo",path:"process/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postProcessInterfereReassign",path:"process/interfere/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReturn",path:"process/interfere/return",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessJump",path:"process/jump",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReassign",path:"process/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessResubmit",path:"process/resubmit",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReturn",path:"process/return",hasQuery:!1,hasData:!0},{mode:"get",method:"getProcessStartProcess",path:"process/startProcess",hasQuery:!0,hasData:!1}]},{name:"docOutline",entityName:"doc-outline",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByInstance",path:"listByInstance",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByRefId",path:"listByRefId",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSheet",path:"sheet",hasQuery:!0,hasData:!1},{mode:"get",method:"getSheetByInstance",path:"sheetByInstance",hasQuery:!0,hasData:!1},{mode:"get",method:"getSheetByRefId",path:"sheetByRefId",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"document",entityName:"document",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopy",path:"copy",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putDesignId",path:"design/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDocumentDataClean",path:"documentDataClean",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"edhrCategory",entityName:"edhr-category",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"edhrCirculationFormRelateModel",entityName:"edhr-circulationFormRelateModel",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"edhrInstance",entityName:"edhr-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByMaterialNo",path:"findByMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindMaterialNo",path:"findMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPageListGroup",path:"page/list/group",hasQuery:!1,hasData:!0},{mode:"get",method:"getReversePageList",path:"reverse/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getRunningPage",path:"running/page",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateInstanceStatusById4ArchivedId",path:"updateInstanceStatusById4Archived/{id}",hasQuery:!1,hasData:!1}]},{name:"edhrInstanceRelation",entityName:"edhr-instance-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getListTree",path:"list/tree",hasQuery:!0,hasData:!1},{mode:"get",method:"getListChild",path:"listChild",hasQuery:!0,hasData:!1}]},{name:"edhrInstanceSearchHistory",entityName:"edhr-instance-search-history",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"edhrTmpl",entityName:"edhr-tmpl",apis:[{mode:"post",method:"postControl",path:"control",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveById",path:"removeById",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"put",method:"putSetDefaultId",path:"setDefault/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0}]},{name:"eleSearch",entityName:"ele-search",apis:[{mode:"get",method:"getSearchByKey",path:"searchByKey",hasQuery:!0,hasData:!1}]},{name:"enumModel",entityName:"enum-model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSubmitWithFields",path:"submitWithFields",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateIconStateId",path:"updateIconState/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateTextStateId",path:"updateTextState/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"enumModelField",entityName:"enum-model-field",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"event",entityName:"event",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"eventLog",entityName:"event-log",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"excelTmpl",entityName:"excel-tmpl",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postConfig",path:"config",hasQuery:!1,hasData:!0},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"get",method:"getDownloadPlatId",path:"download-plat/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getDownloadId",path:"download/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInitTmpl",path:"init/tmpl",hasQuery:!0,hasData:!1},{mode:"post",method:"postInitTmpl",path:"init/tmpl",hasQuery:!0,hasData:!0},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postV1Config",path:"v1/config",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"excel",entityName:"excel",apis:[{mode:"get",method:"getDataDoImport",path:"data/doImport",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataExport",path:"data/export",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataImport",path:"data/import",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataPreview",path:"data/preview",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataReport",path:"data/report",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataValidate",path:"data/validate",hasQuery:!0,hasData:!1}]},{name:"fieldMeta",entityName:"field-meta",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCompleteDataVersion",path:"complete/dataVersion",hasQuery:!1,hasData:!1},{mode:"put",method:"putDecimalDigitsAllDigits",path:"decimal/digits/all/{digits}",hasQuery:!1,hasData:!1},{mode:"post",method:"postFuncCheck",path:"func/check",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListConditionField",path:"listConditionField",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageGetRecycledList",path:"page/getRecycledList",hasQuery:!0,hasData:!1},{mode:"put",method:"putPageRecycledRestoreFieldId",path:"page/recycledRestore/{fieldId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postPreview",path:"preview",hasQuery:!1,hasData:!0},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"put",method:"putUniqueConstraintAddModelKeyFieldKeyType",path:"unique/constraint/add/{modelKey}/{fieldKey}/{type}",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"field",entityName:"field",apis:[{mode:"delete",method:"deleteRemove",path:"remove",hasQuery:!0,hasData:!1}]},{name:"fileResource",entityName:"file-resource",apis:[{mode:"post",method:"postBase64Upload",path:"base64Upload",hasQuery:!1,hasData:!0},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpload",path:"upload",hasQuery:!0,hasData:!1}]},{name:"fileTask",entityName:"file-task",apis:[{mode:"get",method:"getStart",path:"start",hasQuery:!1,hasData:!1},{mode:"post",method:"postStatus",path:"status",hasQuery:!1,hasData:!0},{mode:"post",method:"postSubmit",path:"submit",hasQuery:!1,hasData:!0}]},{name:"file",entityName:"file",apis:[{mode:"post",method:"postPdfEncode",path:"pdf/encode",hasQuery:!0,hasData:!1},{mode:"post",method:"postPdfPage",path:"pdf/page",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadImage",path:"upload/image",hasQuery:!0,hasData:!1}]},{name:"formRelate",entityName:"formRelate",apis:[{mode:"get",method:"getCategory",path:"category",hasQuery:!0,hasData:!1},{mode:"post",method:"postCategory",path:"category",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteCategory",path:"category",hasQuery:!0,hasData:!1},{mode:"put",method:"putCategoryDrag",path:"category/drag",hasQuery:!1,hasData:!0},{mode:"put",method:"putCategoryId",path:"category/{id}",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteDeleteCategory",path:"deleteCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllCategory",path:"listAllCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllVersion",path:"listAllVersion",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListAllModelKey",path:"page/listAllModelKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListFormAppendChild",path:"page/listFormAppendChild",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListFormNoChild",path:"page/listFormNoChild",hasQuery:!0,hasData:!1}]},{name:"frontOperateLog",entityName:"front-operate-log",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"globalMethod",entityName:"global-method",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCurrentTime",path:"currentTime",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"i18NInfo",entityName:"i18n-info",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getLangDownload",path:"lang/download",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangUpload",path:"lang/upload",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putKey",path:"{key}",hasQuery:!1,hasData:!0}]},{name:"instanceRelation",entityName:"instance-relation",apis:[{mode:"post",method:"postBind",path:"bind",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteUnbind",path:"unbind",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateTitle",path:"updateTitle",hasQuery:!0,hasData:!1}]},{name:"ipaas",entityName:"ipaas",apis:[{mode:"post",method:"postWebhook",path:"webhook",hasQuery:!1,hasData:!0}]},{name:"job",entityName:"job",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCronValid",path:"cron/valid",hasQuery:!1,hasData:!0},{mode:"post",method:"postExec",path:"exec",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putStatusId",path:"status/{id}",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"jobLog",entityName:"job-log",apis:[{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"jsEngine",entityName:"js-engine",apis:[{mode:"get",method:"getExecKey",path:"exec/{key}",hasQuery:!0,hasData:!1},{mode:"post",method:"postExecKey",path:"exec/{key}",hasQuery:!0,hasData:!1},{mode:"post",method:"postExecute",path:"execute",hasQuery:!1,hasData:!0}]},{name:"label",entityName:"label",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postBtw",path:"btw",hasQuery:!1,hasData:!0},{mode:"get",method:"getBtwPageList",path:"btw/page/list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteBtwRemoveVersionById",path:"btw/removeVersionById",hasQuery:!0,hasData:!1},{mode:"put",method:"putBtwUpdateDesigner",path:"btw/updateDesigner",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopy",path:"copy",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getEntityInfo",path:"entity/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getEntityUpdateDatetimeSql",path:"entity/update/datetime/sql",hasQuery:!1,hasData:!1},{mode:"get",method:"getExecute",path:"execute",hasQuery:!1,hasData:!1},{mode:"get",method:"getExport",path:"export",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postImport",path:"import",hasQuery:!1,hasData:!1},{mode:"get",method:"getLabelCategoryTree",path:"labelCategoryTree",hasQuery:!0,hasData:!1},{mode:"post",method:"postLabelDuplicateNameCheck",path:"labelDuplicateNameCheck",hasQuery:!1,hasData:!0},{mode:"get",method:"getLabelParentDataClean",path:"labelParentDataClean",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListFont",path:"listFont",hasQuery:!1,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"get",method:"getTest",path:"test",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDesigner",path:"updateDesigner",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postXmlSetting",path:"xmlSetting",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"labelLog",entityName:"label-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"loginLog",entityName:"login-log",apis:[{mode:"post",method:"postUserLoginLogPage",path:"userLoginLogPage",hasQuery:!1,hasData:!0}]},{name:"medPro",entityName:"medPro",apis:[{mode:"post",method:"postModelMetaDataAssociation",path:"modelMeta/dataAssociation",hasQuery:!1,hasData:!0},{mode:"get",method:"getModelMetaGetSysConfig",path:"modelMeta/getSysConfig",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelMetaHasDataAssociation",path:"modelMeta/hasDataAssociation",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelMetaModelDataAssociation",path:"modelMeta/modelDataAssociation",hasQuery:!0,hasData:!1}]},{name:"medpro",entityName:"medpro",apis:[{mode:"get",method:"getEdhrAttachmentGetEdhrAttachment",path:"edhrAttachment/getEdhrAttachment",hasQuery:!0,hasData:!1}]},{name:"menuConfig",entityName:"menu-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getAvailableList",path:"available/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"mergeLog",entityName:"merge-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"messageRecord",entityName:"message-record",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"messageSetting",entityName:"message-setting",apis:[{mode:"get",method:"getFindAllByType",path:"findAllByType",hasQuery:!0,hasData:!1},{mode:"post",method:"postSendMessageByType",path:"sendMessageByType",hasQuery:!1,hasData:!0}]},{name:"messageTmpl",entityName:"message-tmpl",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListByModelKey",path:"listByModelKey",hasQuery:!0,hasData:!1},{mode:"put",method:"putOpened",path:"opened",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postProcessSend",path:"processSend",hasQuery:!1,hasData:!0},{mode:"post",method:"postSend",path:"send",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"mobileHomepage",entityName:"mobile-homepage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetSelected",path:"getSelected",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSelect",path:"select",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"mobilePage",entityName:"mobile-page",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyByIdId",path:"copyById/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"modelComprehensive",entityName:"model-comprehensive",apis:[{mode:"delete",method:"deleteBizServiceApi",path:"biz-service-api",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceApiListModelCategory",path:"biz-service-api/list/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceApiId",path:"biz-service-api/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postBizServiceApiModelCategory",path:"biz-service-api/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postBizServiceGeneralModelCategoryModelKeyBsKey",path:"biz-service/general/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getEnumInfoModelCategory",path:"enum/info/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"post",method:"postExportModelCategoryModelKeyTmplKey",path:"export/{modelCategory}/{modelKey}/{tmplKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getFieldListModelCategory",path:"field/list/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getMethodListModelCategory",path:"method/list/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelDetailListByKeysModelCategory",path:"model/detail/listByKeys/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelDetailModelCategory",path:"model/detail/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelForm",path:"model/form",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelSummary",path:"model/summary",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelSystem",path:"model/system",hasQuery:!1,hasData:!1},{mode:"post",method:"postQueryAllModelDataAndDrillData",path:"queryAllModelDataAndDrillData",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryFieldValueByRefChainDataModelCategory",path:"queryFieldValueByRefChainData/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryModelDataAndDrillData",path:"queryModelDataAndDrillData",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefChainDataModelCategory",path:"queryRefChainData/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefDataModelCategory",path:"queryRefData/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefDataByIdModelCategory",path:"queryRefDataById/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefDataByIdsModelCategory",path:"queryRefDataByIds/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQuerySearchRefChainData",path:"querySearchRefChainData",hasQuery:!1,hasData:!0},{mode:"get",method:"getSubModelList",path:"sub-model/list",hasQuery:!0,hasData:!1}]},{name:"modelData",entityName:"model-data",apis:[{mode:"post",method:"postAllModelLiquibaseSoftDeleteDataClean",path:"allModelLiquibaseSoftDeleteDataClean",hasQuery:!1,hasData:!1},{mode:"post",method:"postAllModelSoftDeleteDataClean",path:"allModelSoftDeleteDataClean",hasQuery:!1,hasData:!1},{mode:"get",method:"getCheckFieldValueExist",path:"checkFieldValueExist",hasQuery:!0,hasData:!1},{mode:"post",method:"postQueryRefData",path:"queryRefData",hasQuery:!1,hasData:!0},{mode:"post",method:"postSingleModelSoftDeleteDataClean",path:"singleModelSoftDeleteDataClean",hasQuery:!0,hasData:!1}]},{name:"modelMeta",entityName:"model-meta",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getAggList",path:"agg/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAggModel",path:"agg/model",hasQuery:!0,hasData:!1},{mode:"get",method:"getByKeys",path:"by/keys",hasQuery:!0,hasData:!1},{mode:"put",method:"putConstantModelKey",path:"constant/{modelKey}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataPermissionList",path:"data-permission/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"put",method:"putDisplayModelKeyFieldKey",path:"display/{modelKey}/{fieldKey}",hasQuery:!1,hasData:!1},{mode:"get",method:"getEr",path:"er",hasQuery:!1,hasData:!1},{mode:"get",method:"getFindAllByTypeIn",path:"findAllByTypeIn",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAll",path:"list-all",hasQuery:!1,hasData:!1},{mode:"get",method:"getListAllModelAndFieldByName",path:"listAllModelAndFieldByName",hasQuery:!0,hasData:!1},{mode:"get",method:"getListMasterModel",path:"listMasterModel",hasQuery:!0,hasData:!1},{mode:"get",method:"getListModelReferencedBy",path:"listModelReferencedBy",hasQuery:!0,hasData:!1},{mode:"get",method:"getListSlaveModel",path:"listSlaveModel",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageGetRecycledList",path:"page/getRecycledList",hasQuery:!0,hasData:!1},{mode:"put",method:"putPageRecycledRestoreModelKey",path:"page/recycledRestore/{modelKey}",hasQuery:!1,hasData:!1},{mode:"get",method:"getPermissionEnabledList",path:"permission-enabled/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPermissionRelation",path:"permission/relation",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"put",method:"putSupportMessageModelKeyEnabled",path:"support-message/{modelKey}/{enabled}",hasQuery:!1,hasData:!1},{mode:"get",method:"getSupportProcess",path:"support-process",hasQuery:!1,hasData:!1},{mode:"get",method:"getTranslateModelFieldExp",path:"translateModelFieldExp",hasQuery:!0,hasData:!1},{mode:"get",method:"getUnrelatedList",path:"unrelated/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0},{mode:"put",method:"putModelKeyEnabled",path:"{modelKey}/{enabled}",hasQuery:!1,hasData:!1}]},{name:"modelMethod",entityName:"model-method",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataModelList",path:"data-model/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewModelList",path:"view-model/list",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"modelPermissionRelation",entityName:"model-permission-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"model",entityName:"model",apis:[{mode:"delete",method:"deleteRemove",path:"remove",hasQuery:!0,hasData:!1}]},{name:"onlineFormCategory",entityName:"online-form-category",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"onlineFormChangeHistory",entityName:"online-form-change-history",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"onlineFormInstance",entityName:"online-form-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppendixFormList",path:"appendix/form/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataIds",path:"dataIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"get",method:"getDhrFormList",path:"dhr/form/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByMaterialNo",path:"findByMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByMaterialNoAndDocOutlineId",path:"findByMaterialNoAndDocOutlineId",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByOfTmplIdAndEdhrInstanceId",path:"findByOfTmplIdAndEdhrInstanceId",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByTmplIdAndMaterialNo",path:"findByTmplIdAndMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindOfTaskBySerialNo4Change",path:"findOfTaskBySerialNo4Change",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindPage4EdhrInstance",path:"findPage4EdhrInstance",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindRelationInfoById",path:"findRelationInfoById",hasQuery:!0,hasData:!1},{mode:"get",method:"getFormPageList",path:"form/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetOne",path:"getOne",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetRelatedProduct",path:"getRelatedProduct",hasQuery:!0,hasData:!1},{mode:"get",method:"getHoldLockUser",path:"hold/lock/user",hasQuery:!0,hasData:!1},{mode:"post",method:"postHoldUnlock",path:"hold/unlock",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByRecordNo",path:"info/byRecordNo",hasQuery:!0,hasData:!1},{mode:"post",method:"postInfos",path:"infos",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getQuery",path:"query",hasQuery:!0,hasData:!1},{mode:"post",method:"postRefreshSnapshot",path:"refresh/snapshot",hasQuery:!0,hasData:!1},{mode:"get",method:"getRelateFormPageList",path:"relate/form/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRelatedInstAppend",path:"related/inst/append",hasQuery:!1,hasData:!0},{mode:"post",method:"postRelatedInstBind",path:"related/inst/bind",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteRelatedInstRemove",path:"related/inst/remove",hasQuery:!0,hasData:!1},{mode:"post",method:"postRelatedInstUnbind",path:"related/inst/unbind",hasQuery:!1,hasData:!0},{mode:"get",method:"getReverseTracePageList",path:"reverse/trace/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postTask",path:"task",hasQuery:!1,hasData:!0},{mode:"post",method:"postTaskPageList",path:"task/page/list",hasQuery:!0,hasData:!0},{mode:"delete",method:"deleteTaskRemoveOfInstId",path:"task/remove/{ofInstId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getTaskResendOfInstId",path:"task/resend/{ofInstId}",hasQuery:!1,hasData:!1},{mode:"put",method:"putTaskUpdate",path:"task/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putTaskId",path:"task/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postTaskForm",path:"taskForm",hasQuery:!1,hasData:!0},{mode:"get",method:"getTracePageList",path:"trace/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDescription",path:"updateDescription",hasQuery:!1,hasData:!0}]},{name:"onlineFormLog",entityName:"online-form-log",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"onlineFormTmplLog",entityName:"online-form-tmpl-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"onlineFormTmpl",entityName:"online-form-tmpl",apis:[{mode:"post",method:"postCopyCustomizeId",path:"copy/customize/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getFormModelsId",path:"formModels/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postInfos",path:"infos",hasQuery:!1,hasData:!0},{mode:"get",method:"getListBaseAndProcessForm",path:"listBaseAndProcessForm",hasQuery:!0,hasData:!1},{mode:"get",method:"getListOnlineFormModels",path:"listOnlineFormModels",hasQuery:!0,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelId",path:"model/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postRelease",path:"release",hasQuery:!0,hasData:!0},{mode:"delete",method:"deleteRemoveById",path:"removeById",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveField",path:"saveField",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveOperation",path:"saveOperation",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"put",method:"putSetDefaultId",path:"setDefault/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getStash",path:"stash",hasQuery:!0,hasData:!1},{mode:"put",method:"putStashId",path:"stash/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerId",path:"updateDesigner/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0}]},{name:"onlineForm",entityName:"online-form",apis:[{mode:"post",method:"postBaseSubmit",path:"base/submit",hasQuery:!1,hasData:!0},{mode:"post",method:"postBizBizServiceSummary",path:"biz/bizServiceSummary",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataInitProtocolData",path:"data-init/protocol/data",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataInitProtocolFieldMeta",path:"data-init/protocol/fieldMeta",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataInitProtocolList",path:"data-init/protocol/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postProcessAbandon",path:"process/abandon",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessApprove",path:"process/approve",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessApproveQualification",path:"process/approveQualification",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessChange",path:"process/change",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessControl",path:"process/control",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReassign",path:"process/interfere/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReturn",path:"process/interfere/return",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessJump",path:"process/jump",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReassign",path:"process/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessResubmitOf",path:"process/resubmitOf",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReturn",path:"process/return",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessSave",path:"process/save",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessSubmit",path:"process/submit",hasQuery:!1,hasData:!0},{mode:"post",method:"postStash",path:"stash",hasQuery:!1,hasData:!0}]},{name:"onlineUserSummary",entityName:"online-user-summary",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"online",entityName:"online",apis:[{mode:"get",method:"getClients",path:"clients",hasQuery:!0,hasData:!1},{mode:"get",method:"getExit",path:"exit",hasQuery:!0,hasData:!1},{mode:"get",method:"getMaxOnlineUser",path:"maxOnlineUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"openapi",entityName:"openapi",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetApiInfo",path:"getApiInfo",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetApiInfos",path:"getApiInfos",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"padPage",entityName:"pad-page",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyByIdId",path:"copyById/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pageDesignerLog",entityName:"page-designer-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"permission",entityName:"permission",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"plat",entityName:"plat",apis:[{mode:"post",method:"postAppGlobal",path:"app/global",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppGlobalInfo",path:"app/global/info",hasQuery:!1,hasData:!1},{mode:"post",method:"postBase",path:"base",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrg",path:"org",hasQuery:!1,hasData:!0},{mode:"post",method:"postSecurity",path:"security",hasQuery:!1,hasData:!0}]},{name:"pmProcessDefinition",entityName:"pm-process-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllProcHasPublishedVersion",path:"listAllProcHasPublishedVersion",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListByPage",path:"page/listByPage",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessDefinitionVersion",entityName:"pm-process-definition-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postDeploy",path:"deploy",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveAndDeploy",path:"saveAndDeploy",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdateProcessUser",path:"updateProcessUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getId",path:"",hasQuery:!0,hasData:!1}]},{name:"pmProcessEngine",entityName:"pm-process-engine",apis:[{mode:"post",method:"postApprove",path:"approve",hasQuery:!1,hasData:!0},{mode:"get",method:"getHiTaskExtension",path:"hi-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getInitialTaskExtension",path:"initial-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllAssignees",path:"listAllAssignees",hasQuery:!1,hasData:!1},{mode:"get",method:"getListAllInitiators",path:"listAllInitiators",hasQuery:!1,hasData:!1},{mode:"get",method:"getModel",path:"model",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postProcExecute",path:"procExecute",hasQuery:!1,hasData:!0},{mode:"get",method:"getProcInstExtension",path:"procInstExtension",hasQuery:!0,hasData:!1},{mode:"post",method:"postReassign",path:"reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postRefuse",path:"refuse",hasQuery:!1,hasData:!0},{mode:"post",method:"postReject",path:"reject",hasQuery:!1,hasData:!0},{mode:"post",method:"postResubmit",path:"resubmit",hasQuery:!1,hasData:!0},{mode:"post",method:"postStartProcInst",path:"startProcInst",hasQuery:!1,hasData:!0},{mode:"get",method:"getTaskExtension",path:"task/extension",hasQuery:!0,hasData:!1},{mode:"post",method:"postTerminate",path:"terminate",hasQuery:!1,hasData:!0},{mode:"post",method:"postWithdraw",path:"withdraw",hasQuery:!1,hasData:!0}]},{name:"printDesigner",entityName:"print-designer",apis:[{mode:"delete",method:"deleteCategory",path:"category",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllVersion",path:"listAllVersion",hasQuery:!0,hasData:!1},{mode:"get",method:"getRdoPageBaseList",path:"rdo/page/base/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getRdoPageList",path:"rdo/page/list",hasQuery:!0,hasData:!1}]},{name:"printLog",entityName:"print-log",apis:[{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postPatchwork",path:"patchwork",hasQuery:!1,hasData:!0}]},{name:"print",entityName:"print",apis:[{mode:"get",method:"getBtwFileTree",path:"btwFileTree",hasQuery:!1,hasData:!1},{mode:"post",method:"postGenerateZplCode",path:"generateZplCode",hasQuery:!1,hasData:!0},{mode:"post",method:"postLabelBackEndPrint",path:"labelBackEndPrint",hasQuery:!1,hasData:!0},{mode:"get",method:"getPrintDropdownList",path:"printDropdownList",hasQuery:!1,hasData:!1},{mode:"post",method:"postSendPrintData",path:"sendPrintData",hasQuery:!1,hasData:!0}]},{name:"process",entityName:"process",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processApprovalLog",entityName:"process-approval-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getApproveHistory",path:"approveHistory",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processApproveUser",entityName:"process-approve-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processDefinition",entityName:"process-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postInitProcessAndProcessVersionType",path:"initProcessAndProcessVersion/{type}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processDefinitionVersion",entityName:"process-definition-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByParentId",path:"listByParentId",hasQuery:!0,hasData:!1},{mode:"post",method:"postPublishId",path:"publish/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getId",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processEngine",entityName:"process-engine",apis:[{mode:"post",method:"postExecute",path:"execute",hasQuery:!1,hasData:!0},{mode:"get",method:"getHiTaskExtension",path:"hi-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getInitialTaskExtension",path:"initial-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getModel",path:"model",hasQuery:!0,hasData:!1},{mode:"post",method:"postReassignment",path:"reassignment",hasQuery:!1,hasData:!0},{mode:"get",method:"getTaskExtension",path:"task/extension",hasQuery:!0,hasData:!1}]},{name:"processEvent",entityName:"process-event",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processGraph",entityName:"process-graph",apis:[{mode:"get",method:"getGraphInfo",path:"graphInfo",hasQuery:!0,hasData:!1}]},{name:"processInstance",entityName:"process-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processInstanceRelation",entityName:"process-instance-relation-",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processMessageUser",entityName:"process-message-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processNodeDefinition",entityName:"process-node-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processPathUser",entityName:"process-path-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processPath",entityName:"process-path",apis:[{mode:"get",method:"getFindAllByOfInstanceId",path:"findAllByOfInstanceId",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindAllByProcessInstanceId",path:"findAllByProcessInstanceId",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindAllByTmplId",path:"findAllByTmplId",hasQuery:!0,hasData:!1}]},{name:"processTaskDone",entityName:"process-task-done",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"processTaskTodo",entityName:"process-task-todo",apis:[{mode:"get",method:"getAllUserPageList",path:"all-user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"processVersion",entityName:"process-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postActivateId",path:"activate/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putDeploy",path:"deploy",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"processTest",entityName:"processTest",apis:[{mode:"get",method:"getCompleteTask",path:"completeTask",hasQuery:!0,hasData:!1},{mode:"get",method:"getDeploy",path:"deploy",hasQuery:!0,hasData:!1},{mode:"get",method:"getReadXml",path:"readXml",hasQuery:!0,hasData:!1},{mode:"get",method:"getSignal",path:"signal",hasQuery:!0,hasData:!1},{mode:"get",method:"getStart",path:"start",hasQuery:!0,hasData:!1},{mode:"get",method:"getUpdateVar",path:"updateVar",hasQuery:!0,hasData:!1},{mode:"get",method:"getWithdraw",path:"withdraw",hasQuery:!0,hasData:!1}]},{name:"productRelease",entityName:"product-release",apis:[{mode:"get",method:"getGetProductReleaseByMaterialNo",path:"getProductReleaseByMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetProductReleaseForm",path:"getProductReleaseForm",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetProductReleaseInstByMaterialNo",path:"getProductReleaseInstByMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"publishLog",entityName:"publish-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCreateRelease",path:"createRelease",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPublishToProd",path:"publishToProd",hasQuery:!1,hasData:!0},{mode:"post",method:"postPublishToTest",path:"publishToTest",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"regexp",entityName:"regexp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"report",entityName:"report",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDeploy",path:"deploy",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfos",path:"infos",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListType",path:"list/type",hasQuery:!1,hasData:!1},{mode:"get",method:"getListModelReport",path:"listModelReport",hasQuery:!0,hasData:!1},{mode:"get",method:"getListSystemModelFields",path:"listSystemModelFields",hasQuery:!0,hasData:!1},{mode:"get",method:"getListSystemModels",path:"listSystemModels",hasQuery:!1,hasData:!1},{mode:"put",method:"putMove",path:"move",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putUndeployId",path:"undeploy/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getUserPermissionId",path:"user/permission/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postViewPageList",path:"view/page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"reportDataSet",entityName:"report-data-set",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postGenColumn",path:"gen-column",hasQuery:!0,hasData:!0},{mode:"get",method:"getGenSql",path:"genSql",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postListByPage4DataSet",path:"listByPage4DataSet",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPreview",path:"preview",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdateName",path:"updateName",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"reportData",entityName:"report-data",apis:[{mode:"post",method:"postListByPage",path:"listByPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postListByPage4Cross",path:"listByPage4Cross",hasQuery:!1,hasData:!0},{mode:"post",method:"postListStatistic",path:"listStatistic",hasQuery:!1,hasData:!0}]},{name:"role",entityName:"role",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putIdEnabled",path:"{id}/{enabled}",hasQuery:!1,hasData:!1}]},{name:"rolePermission",entityName:"role-permission",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"post",method:"postBulk",path:"bulk",hasQuery:!1,hasData:!0},{mode:"get",method:"getMenuList",path:"menu/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemove",path:"remove",hasQuery:!1,hasData:!0}]},{name:"sandboxConfig",entityName:"sandbox-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSync",path:"sync",hasQuery:!1,hasData:!1},{mode:"post",method:"postSyncPage",path:"sync/page",hasQuery:!1,hasData:!0},{mode:"post",method:"postSyncScript",path:"sync/script",hasQuery:!1,hasData:!0},{mode:"get",method:"getValidStatus",path:"valid/status",hasQuery:!0,hasData:!1},{mode:"get",method:"getVisitCheck",path:"visit/check",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"script",entityName:"script",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByKey",path:"infoByKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"scriptAssistant",entityName:"script-assistant",apis:[{mode:"get",method:"getRag",path:"rag",hasQuery:!1,hasData:!1},{mode:"post",method:"postScriptComplete",path:"scriptComplete",hasQuery:!1,hasData:!0}]},{name:"scriptVersion",entityName:"script-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putSetVersionActive",path:"setVersionActive",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"scriptVersionLog",entityName:"script-version-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"serviceOrchestration",entityName:"service-orchestration",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByKey",path:"infoByKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"serviceOrchestrationVersion",entityName:"service-orchestration-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putSetVersionActive",path:"setVersionActive",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"serviceOrchestrationVersionLog",entityName:"service-orchestration-version-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"signHistory",entityName:"sign-history",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"signLog",entityName:"sign-log",apis:[{mode:"post",method:"postOperators",path:"operators",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0}]},{name:"signature",entityName:"signature",apis:[{mode:"post",method:"postGetSignatureImage",path:"getSignatureImage",hasQuery:!1,hasData:!0},{mode:"post",method:"postGetSignatureUploadOrWriteImage",path:"getSignatureUploadOrWriteImage",hasQuery:!1,hasData:!0}]},{name:"sqlViewModel",entityName:"sql-view-model",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"sqlView",entityName:"sql-view",apis:[{mode:"post",method:"postBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1}]},{name:"stash",entityName:"stash",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByClientKey",path:"findByClientKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"subModelProcess",entityName:"sub-model-process",apis:[{mode:"post",method:"postAllSubModelDataClean",path:"allSubModelDataClean",hasQuery:!1,hasData:!1}]},{name:"sysConfig",entityName:"sys-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"systemVar",entityName:"system-var",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetSystemVarByKeys",path:"getSystemVarByKeys",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVarByKeys",path:"getVarByKeys",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListSystemVarCache",path:"listSystemVarCache",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceLog",entityName:"trace-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByTraceId",path:"findByTraceId",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceLogDetails",entityName:"trace-log-details",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppDataTracePageList",path:"app-data-trace/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoTree",path:"infoTree",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoTreeById",path:"infoTreeById",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListByRecodeId",path:"page/listByRecodeId",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceMainline",entityName:"trace-mainline",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceMainlineExt",entityName:"trace-mainline-ext",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceSetting",entityName:"trace-setting",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getTreeByModelKey",path:"treeByModelKey",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userGroup",entityName:"user-group",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getSearch",path:"search",hasQuery:!0,hasData:!1},{mode:"get",method:"getUserRolePermissionList",path:"user/role/permission/list",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userGroupRelation",entityName:"user-group-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postBatch",path:"batch",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"viewModel",entityName:"view-model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getFieldInfo",path:"field/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSql",path:"sql",hasQuery:!0,hasData:!1},{mode:"put",method:"putSupportMessageModelKeyEnabled",path:"support-message/{modelKey}/{enabled}",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"wash",entityName:"wash",apis:[{mode:"get",method:"getWashDictLabelField",path:"washDictLabelField",hasQuery:!1,hasData:!1},{mode:"get",method:"getWashEdhrAndOfInst",path:"washEdhrAndOfInst",hasQuery:!1,hasData:!1}]},{name:"webpage",entityName:"webpage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCancelOccupyWebPage",path:"cancelOccupyWebPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyByIdId",path:"copyById/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postGetWebPageOccupyMsg",path:"getWebPageOccupyMsg",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postLockWebPage",path:"lockWebPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postOccupyWebPage",path:"occupyWebPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUnLockWebPage",path:"unLockWebPage",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"api",entityName:"api",apis:[{mode:"post",method:"postAppCreateBranch",path:"app/createBranch",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppCreateImportApp",path:"app/createImportApp",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppCreateIndex",path:"app/createIndex",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppCreateSelfBuiltApp",path:"app/createSelfBuiltApp",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppDeleteIndex",path:"app/deleteIndex",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteAppDropProdDb",path:"app/dropProdDb",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteAppDropTestDb",path:"app/dropTestDb",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppFieldMetaList",path:"app/field-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetAppMenu",path:"app/getAppMenu",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetCurrentBranch",path:"app/getCurrentBranch",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetIndex",path:"app/getIndex",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetLatestBranch",path:"app/getLatestBranch",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetLatestCommit",path:"app/getLatestCommit",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppImportVersion",path:"app/importVersion",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppImportVersionPreview",path:"app/importVersionPreview",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppListBranch",path:"app/listBranch",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppMerge",path:"app/merge",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppMergeInfo",path:"app/merge/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppMergePageList",path:"app/merge/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppMergePreview",path:"app/mergePreview",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppModelMetaList",path:"app/model-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppPublishLogInfo",path:"app/publishLogInfo",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppPublishLogPageList",path:"app/publishLogPageList",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppReportInfos",path:"app/report/infos",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppRevert",path:"app/revert",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppSwitchBranch",path:"app/switchBranch",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppVisibleMenu",path:"app/visible/menu",hasQuery:!0,hasData:!0},{mode:"post",method:"postAuditLogExport",path:"audit-log/export",hasQuery:!1,hasData:!0},{mode:"post",method:"postAuditLogInfo",path:"audit-log/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getAuditLogModules",path:"audit-log/modules",hasQuery:!0,hasData:!1},{mode:"get",method:"getAuditLogOperateTypes",path:"audit-log/operateTypes",hasQuery:!0,hasData:!1},{mode:"get",method:"getAuditLogOperators",path:"audit-log/operators",hasQuery:!0,hasData:!1},{mode:"post",method:"postAuditLogPageList",path:"audit-log/page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postAuditLogSave",path:"audit-log/save",hasQuery:!1,hasData:!0},{mode:"post",method:"postDatamoveExecute",path:"datamove/execute",hasQuery:!1,hasData:!0},{mode:"post",method:"postDatasourceColumnFormat",path:"datasource/column-format",hasQuery:!0,hasData:!0},{mode:"get",method:"getDatasourceInfo",path:"datasource/info",hasQuery:!1,hasData:!1},{mode:"post",method:"postEdhrProdTransferAllWorkItem",path:"edhr/prod/transferAllWorkItem",hasQuery:!1,hasData:!0},{mode:"post",method:"postEdhrTestTransferAllWorkItem",path:"edhr/test/transferAllWorkItem",hasQuery:!1,hasData:!0},{mode:"get",method:"getIeDataReport",path:"ie/data/report",hasQuery:!0,hasData:!1},{mode:"post",method:"postModelComprehensiveBizServiceGeneralBsModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/generalBs/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postModelComprehensiveBizServiceModelCategoryModelKeyUpload",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/upload",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcessListAll",path:"process/list/all",hasQuery:!1,hasData:!1}]}],Lh=[{name:"agent",entityName:"agent",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"apk",entityName:"apk",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetActiveApp",path:"getActiveApp",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetIp",path:"getIp",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postUploadApk",path:"upload/apk",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!1}]},{name:"app",entityName:"app",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppCleanUpId",path:"appCleanUp/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putAppRestoreIdUserId",path:"appRestore/{id}/{userId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getCheckAppMaintainerInTenantAppId",path:"checkAppMaintainerInTenant/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postCreateBranchAppId",path:"createBranch/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDatamoveApps",path:"datamove/apps",hasQuery:!1,hasData:!1},{mode:"put",method:"putDisableId",path:"disable/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putEnableId",path:"enable/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getFieldMetaList",path:"field-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetAppCountTenantId",path:"getAppCount/{tenantId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetCurrentBranchAppId",path:"getCurrentBranch/{appId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetLatestCommitAppId",path:"getLatestCommit/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetMobileDbFileUrlAppId",path:"getMobileDbFileUrl/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postImportVersionAppId",path:"importVersion/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getImportVersionPreviewAppId",path:"importVersionPreview/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListBranchAppId",path:"listBranch/{appId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getMergeInfoAppId",path:"merge/info/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getMergePageListAppId",path:"merge/page/list/{appId}",hasQuery:!0,hasData:!1},{mode:"post",method:"postMergeAppId",path:"merge/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getMergePreviewAppId",path:"mergePreview/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelMetaList",path:"model-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageGetListReleasedApp",path:"page/getListReleasedApp",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListReleasedApp",path:"page/listReleasedApp",hasQuery:!0,hasData:!1},{mode:"get",method:"getPublishLogInfoAppId",path:"publishLogInfo/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getPublishLogPageListAppId",path:"publishLogPageList/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getReportInfos",path:"report/infos",hasQuery:!0,hasData:!1},{mode:"post",method:"postRevertAppId",path:"revert/{appId}",hasQuery:!1,hasData:!0},{mode:"post",method:"postSwitchBranchAppId",path:"switchBranch/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getTenantApps",path:"tenant/apps",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantRoleRolesApps",path:"tenant/role/{roles}/apps",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantRoleRolesAppsCount",path:"tenant/role/{roles}/apps/count",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadAppPkg",path:"upload/appPkg",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appMember",entityName:"app-member",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putTransferIdTargetUserId",path:"transfer/{id}/{targetUserId}",hasQuery:!1,hasData:!1},{mode:"put",method:"putIdRole",path:"{id}/{role}",hasQuery:!1,hasData:!1}]},{name:"appSetting",entityName:"app-setting",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckAppUserAdmin",path:"checkAppUserAdmin",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckAppUserVisibility",path:"checkAppUserVisibility",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteDeveloperDelete",path:"developer/delete",hasQuery:!0,hasData:!1},{mode:"post",method:"postDeveloperSaveSettingBatch",path:"developer/saveSettingBatch",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfoByAppId",path:"infoByAppId",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveSetting",path:"saveSetting",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveSettingBatch",path:"saveSettingBatch",hasQuery:!1,hasData:!1}]},{name:"assets",entityName:"assets",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMoveAssetIdCategoryCategoryId",path:"move/{assetId}/category/{categoryId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadCategoryId",path:"upload/{categoryId}",hasQuery:!1,hasData:!1}]},{name:"auditLog",entityName:"audit-log",apis:[{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getModules",path:"modules",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperateTypes",path:"operateTypes",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0}]},{name:"biApp",entityName:"bi-app",apis:[{mode:"get",method:"getExportAppid",path:"export/{appid}",hasQuery:!1,hasData:!1}]},{name:"biDataSet",entityName:"bi-data-set",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPreview",path:"preview",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"biFileDatasetConfig",entityName:"bi-file-dataset-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListDatasetid",path:"list-datasetid",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"biFile",entityName:"bi-file",apis:[{mode:"post",method:"postUpload",path:"upload",hasQuery:!0,hasData:!1}]},{name:"biShare",entityName:"bi-share",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"category",entityName:"category",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postAddDefaultCusComp",path:"addDefaultCusComp",hasQuery:!1,hasData:!1},{mode:"delete",method:"deleteDeleteDatasetCategory",path:"deleteDatasetCategory",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListDatasetCategory",path:"listDatasetCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveDatasetCategory",path:"saveDatasetCategory",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dashboard",entityName:"dashboard",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dataSource",entityName:"data-source",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"put",method:"put",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putEnabled",path:"enabled",hasQuery:!1,hasData:!0},{mode:"post",method:"postExecuteUpdate",path:"executeUpdate",hasQuery:!1,hasData:!0},{mode:"get",method:"getFindById",path:"findById",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postQueryData",path:"queryData",hasQuery:!0,hasData:!1},{mode:"post",method:"postSqlColumnInformation",path:"sql/column/information",hasQuery:!1,hasData:!0},{mode:"post",method:"postTestConnect",path:"testConnect",hasQuery:!1,hasData:!0}]},{name:"dataTrace",entityName:"data-trace",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"database",entityName:"database",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"post",method:"postAddDatabase",path:"addDatabase",hasQuery:!1,hasData:!0},{mode:"post",method:"postApiDataFlatten",path:"api-data-flatten",hasQuery:!1,hasData:!1},{mode:"get",method:"getColumnInformation",path:"column/information",hasQuery:!0,hasData:!1},{mode:"get",method:"getDbInformation",path:"db/information",hasQuery:!0,hasData:!1},{mode:"post",method:"postGetDatabaseByPage",path:"getDatabaseByPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveDatabase",path:"removeDatabase",hasQuery:!0,hasData:!1},{mode:"post",method:"postRunSql",path:"runSql",hasQuery:!1,hasData:!0},{mode:"get",method:"getTableDataPageList",path:"table/data/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getTableInformation",path:"table/information",hasQuery:!0,hasData:!1},{mode:"post",method:"postTestApi",path:"testApi",hasQuery:!1,hasData:!0},{mode:"post",method:"postTestDatabaseConn",path:"testDatabaseConn",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDatabase",path:"updateDatabase",hasQuery:!1,hasData:!0},{mode:"get",method:"getViewInformation",path:"view/information",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dataset",entityName:"dataset",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getChangeCategory",path:"change-category",hasQuery:!0,hasData:!1},{mode:"get",method:"getColumnValue",path:"column-value",hasQuery:!0,hasData:!1},{mode:"post",method:"postCreateRequest",path:"create-request",hasQuery:!0,hasData:!1},{mode:"post",method:"postEditRequest",path:"edit-request",hasQuery:!0,hasData:!0},{mode:"put",method:"putEncode",path:"encode",hasQuery:!0,hasData:!1},{mode:"post",method:"postGenColumn",path:"gen-column",hasQuery:!0,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoNoHeader",path:"infoNoHeader",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListCategoryDataset",path:"list-category-dataset",hasQuery:!0,hasData:!1},{mode:"get",method:"getListIds",path:"list/ids",hasQuery:!0,hasData:!1},{mode:"get",method:"getListKeys",path:"list/keys",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRunScript",path:"runScript",hasQuery:!1,hasData:!0},{mode:"post",method:"postRunScriptNoHeader",path:"runScriptNoHeader",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasetLog",entityName:"dataset-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceDevops",entityName:"datasource-devops",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceMove",entityName:"datasource-move",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceMoveData",entityName:"datasource-move-data",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceMoveDetail",entityName:"datasource-move-detail",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"deviceInterconnection",entityName:"device-interconnection",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getData",path:"data",hasQuery:!0,hasData:!1},{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!1},{mode:"post",method:"postImport",path:"import",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"deviceInterconnectionParam",entityName:"device-interconnection-param",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!1},{mode:"post",method:"postImport",path:"import",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"deviceParamRef",entityName:"device-param-ref",apis:[{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"externalMessage",entityName:"external-message",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"fileTask",entityName:"file-task",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postBatchDownload",path:"batch/download",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"file",entityName:"file",apis:[{mode:"post",method:"postDataPreview",path:"data-preview",hasQuery:!1,hasData:!0},{mode:"post",method:"postUploadCommon",path:"upload-common",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadDataset",path:"upload-dataset",hasQuery:!1,hasData:!1},{mode:"post",method:"postUploadImage",path:"upload/image",hasQuery:!0,hasData:!1}]},{name:"frontRelease",entityName:"front-release",apis:[{mode:"get",method:"getCleanCache",path:"cleanCache",hasQuery:!1,hasData:!1}]},{name:"i18NConfig",entityName:"i18n-config",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"i18NInfo",entityName:"i18n-info",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postExternalLangSync",path:"external/lang/sync",hasQuery:!1,hasData:!1},{mode:"get",method:"getLangDownload",path:"lang/download",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangJson",path:"lang/json",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangTrans",path:"lang/trans",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangUpload",path:"lang/upload",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putKey",path:"{key}",hasQuery:!1,hasData:!0}]},{name:"internalMessage",entityName:"internal-message",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putReadAll",path:"read/all",hasQuery:!1,hasData:!1},{mode:"put",method:"putReadId",path:"read/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getUnreadCount",path:"unread/count",hasQuery:!1,hasData:!1}]},{name:"invokeLog",entityName:"invoke-log",apis:[{mode:"get",method:"getExport",path:"export",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"knowledgeBase",entityName:"knowledge-base",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"knowledgeBaseChunk",entityName:"knowledge-base-chunk",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"knowledgeBaseDoc",entityName:"knowledge-base-doc",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"ldap",entityName:"ldap",apis:[{mode:"post",method:"postUploadCertificate",path:"upload/certificate",hasQuery:!1,hasData:!1}]},{name:"licenseUnbindLog",entityName:"license-unbind-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"license",entityName:"license",apis:[{mode:"get",method:"getActivate",path:"activate",hasQuery:!0,hasData:!1},{mode:"post",method:"postActivates",path:"activates",hasQuery:!0,hasData:!1},{mode:"post",method:"postActivatesOffline",path:"activatesOffline",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckLicense",path:"checkLicense",hasQuery:!1,hasData:!1},{mode:"get",method:"getClients",path:"clients",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetAppBasicInfo",path:"getAppBasicInfo",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetExpireMsg",path:"getExpireMsg",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetUsers",path:"getUsers",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getModuleAuth",path:"moduleAuth",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getShareTag",path:"shareTag",hasQuery:!0,hasData:!1},{mode:"get",method:"getSourceTag",path:"sourceTag",hasQuery:!0,hasData:!1},{mode:"get",method:"getUnbind",path:"unbind",hasQuery:!0,hasData:!1},{mode:"get",method:"getUninstall",path:"uninstall",hasQuery:!1,hasData:!1},{mode:"get",method:"getVerify",path:"verify",hasQuery:!1,hasData:!1}]},{name:"loginLog",entityName:"login-log",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"login",entityName:"login",apis:[{mode:"post",method:"postCheckApp",path:"checkApp",hasQuery:!1,hasData:!0},{mode:"post",method:"postSendMsg",path:"sendMsg",hasQuery:!1,hasData:!0},{mode:"post",method:"postSign",path:"sign",hasQuery:!1,hasData:!0},{mode:"get",method:"getSignOut",path:"signOut",hasQuery:!0,hasData:!1},{mode:"get",method:"getUserAppAuth",path:"userAppAuth",hasQuery:!0,hasData:!1}]},{name:"manager",entityName:"manager",apis:[{mode:"get",method:"getPlatPageList",path:"plat/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantPageList",path:"tenant/page/list",hasQuery:!0,hasData:!1}]},{name:"messageSetting",entityName:"message-setting",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetTypeCount",path:"getTypeCount",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMqttSend",path:"mqtt/send",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSendEmailMessage",path:"sendEmailMessage",hasQuery:!1,hasData:!0},{mode:"post",method:"postSendMessage",path:"sendMessage",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"minioFile",entityName:"minio-file",apis:[{mode:"post",method:"postBase64Upload",path:"base64Upload",hasQuery:!1,hasData:!0},{mode:"get",method:"getDownload",path:"download",hasQuery:!0,hasData:!1}]},{name:"model",entityName:"model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"modelProvider",entityName:"model-provider",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"navMenu",entityName:"nav-menu",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetSelected",path:"getSelected",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSelect",path:"select",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"navPage",entityName:"nav-page",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"openapiGroup",entityName:"openapi-group",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoAssociationModel",path:"info/associationModel",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoOpenapiInfo",path:"info/openapi/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoPageList",path:"info/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListDownload",path:"list/download",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"openapiKeyGrant",entityName:"openapi-key-grant",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOpenapiList",path:"openapi/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getOpenapiTenantList",path:"openapi/tenantList",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"org",entityName:"org",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postInputCheck",path:"inputCheck",hasQuery:!1,hasData:!0},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postOrgHavePersonCheck",path:"orgHavePersonCheck",hasQuery:!1,hasData:!0},{mode:"post",method:"postTransferAndDelete",path:"transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserAdd",path:"user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserCreateAndAdd",path:"user/createAndAdd",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getUserListCurrentTenantUser",path:"user/listCurrentTenantUser",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserMove",path:"user/move",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserPageList",path:"user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRemove",path:"user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserUpdate",path:"user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"orgUserPicker",entityName:"org-user-picker",apis:[{mode:"get",method:"getManagementUserListByIds",path:"management/user/listByIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantManagementOrgList",path:"tenant/management/org/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getTenantManagementOrgUserPageList",path:"tenant/management/org/user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantManagementUserListByIds",path:"tenant/management/user/listByIds",hasQuery:!0,hasData:!1}]},{name:"permission",entityName:"permission",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"plat",entityName:"plat",apis:[{mode:"get",method:"getAppGlobalInfoAppId",path:"app/global/info/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppGlobalAppId",path:"app/global/{appId}",hasQuery:!1,hasData:!0},{mode:"post",method:"postBase",path:"base",hasQuery:!1,hasData:!0},{mode:"post",method:"postDingtalk",path:"dingtalk",hasQuery:!1,hasData:!0},{mode:"post",method:"postEmail",path:"email",hasQuery:!1,hasData:!0},{mode:"post",method:"postFeishu",path:"feishu",hasQuery:!1,hasData:!0},{mode:"get",method:"getGlobalDisabledDevelop",path:"global/disabled/develop",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postLogin",path:"login",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrg",path:"org",hasQuery:!1,hasData:!0},{mode:"post",method:"postSecurity",path:"security",hasQuery:!1,hasData:!0},{mode:"get",method:"getTenantCfg",path:"tenant/cfg",hasQuery:!1,hasData:!1},{mode:"get",method:"getTenantDisabledDevelop",path:"tenant/disabled/develop",hasQuery:!0,hasData:!1},{mode:"post",method:"postTheme",path:"theme",hasQuery:!1,hasData:!0},{mode:"post",method:"postUploadCertFile",path:"uploadCertFile",hasQuery:!1,hasData:!1},{mode:"post",method:"postUserRole",path:"user-role",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteUserRole",path:"user-role",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRoleReset",path:"user-role/reset",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserField",path:"user/field",hasQuery:!1,hasData:!1},{mode:"get",method:"getVersion",path:"version",hasQuery:!1,hasData:!1},{mode:"post",method:"postWatermark",path:"watermark",hasQuery:!1,hasData:!0},{mode:"post",method:"postWxwork",path:"wxwork",hasQuery:!1,hasData:!0}]},{name:"plugin",entityName:"plugin",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCancelUpload",path:"cancelUpload",hasQuery:!1,hasData:!0},{mode:"put",method:"putDeleteCategory",path:"deleteCategory",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetImages",path:"getImages",hasQuery:!0,hasData:!1},{mode:"post",method:"postGetTenantCompList",path:"getTenantCompList",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUploadZip",path:"uploadZip",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pluginVersion",entityName:"plugin-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessDelegate",entityName:"pm-process-delegate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessDelegateDetail",entityName:"pm-process-delegate-detail",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessInstance",entityName:"pm-process-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmTaskDone",entityName:"pm-task-done",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmTaskTodo",entityName:"pm-task-todo",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pnPage",entityName:"pn-page",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pnProject",entityName:"pn-project",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getChangeCategory",path:"change-category",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopy",path:"copy",hasQuery:!1,hasData:!0},{mode:"get",method:"getExport",path:"export",hasQuery:!0,hasData:!1},{mode:"post",method:"postImport",path:"import",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoNoHeader",path:"infoNoHeader",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRelease",path:"release",hasQuery:!1,hasData:!0},{mode:"post",method:"postSavePage",path:"savePage",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"printLog",entityName:"print-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"printResource",entityName:"print-resource",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetIpAddressStatus",path:"getIpAddressStatus",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetPrintCount",path:"getPrintCount",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByMacAddress",path:"listByMacAddress",hasQuery:!0,hasData:!1},{mode:"post",method:"postPrintTest",path:"printTest",hasQuery:!1,hasData:!1},{mode:"post",method:"postSendPrintData",path:"sendPrintData",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateRemarkId",path:"updateRemark/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"regexp",entityName:"regexp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"released",entityName:"released",apis:[{mode:"delete",method:"deleteAppDeletePublishedAppByTestId",path:"app/deletePublishedAppByTestId",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppDisableAppId",path:"app/disable/{appId}",hasQuery:!1,hasData:!1},{mode:"put",method:"putAppEnableAppId",path:"app/enable/{appId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppPublishedAppGetById",path:"app/publishedApp/getById",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppPublishedAppList",path:"app/publishedApp/list",hasQuery:!0,hasData:!1}]},{name:"rolePermission",entityName:"role-permission",apis:[{mode:"get",method:"getPlatList",path:"plat/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPlatRemove",path:"plat/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatSingle",path:"plat/single",hasQuery:!1,hasData:!0},{mode:"get",method:"getTenantList",path:"tenant/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postTenantRemove",path:"tenant/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postTenantSingle",path:"tenant/single",hasQuery:!1,hasData:!0}]},{name:"role",entityName:"role",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postPlat",path:"plat",hasQuery:!1,hasData:!0},{mode:"delete",method:"deletePlat",path:"plat",hasQuery:!0,hasData:!1},{mode:"get",method:"getPlatInfo",path:"plat/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPlatPageList",path:"plat/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putPlatIdEnabled",path:"plat/{id}/{enabled}",hasQuery:!1,hasData:!1},{mode:"post",method:"postTenant",path:"tenant",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteTenant",path:"tenant",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantInfo",path:"tenant/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantPageList",path:"tenant/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putTenantIdEnabled",path:"tenant/{id}/{enabled}",hasQuery:!1,hasData:!1}]},{name:"sealManagement",entityName:"seal-management",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckName",path:"checkName",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdatePassword",path:"updatePassword",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"seatMessage",entityName:"seat-message",apis:[{mode:"get",method:"getClose",path:"close",hasQuery:!1,hasData:!1}]},{name:"seat",entityName:"seat",apis:[{mode:"get",method:"getAppGetVisibleOrg",path:"app/getVisibleOrg",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppGetVisibleOrgUser",path:"app/getVisibleOrgUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppGetVisibleUser",path:"app/getVisibleUser",hasQuery:!1,hasData:!1},{mode:"post",method:"postAuth",path:"auth",hasQuery:!1,hasData:!1},{mode:"get",method:"getListAuthed",path:"listAuthed",hasQuery:!0,hasData:!1},{mode:"get",method:"getListNotAuth",path:"listNotAuth",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemoveAuth",path:"removeAuth",hasQuery:!0,hasData:!1},{mode:"get",method:"getTotalinfos",path:"totalinfos",hasQuery:!1,hasData:!1}]},{name:"shortcut",entityName:"shortcut",apis:[{mode:"post",method:"postMenu",path:"menu",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteMenu",path:"menu",hasQuery:!0,hasData:!1},{mode:"get",method:"getMenuInfo",path:"menu/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getMenuList",path:"menu/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getMenuListAppMenu",path:"menu/list/AppMenu",hasQuery:!0,hasData:!1},{mode:"get",method:"getMenuPageList",path:"menu/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMenuSaveBatch",path:"menu/saveBatch",hasQuery:!1,hasData:!1},{mode:"put",method:"putMenuId",path:"menu/{id}",hasQuery:!1,hasData:!0}]},{name:"signLog",entityName:"sign-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postOperators",path:"operators",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"sms",entityName:"sms",apis:[{mode:"post",method:"postGetSignsAndTemplates",path:"getSignsAndTemplates",hasQuery:!1,hasData:!0},{mode:"post",method:"postSendMsg",path:"sendMsg",hasQuery:!1,hasData:!0}]},{name:"startedProcess",entityName:"started-process",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1}]},{name:"taskDelegate",entityName:"task-delegate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCancelId",path:"cancel/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"taskDone",entityName:"task-done",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1}]},{name:"taskTodo",entityName:"task-todo",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1}]},{name:"tenantDeveloper",entityName:"tenant-developer",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemoveAndHandover",path:"RemoveAndHandover",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetUserMaintainerApp",path:"getUserMaintainerApp",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"tenant",entityName:"tenant",apis:[{mode:"put",method:"putDisableId",path:"disable/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putEnableId",path:"enable/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetTenantIdByAppId",path:"getTenantIdByAppId",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetTencentByDomain",path:"getTencentByDomain",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByPortOrDomain",path:"info/byPortOrDomain",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrg",path:"management/org",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteManagementOrg",path:"management/org",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrgDrag",path:"management/org/drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getManagementOrgInfoId",path:"management/org/info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getManagementOrgList",path:"management/org/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postManagementOrgTransferAndDelete",path:"management/org/transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementOrgUserAdd",path:"management/org/user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementOrgUserCreateAndAdd",path:"management/org/user/createAndAdd",hasQuery:!1,hasData:!0},{mode:"get",method:"getManagementOrgUserInfo",path:"management/org/user/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrgUserMove",path:"management/org/user/move",hasQuery:!1,hasData:!0},{mode:"get",method:"getManagementOrgUserPageList",path:"management/org/user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrgUserRemove",path:"management/org/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementOrgUserUpdate",path:"management/org/user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putManagementOrgId",path:"management/org/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementUser",path:"management/user",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteManagementUser",path:"management/user",hasQuery:!1,hasData:!0},{mode:"put",method:"putManagementUserDisable",path:"management/user/disable",hasQuery:!0,hasData:!1},{mode:"put",method:"putManagementUserEnable",path:"management/user/enable",hasQuery:!0,hasData:!1},{mode:"get",method:"getManagementUserInfoId",path:"management/user/info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getManagementUserPageList",path:"management/user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementUserRemove",path:"management/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementUserResetDefaultPwd",path:"management/user/reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementUserResetDefaultSignPwd",path:"management/user/reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"put",method:"putManagementUserId",path:"management/user/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDomainId",path:"updateDomain/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserRole",path:"user-role",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteUserRole",path:"user-role",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRoleReset",path:"user-role/reset",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"user",entityName:"user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfoByIds",path:"infoByIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getLastResetPwd",path:"last/reset/pwd",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByTenantId",path:"listByTenantId",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgPlatImport",path:"org/plat/import",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgPlatTmpl",path:"org/plat/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrgTenantImport",path:"org/tenant/import",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgTenantImport4App",path:"org/tenant/import4App",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgTenantTmpl",path:"org/tenant/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrgTenantTmpl4App",path:"org/tenant/tmpl4App",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPlatImport",path:"plat/import",hasQuery:!1,hasData:!1},{mode:"post",method:"postPlatTmpl",path:"plat/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetAllpwd",path:"reset/allpwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultPwd",path:"reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultSignPwd",path:"reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetPwd",path:"reset/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postSettings",path:"settings",hasQuery:!1,hasData:!0},{mode:"post",method:"postTenantImport",path:"tenant/import",hasQuery:!1,hasData:!1},{mode:"post",method:"postTenantImport4App",path:"tenant/import4App",hasQuery:!1,hasData:!1},{mode:"post",method:"postTenantTmpl",path:"tenant/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postTenantTmpl4App",path:"tenant/tmpl4App",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userExtra",entityName:"user-extra",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userInfoLog",entityName:"user-info-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userPasswordHistory",entityName:"user-password-history",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"workbenchComponent",entityName:"workbench-component",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"workbenchComponentRelation",entityName:"workbench-component-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdatePositionJson",path:"updatePositionJson",hasQuery:!1,hasData:!0},{mode:"put",method:"putWorkbenchComponentActiveId",path:"workbenchComponentActive/{id}",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"clearTempDir",entityName:"clearTempDir",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"deleteNotUseDir",entityName:"deleteNotUseDir",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"getAttachmentInfoByPage",entityName:"getAttachmentInfoByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteCompInfo",entityName:"deleteCompInfo",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"deleteCompInfoType",entityName:"deleteCompInfoType",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllCompInfo",entityName:"getAllCompInfo",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getAllCompInfoByTypeId",entityName:"getAllCompInfoByTypeId",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllCompInfoType",entityName:"getAllCompInfoType",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getCompInfoById",entityName:"getCompInfoById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCompInfoByPage",entityName:"getCompInfoByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getCompInfoTypeById",entityName:"getCompInfoTypeById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCompInfoTypeByPage",entityName:"getCompInfoTypeByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"importCompInfoJson",entityName:"importCompInfoJson",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveCompInfo",entityName:"saveCompInfo",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveCompInfoType",entityName:"saveCompInfoType",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteCsvDatasource",entityName:"deleteCsvDatasource",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllCsvDatasource",entityName:"getAllCsvDatasource",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getContentToArray",entityName:"getContentToArray",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCsvDatasourceById",entityName:"getCsvDatasourceById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCsvDatasourceByName",entityName:"getCsvDatasourceByName",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCsvDatasourceByPage",entityName:"getCsvDatasourceByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"parseCsvOrExcel",entityName:"parseCsvOrExcel",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"saveCsvDatasource",entityName:"saveCsvDatasource",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getDesignerData",entityName:"getDesignerData",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"deleteEchartTheme",entityName:"deleteEchartTheme",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllEchartTheme",entityName:"getAllEchartTheme",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getEchartThemeById",entityName:"getEchartThemeById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getEchartThemeByPage",entityName:"getEchartThemeByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getMyEchartThemes",entityName:"getMyEchartThemes",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getSysEchartThemes",entityName:"getSysEchartThemes",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"saveEchartTheme",entityName:"saveEchartTheme",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"buildEnshrineCompLibrary",entityName:"buildEnshrineCompLibrary",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"deleteEnshrineComp",entityName:"deleteEnshrineComp",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"deleteEnshrineCompGroup",entityName:"deleteEnshrineCompGroup",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllEnshrineCompGroups",entityName:"getAllEnshrineCompGroups",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getEnshrineCompByPage",entityName:"getEnshrineCompByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getEnshrineCompGroupById",entityName:"getEnshrineCompGroupById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getEnshrineCompGroupByPage",entityName:"getEnshrineCompGroupByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getLayoutItemObjById",entityName:"getLayoutItemObjById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"saveEnshrineComp",entityName:"saveEnshrineComp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveEnshrineCompGroup",entityName:"saveEnshrineCompGroup",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"searchEnshrineComp",entityName:"searchEnshrineComp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"api",entityName:"api",apis:[{mode:"get",method:"getAgentScriptAgent",path:"agent/scriptAgent",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsGetUserMasterOrg",path:"apaas-utils/getUserMasterOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsGetUserMasterOrgId",path:"apaas-utils/getUserMasterOrgId",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserAllOrgId",path:"apaas-utils/listUserAllOrgId",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserAllOrgIdIncludeParent",path:"apaas-utils/listUserAllOrgIdIncludeParent",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserAllPrincipalOrgId",path:"apaas-utils/listUserAllPrincipalOrgId",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserDirectSubordinate",path:"apaas-utils/listUserDirectSubordinate",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderOrg",path:"apaas-utils/listUserIdUnderOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderUserAllOrg",path:"apaas-utils/listUserIdUnderUserAllOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderUserAllPrincipalOrg",path:"apaas-utils/listUserIdUnderUserAllPrincipalOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderUserMasterOrg",path:"apaas-utils/listUserIdUnderUserMasterOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsPrintDropdownList",path:"apaas-utils/printDropdownList",hasQuery:!1,hasData:!1},{mode:"get",method:"getApaasUtilsSearchAllOrgOrUser",path:"apaas-utils/searchAllOrgOrUser",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppGrantedUser",path:"app-granted-user",hasQuery:!0,hasData:!0},{mode:"post",method:"postAppGrantedUserBatch",path:"app-granted-user/batch",hasQuery:!0,hasData:!0},{mode:"get",method:"getAppGrantedUserFindAllByDeleted",path:"app-granted-user/findAllByDeleted",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserGrantedStatistic",path:"app-granted-user/grantedStatistic",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserList",path:"app-granted-user/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserPageList",path:"app-granted-user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserRemoveAndTransfer",path:"app-granted-user/removeAndTransfer",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserUngrantedList",path:"app-granted-user/ungranted/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppSettingInfoByAppId",path:"app-setting/infoByAppId",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppFindAllByTenantId",path:"app/findAllByTenantId",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppGetDestBySource",path:"app/getDestBySource",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetSourceByDest",path:"app/getSourceByDest",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppListAppGrantedUserId",path:"app/listAppGrantedUserId",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppLockOrUnlockToPaas",path:"app/lockOrUnlockToPaas",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrg",path:"app/org",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteAppOrg",path:"app/org",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppOrgDrag",path:"app/org/drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppOrgInfoId",path:"app/org/info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppOrgList",path:"app/org/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppOrgSaveList",path:"app/org/save-list",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppOrgTransferAndDelete",path:"app/org/transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserAdd",path:"app/org/user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserCreateAndAdd",path:"app/org/user/createAndAdd",hasQuery:!0,hasData:!0},{mode:"get",method:"getAppOrgUserInfo",path:"app/org/user/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppOrgUserMove",path:"app/org/user/move",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserPageList",path:"app/org/user/page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserRemove",path:"app/org/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserUpdate",path:"app/org/user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putAppOrgId",path:"app/org/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppProdPublished",path:"app/prodPublished",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppPublished",path:"app/published",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppTestPublished",path:"app/testPublished",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppUpdateApaasAppSetting",path:"app/updateApaasAppSetting",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUser",path:"app/user",hasQuery:!0,hasData:!0},{mode:"delete",method:"deleteAppUser",path:"app/user",hasQuery:!0,hasData:!0},{mode:"put",method:"putAppUserDisable",path:"app/user/disable",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppUserEnable",path:"app/user/enable",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppUserInfoId",path:"app/user/info/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppUserPageList",path:"app/user/page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUserRemove",path:"app/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUserResetDefaultPwd",path:"app/user/reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUserResetDefaultSignPwd",path:"app/user/reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUserSaveList",path:"app/user/save-list",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppUserId",path:"app/user/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataSourceExecuteSelect",path:"data-source/executeSelect",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataSourceExecuteUpdate",path:"data-source/executeUpdate",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataSourceFindByKeyAndEnv",path:"data-source/findByKeyAndEnv",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataSourcePageList",path:"data-source/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataSourceQueryData",path:"data-source/queryData",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataSourceSelect",path:"data-source/select",hasQuery:!0,hasData:!0},{mode:"get",method:"getDataSourceType",path:"data-source/type",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteDevopsSbx",path:"devops/sbx",hasQuery:!0,hasData:!1},{mode:"get",method:"getDevopsSbxRedoData",path:"devops/sbx/redo/data",hasQuery:!0,hasData:!1},{mode:"post",method:"postFileTaskList",path:"file-task/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postFileTaskStatus",path:"file-task/status",hasQuery:!1,hasData:!0},{mode:"post",method:"postFileTaskSubmit",path:"file-task/submit",hasQuery:!1,hasData:!0},{mode:"get",method:"getKnowledgeBaseFindByIds",path:"knowledge-base/findByIds",hasQuery:!0,hasData:!1},{mode:"post",method:"postLoginLogUserLoginLogPage",path:"login-log/userLoginLogPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getLoginSsoOauth2Authorize",path:"login/sso/oauth2/authorize",hasQuery:!0,hasData:!1},{mode:"get",method:"getLoginSsoOauth2Debug",path:"login/sso/oauth2/debug",hasQuery:!1,hasData:!1},{mode:"get",method:"getModelInfo",path:"model/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getMsgFindAllByType",path:"msg/findAllByType",hasQuery:!0,hasData:!1},{mode:"post",method:"postMsgSendEmailMessage",path:"msg/sendEmailMessage",hasQuery:!1,hasData:!0},{mode:"post",method:"postMsgSendMessage",path:"msg/sendMessage",hasQuery:!1,hasData:!0},{mode:"post",method:"postOpenapiGroup",path:"openapi-group",hasQuery:!1,hasData:!0},{mode:"put",method:"putOpenapiGroupEnabled",path:"openapi-group/enabled",hasQuery:!0,hasData:!1},{mode:"put",method:"putOpenapiGroupOpened",path:"openapi-group/opened",hasQuery:!0,hasData:!1},{mode:"put",method:"putOpenapiKeyGrantUpdateApi",path:"openapi-key-grant/updateApi",hasQuery:!0,hasData:!1},{mode:"get",method:"getOrgUserPickerAppGetCanBeUsedOrg",path:"org-user-picker/app/getCanBeUsedOrg",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgUserPickerAppGetCanBeUsedOrgUser",path:"org-user-picker/app/getCanBeUsedOrgUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getOrgUserPickerAppGetVisibleOrg",path:"org-user-picker/app/getVisibleOrg",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgUserPickerAppGetVisibleOrgUser",path:"org-user-picker/app/getVisibleOrgUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getOrgUserPickerAppGetVisibleUser",path:"org-user-picker/app/getVisibleUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getOrgUserPickerAppListUserByIds",path:"org-user-picker/app/listUserByIds",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgFindAllByIdIn",path:"org/findAllByIdIn",hasQuery:!1,hasData:!1},{mode:"get",method:"getOrgInfoId",path:"org/info/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postOrgList",path:"org/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getOrgListAll",path:"org/listAll",hasQuery:!1,hasData:!1},{mode:"post",method:"postOrgPrincipals",path:"org/principals",hasQuery:!1,hasData:!1},{mode:"get",method:"getPlatAppGlobalInfoAppId",path:"plat/app/global/info/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postPlatAppGlobalAppId",path:"plat/app/global/{appId}",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatBase",path:"plat/base",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatOrg",path:"plat/org",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatSecurity",path:"plat/security",hasQuery:!1,hasData:!0},{mode:"post",method:"postPrintLogPageList",path:"print-log/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getPrintBtwFileTree",path:"print/btwFileTree",hasQuery:!1,hasData:!1},{mode:"get",method:"getPrintBtwTmplExist",path:"print/btwTmplExist",hasQuery:!0,hasData:!1},{mode:"get",method:"getPrintExchangePrinterName",path:"print/exchangePrinterName",hasQuery:!0,hasData:!1},{mode:"post",method:"postPrintSendPrintData",path:"print/sendPrintData",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteRegexpDelete",path:"regexp/delete",hasQuery:!0,hasData:!1},{mode:"get",method:"getRegexpInfo",path:"regexp/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getRegexpList",path:"regexp/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getRegexpPageList",path:"regexp/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRegexpSave",path:"regexp/save",hasQuery:!1,hasData:!0},{mode:"put",method:"putRegexpUpdateId",path:"regexp/update/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postReportDataExport",path:"report-data/export",hasQuery:!1,hasData:!0},{mode:"get",method:"getReportDataInfo",path:"report-data/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postReportDataList",path:"report-data/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getReportDataPageInfo",path:"report-data/page-info",hasQuery:!0,hasData:!1},{mode:"get",method:"getReportDataProjectInfo",path:"report-data/project-info",hasQuery:!0,hasData:!1},{mode:"post",method:"postReportDetailDetail",path:"report-detail/detail",hasQuery:!1,hasData:!0},{mode:"post",method:"postReportDetailListStatistic",path:"report-detail/listStatistic",hasQuery:!1,hasData:!0},{mode:"post",method:"postSignLogOperators",path:"signLog/operators",hasQuery:!1,hasData:!0},{mode:"post",method:"postSignLogPageList",path:"signLog/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getTenantInfoByPortOrDomain",path:"tenant/info/byPortOrDomain",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantOrgList",path:"tenant/org/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postTenantUserSyncFromThirdParty",path:"tenant/userSyncFromThirdParty",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserOrgPrincipal",path:"user/org/principal",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserOrgPrincipals",path:"user/org/principals",hasQuery:!0,hasData:!1}]},{name:"copyFilter",entityName:"copyFilter",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteFilter",entityName:"deleteFilter",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllFilter",entityName:"getAllFilter",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getFilterById",entityName:"getFilterById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"saveFilter",entityName:"saveFilter",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"httpQuery",entityName:"httpQuery",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"clearLogLogin",entityName:"clearLogLogin",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"getLogLoginByPage",entityName:"getLogLoginByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"clearLogOperate",entityName:"clearLogOperate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"deleteLogOperateById",entityName:"deleteLogOperateById",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getPnLogOperateByPage",entityName:"getPnLogOperateByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"uncompressLogOperateLayoutStr",entityName:"uncompressLogOperateLayoutStr",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteMapGeoJson",entityName:"deleteMapGeoJson",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAdCodeByAliasName",entityName:"getAdCodeByAliasName",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getGeoJsonByAdCode",entityName:"getGeoJsonByAdCode",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getMapBaseInfoByLevel",entityName:"getMapBaseInfoByLevel",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getMapGeoJsonById",entityName:"getMapGeoJsonById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getMapGeoJsonByPage",entityName:"getMapGeoJsonByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveMapGeoJson",entityName:"saveMapGeoJson",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deletePageSnapshoot",entityName:"deletePageSnapshoot",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageSnapshootByEnabled",entityName:"getPageSnapshootByEnabled",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageSnapshootById",entityName:"getPageSnapshootById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageSnapshootsByPageId",entityName:"getPageSnapshootsByPageId",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"savePageSnapshoot",entityName:"savePageSnapshoot",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"setPageSnapshootEnabled",entityName:"setPageSnapshootEnabled",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"setPageSnapshootEnabledByPageId",entityName:"setPageSnapshootEnabledByPageId",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"attachmentResourceTransfer",entityName:"attachmentResourceTransfer",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deletePageTemplate",entityName:"deletePageTemplate",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"exportTemplate",entityName:"exportTemplate",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1},{mode:"head",method:"head",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"post",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"put",path:"",hasQuery:!0,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"options",method:"options",path:"",hasQuery:!0,hasData:!1},{mode:"patch",method:"patch",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllPageTemplate",entityName:"getAllPageTemplate",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getPageTemplateById",entityName:"getPageTemplateById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageTemplateByPage",entityName:"getPageTemplateByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPageTemplateForCreatePageForm",entityName:"getPageTemplateForCreatePageForm",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPageTemplateLayout",entityName:"getPageTemplateLayout",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageTemplateThemeJson",entityName:"getPageTemplateThemeJson",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"importTemplate",entityName:"importTemplate",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1},{mode:"head",method:"head",path:"",hasQuery:!1,hasData:!1},{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1},{mode:"put",method:"put",path:"",hasQuery:!1,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!1,hasData:!1},{mode:"options",method:"options",path:"",hasQuery:!1,hasData:!1},{mode:"patch",method:"patch",path:"",hasQuery:!1,hasData:!1}]},{name:"savePageTemplate",entityName:"savePageTemplate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"toggleEnabled",entityName:"toggleEnabled",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deletePnResource",entityName:"deletePnResource",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"deletePnResourceGroup",entityName:"deletePnResourceGroup",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getMyAllPnResourceGroup",entityName:"getMyAllPnResourceGroup",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getMyPnResourceByPage",entityName:"getMyPnResourceByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPnResourceGroupById",entityName:"getPnResourceGroupById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"resourceTransferToPage",entityName:"resourceTransferToPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"savePnResourceGroup",entityName:"savePnResourceGroup",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"uploadFiles",entityName:"uploadFiles",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1},{mode:"head",method:"head",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"post",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"put",path:"",hasQuery:!0,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"options",method:"options",path:"",hasQuery:!0,hasData:!1},{mode:"patch",method:"patch",path:"",hasQuery:!0,hasData:!1}]},{name:"getMyShareCustomCompByPage",entityName:"getMyShareCustomCompByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getShareCustomCompById",entityName:"getShareCustomCompById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getShareCustomCompByPage",entityName:"getShareCustomCompByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveShareCustomComp",entityName:"saveShareCustomComp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPageTotalCount",entityName:"getPageTotalCount",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getProjectTotalCount",entityName:"getProjectTotalCount",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]}];var dt=(e=>(e.JSON="application/json;charset=UTF-8",e.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",e.FORM_DATA="multipart/form-data;charset=UTF-8",e))(dt||{});function Ah(e,t){return Z(X(e),t,(a,s)=>{if(typeof a=="object"&&typeof s=="object")return Z(X(a),s,(r,o)=>Array.isArray(r)?ne(r,o,ge):void 0)})}const pt=Pe.create();class w{static use(t){t(pt)}static get(t,a={},s={},r={}){return this.request(t,a,s,{...r,method:"GET"})}static post(t,a={},s={},r={}){return this.request(t,a,s,{...r,method:"POST"})}static put(t,a={},s={},r={}){return this.request(t,a,s,{...r,method:"PUT"})}static delete(t,a={},s={},r={}){return this.request(t,a,s,{...r,method:"DELETE"})}static options(t,a={},s={},r={}){return this.request(t,a,s,{...r,method:"OPTIONS"})}static patch(t,a={},s={},r={}){return this.request(t,a,s,{...r,method:"PATCH"})}static head(t,a={},s={},r={}){return this.request(t,a,s,{...r,method:"HEAD"})}static async request(t,a,s,r={}){if(s){const d=Ue.stringify(s,{arrayFormat:"brackets"});d&&(t.includes("?")?t+=`&${d}`:t+=`?${d}`)}const o=await pt.request(Ah({url:t,data:JSON.stringify(a||{}),params:s,timeout:120*1e3,headers:{"Content-Type":dt.JSON}},r));if(o.status>=200&&o.status<300)return o.data;throw o}}class bh{constructor(t,a){return this.url=t,new Proxy(this,{get(s,r){if(!(r in s)){const o=a.apis.find(d=>d.method===r);if(o){const d=`_${o.mode}`;o.hasData&&o.hasQuery?s[r]=(u,p,y)=>s[d](o.path,p,u,y):o.hasData?s[r]=function(u,p){return s[d](o.path,u,void 0,p)}:o.hasQuery?s[r]=function(u,p){return s[d](o.path,void 0,u,p)}:s[r]=function(u){return s[d](o.path,void 0,void 0,u)}}}return s[r]}})}_put(t,a,s,r){return w.put(s?.id?C.join(this.url,t,s.id):C.join(this.url,t),a||{},s||{},r)}_get(t,a,s,r){return w.get(C.join(this.url,t),a||{},s||{},r)}_delete(t,a,s,r){return w.delete(C.join(this.url,t),a||{},s||{},r)}_post(t,a,s,r){return w.post(C.join(this.url,t),a||{},s||{},r)}_options(t,a,s,r){return w.options(C.join(this.url,t),a||{},s||{},r)}_patch(t,a,s,r){return w.patch(C.join(this.url,t),a||{},s||{},r)}_head(t,a,s,r){return w.head(C.join(this.url,t),a||{},s||{},r)}}class lt{constructor(t,a){return new Proxy(this,{get(s,r){const o=a.find(d=>d.name===r);if(o)return r in s||(s[r]=new bh(C.join(t,o.entityName),o)),s[r]}})}}const ut={apaas:new lt("/gct-apaas/api",Ih),platform:new lt("/gct-platform/api",Lh)};class it{constructor(t){this.model=t,this.init()}evt=new Je;state=new De;item={};provider={};context={};params={};fields=[];modelMap={};init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent(),this.calcState()}initEvent(){}calcState(){}initFormItems(t){t.forEach(a=>{let s=null;if((a.type==="item"||a.type==="hidden")&&(this.fields.push(a.name),this.modelMap[a.name]=a),a.type==="item"&&(s=_gct.register.formItem.create(`${a.type}___${a.editor.type}___${a.name}`),s||(s=_gct.register.formItem.create(`${a.type}___${a.editor.type}`))),s||(s=_gct.register.formItem.create(a.type)),!s){console.error(`未找到表单项提供者:${a.type}`,a);return}if(this.provider[a.name]=s,a.type==="item"){const r=a;this.item[r.name]=s.createController(this,r)}else if(a.type==="hidden"){const r=a;this.item[r.name]=s.createController(this,r)}else if(a.type==="container"||a.container){const r=a;this.item[a.name]=s.createController(this,r),r.children&&this.initFormItems(r.children)}})}calcHidden(){Object.keys(this.item).forEach(a=>{const s=this.item[a];if(s.model.hidden){const r=s.model.hidden(this,s,this.state.data);r!=null&&(s.state.visible=!r)}})}getData(){const t={};return this.fields.forEach(a=>{const s=this.item[a];s&&(s.state.visible===!0||s.model.type==="hidden")&&(t[s.key]=s.value)}),t}resetData(){this.fields.forEach(t=>{const a=this.item[t];a&&a.reset()})}async load(){try{if(!this.model.loadRequest)return{};this.state.loading=!0;const t=await this.model.loadRequest({id:this.context.id});return this.fields.forEach(a=>{const s=this.item[a];s&&(s.value=t[s.key]),s.defaultValue()}),this.state.loaded=!0,t}finally{this.state.loading=!1}}destroy(){this.state.destroyed=!0,this.evt.reset(),this.fields.forEach(t=>{const a=this.item[t];a&&a.destroy()})}validate(){return Promise.resolve(!0)}validateItem(t){return Promise.resolve(!0)}loaded(){this.calcHidden(),this.fields.forEach(t=>{this.item[t].defaultValue()}),this.calcState()}mounted(){}}h("GctFormController",it);class Nh extends it{initEvent(){super.initEvent(),this.evt.on("change",(t,a,s)=>{if(this.model.watch){const o=this.model.watch[t];o&&o(this,a,s)}const r=this.item[t];r&&r.model.watch&&r.model.watch(this,r,a,s),a!=s&&this.calcHidden(),this.model.autosave===!0&&this.state.loading===!1&&this.autoSave()})}autoSave(){return this.save()}save(){const t=this.getData();return this.state.isNew===!0&&this.model.newRequest?this.model.newRequest(t):this.model.updateRequest?this.model.updateRequest({id:this.context.id},t):Promise.resolve(t)}}h("EditFormController",Nh);function vh(e){const t=e();return t.state=te(t.state),_e(()=>t.destroy()),t}class Ae{model;constructor(t){this.model=t}}h("EditorController",Ae);class mt{constructor(t){this.model=t,this.init()}evt=new Je;context={};params={};state=new De;item={};provider={};load(){throw new Error("Method not implemented.")}loaded(){throw new Error("Method not implemented.")}destroy(){throw new Error("Method not implemented.")}validate(){throw new Error("Method not implemented.")}validateItem(t){throw new Error("Method not implemented.")}mounted(){throw new Error("Method not implemented.")}init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent()}initEvent(){}initFormItems(t){t.forEach(a=>{let s=null;if(a.type==="item"&&(s=_gct.register.formItem.create(`${a.type}___${a.editor.type}___${a.name}`),s||(s=_gct.register.formItem.create(`${a.type}___${a.editor.type}`))),s||(s=_gct.register.formItem.create(a.type)),!s){console.error(`未找到表单项提供者:${a.type}`,a);return}if(this.provider[a.name]=s,a.type==="item"){const r=a;this.item[r.name]=s.createController(this,a)}else if(a.type==="container"){const r=a;this.item[a.name]=s.createController(this,a),r.children&&this.initFormItems(r.children)}})}getData(){return{}}resetData(){Object.keys(this.state.data).forEach(a=>{const s=this.state.data[a];s&&(typeof s=="object"?Array.isArray(s)?this.state.data[a]=[]:this.state.data[a]={}:this.state.data[a]=null)})}}h("FormController",mt);function Th(e){const t=new mt(e);return t.state=te(t.state),t}class H{constructor(t,a){this.form=t,this.model=a,this.init()}state=this.crateItemState();get data(){return this.form.state.data}init(){}destroy(){this.state.destroyed=!0}crateItemState(){return new U}}h("FormItemBasicController",H);function Rh(e){const t=e();return t.state=te(t.state),t}class Sh extends H{type="collapse-pane";crateItemState(){return new ke}}h("FormCollapsePaneController",Sh);class Eh extends H{type="collapse";crateItemState(){return new xe}}h("FormCollapseController",Eh);class Ph extends H{type="tab";crateItemState(){return new Fe}}h("FormTabController",Ph);class Oh extends H{type="tab-pane";crateItemState(){return new Ge}}h("FormTabPaneController",Oh);class Mh extends H{type="group";crateItemState(){return new Ke}}h("FormGroupController",Mh);class be extends H{get key(){return this.model.field??this.model.name}get value(){return this.form.state.data[this.key]}set value(t){const a=X(this.form.state.data[this.key]);this.form.state.data[this.key]=t,this.form.evt.emit("change",this.key,t,a),this.state.value=t}get editorValue(){return this.model.fields?this.model.fields.map(t=>this.form.item[t].value):this.value}set editorValue(t){this.model.fields?this.model.fields.forEach((a,s)=>{this.form.item[a].value=t?.[s]}):this.value=t}init(){if(super.init(),this.model.type!=="hidden"){const{editor:t}=this.model;this.state.readonly=t.readonly,t.disabled!=null&&(this.state.disabled=t.disabled)}if(this.model.dictionary){const{mode:t}=this.model.dictionary;t==="static"&&(this.state.options=this.model.dictionary.items||[])}}defaultValue(){this.form.state.data[this.key]===void 0&&this.model.defaultValue!==void 0&&(this.form.state.data[this.key]=this.model.defaultValue)}reset(){this.model.defaultValue!==void 0?this.value=this.model.defaultValue:this.value=void 0}crateItemState(){return new ce}}h("FormEditItemController",be);class Ch extends be{type="item";async loadDictionary(t){if(this.state.options.length>0)return this.state.options;this.state.options=[],this.state.loading=!0;try{return this.model.dictionary?this.state.options=await _gct.dictionary.asyncGetByConfig(this.model.dictionary,t):this.model.dictionaryTag&&(this.state.options=await _gct.dictionary.asyncGet(this.model.dictionaryTag,t)),this.state.options}finally{this.state.loading=!1}}clearDictionary(){this.state.options=[]}crateItemState(){return new Ve}}h("FormItemController",Ch);class _h extends be{type="hidden"}h("FormHiddenItemController",_h);class Bh extends Ae{}h("LengthUnitEditorController",Bh);class Uh extends Ae{}h("ColorEditorController",Uh);function nt(){return fe("formController")}function wh(e){let t=null;if(e){const s=nt().item[e];s&&(t=ae({get(){return s.value},set(r){typeof r=="string"&&(r=r.trim()),!(typeof r!="object"&&s.value==r)&&(s.value=r)}}))}else{let a=ye().proxy;const s=a.$props,r=a.$emit;t=ae({get:()=>s.value,set:o=>{typeof o=="string"&&(o=o.trim()),!(typeof o!="object"&&s.value==o)&&r("update:value",o)}}),a=null}return t}function kh(e,t){let a=ye().proxy;const s=a.$props,r=a.$emit,o=e?e.length:0,d=t?t.length:0,u=ae({get:()=>{if(!s.value)return"";let p=s.value;return o>0&&p.startsWith(e)&&(p=p.substring(o)),d>0&&p.endsWith(t)&&(p=p.substring(0,p.length-d)),p},set:p=>{if(s.value===p)return;if(typeof p=="string"&&(p=p.trim()),p==""){r("update:value","");return}let y=p;o>0&&(y=e+y),d>0&&(y=y+t),r("update:value",y)}});return a=null,u}function xh(e){const t=fe("modal");return t&&e&&(t.ok=e),t}function Fh(e){return new $e(e)}function gt(e){return typeof e<"u"}function Gh(e){const t=se(e||""),a=se(!1),s=se(!1);return Be(t,r=>{gt(r)&&(s.value=!0,a.value=ft(r))},{immediate:!!e,flush:"sync"}),{clipboardRef:t,isSuccessRef:a,copiedRef:s}}function ft(e,{target:t=document.body}={}){const a=document.createElement("textarea"),s=document.activeElement;a.value=e,a.setAttribute("readonly",""),a.style.contain="strict",a.style.position="absolute",a.style.left="-9999px",a.style.fontSize="12pt";const r=document.getSelection();let o;r&&r.rangeCount>0&&(o=r.getRangeAt(0)),t.append(a),a.select(),a.selectionStart=0,a.selectionEnd=e.length;let d=!1;try{d=document.execCommand("copy")}catch(u){throw new Error(u)}return a.remove(),o&&r&&(r.removeAllRanges(),r.addRange(o)),s&&s.focus(),d}const W={UNAUTHORIZED:401,FORBIDDEN:403,NOT_FOUND:404,INTERNAL_SERVER_ERROR:500,BAD_GATEWAY:502,SERVICE_UNAVAILABLE:503,GATEWAY_TIMEOUT:504};class Kh{handle(t){console.error(t)}}class Vh{handle(t){console.error(t)}}class Hh{handle(t){if(t.type===_.AJAX){new yt().handle(t);return}console.error(t)}}class yt{handle(t){const a=this._extractStatusCode(t.message);if(a)switch(a){case W.UNAUTHORIZED:this._handleUnauthorized();break;case W.FORBIDDEN:this._handleForbidden();break;case W.NOT_FOUND:this._handleNotFound();break;case W.INTERNAL_SERVER_ERROR:case W.BAD_GATEWAY:case W.SERVICE_UNAVAILABLE:case W.GATEWAY_TIMEOUT:this._handleServerError(a);break;default:this._handleGenericHttpError(t);break}else this._handleGenericHttpError(t)}_extractStatusCode(t){const a=t.match(/HTTP\s+(\d{3})|Business\s+Error\s+\[(\d+)\]/);return a?parseInt(a[1]||a[2],10):null}_handleGenericHttpError(t){t.message.includes("Business Error")?console.debug("Handling business error:",t.message):t.message.includes("Network")?console.debug("Handling network error:",t.message):console.debug("Handling HTTP error:",t.message)}_handleUnauthorized(){console.warn("Unauthorized access, redirecting to login...")}_handleForbidden(){console.warn("Access forbidden")}_handleNotFound(){console.warn("Resource not found")}_handleServerError(t){console.warn(`Server error: ${t}`)}}class Dt{static _strategies=new Map;static init(){this.registerStrategy(_.SCRIPT,new Kh),this.registerStrategy(_.VUE,new Vh),this.registerStrategy(_.PROMISE,new Hh),this.registerStrategy(_.AJAX,new yt)}static getStrategy(t){return this._strategies.get(t)}static registerStrategy(t,a){this._strategies.set(t,a)}}class B{static _instance;constructor(){this._initializeStrategies()}static getInstance(){return B._instance||(B._instance=new B),B._instance}static init(){B.getInstance()}static handleVueError(t,a,s){const r={type:_.VUE,message:`Vue Error: ${t.message} | Info: ${s}`,stack:t.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(r)}static reportError(t,a=_.SCRIPT){const s={type:a,message:t.message,stack:t.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(s)}_initializeStrategies(){Dt.init()}_processError(t){Dt.getStrategy(t.type)?.handle(t)}}async function Wh(e){B.init(),e.config.errorHandler=(t,a,s)=>{B.handleVueError(t,a,s)},e.config.warnHandler=(t,a,s)=>{console.warn(`Vue Warning: ${t}`),s&&console.warn("Trace:",s)},window.addEventListener("error",t=>{B.reportError(new Error(t.message),_.SCRIPT)}),window.addEventListener("unhandledrejection",t=>{B.reportError(t.reason,_.PROMISE)})}class Xh{async init(){const t=await _api.platform.plat.getList();console.debug("plat",t.data)}}const jh=new Xh;async function $h(e){await Wh(e),w.use(st),yh(e),Qh(e),await _gct.init(),await jh.init()}function ct(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new rt,Object.defineProperty(window._gct,"api",{get(){return ut}}),Object.defineProperty(window,"_api",{get(){return ut}})}})}}));
|
|
1
|
+
System.register(["pinia","qs","lodash-es","vue","axios","vue-i18n","vue-router","@gct-paas/api"],(function(o,kl){"use strict";var Q,lt,dt,de,Le,Y,Oe,ut,ft,_e,ue,D,ht,gt,Et,j,U,y,ae,pe,fe,ve,mt,Tt,At,Rt,bt,St,It,De;return{setters:[R=>{Q=R.defineStore,lt=R.createPinia,dt=R.setActivePinia},R=>{de=R.default},R=>{Le=R.isEmpty,Y=R.cloneDeep,Oe=R.mergeWith,ut=R.unionWith,ft=R.isEqual,_e=R.omit,ue=R.has},R=>{D=R.reactive,ht=R.createApp,gt=R.h,Et=R.nextTick,j=R.isRef,U=R.computed,y=R.ref,ae=R.watch,pe=R.onUnmounted,fe=R.inject,ve=R.getCurrentInstance,mt=R.shallowRef,Tt=R.onMounted},R=>{At=R.AxiosHeaders},R=>{Rt=R.createI18n},R=>{bt=R.createRouter,St=R.createWebHashHistory},R=>{It=R.HttpUtil,De=R.api}],execute:(function(){o({afterFieldSet:rs,afterValueSet:is,buildItemRules:_a,buildShortUUID:ns,buildUUID:ts,cacheFnReturn:cs,computedEx:os,copyTextToClipboard:Xn,createAppVue:yl,deepMerge:qa,emitFieldSet:as,gctFormItemEditorProps:xa,genUrl:Mn,getDeviceFingerprint:Je,getPageIdentification:Dn,getTenant:Zt,getTimezone:Jt,getToken:ge,interceptors:Qt,isDef:Vn,openWindow:Lc,parseMatrixParams:xt,parseValueUnit:ss,setTenant:za,setToken:$t,setupApp:Cl,setupErrorHandler:jn,setupI18n:Gn,stringifyMatrixParams:es,useAppInst:Zc,useCopyToClipboard:tl,useEditFormController:Fc,useForm:Wn,useFormController:Gc,useFormItemController:Bc,useGctFormValue:Jc,useGctFormValueByText:xc,useIFrameProps:qc,useModal:zc,useNamespace:Ga,useWuJieBus:el,useWuJieProps:Qc,widthEditorInstall:ls});const R=o("SIDE_BAR_MINI_WIDTH",48),Hl=o("SIDE_BAR_SHOW_TIT_MINI_WIDTH",80);var xn=o("ContentEnum",(e=>(e.FULL="full",e.FIXED="fixed",e))(xn||{})),zn=o("ThemeEnum",(e=>(e.DARK="dark",e.LIGHT="light",e))(zn||{})),Qn=o("SettingButtonPositionEnum",(e=>(e.AUTO="auto",e.HEADER="header",e.FIXED="fixed",e))(Qn||{})),qn=o("SessionTimeoutProcessingEnum",(e=>(e[e.ROUTE_JUMP=0]="ROUTE_JUMP",e[e.PAGE_COVERAGE=1]="PAGE_COVERAGE",e))(qn||{})),ei=o("PermissionModeEnum",(e=>(e.ROLE="ROLE",e.BACK="BACK",e.ROUTE_MAPPING="ROUTE_MAPPING",e.PLATFORM_ROLE="PLATFORM_ROLE",e))(ei||{})),ti=o("RouterTransitionEnum",(e=>(e.ZOOM_FADE="zoom-fade",e.ZOOM_OUT="zoom-out",e.FADE_SIDE="fade-slide",e.FADE="fade",e.FADE_BOTTOM="fade-bottom",e.FADE_SCALE="fade-scale",e))(ti||{})),Nt=o("ProjectName",(e=>(e.PORTAL="portal",e.BACKEND_MANAGEMENT="backend-management",e.DEVELOPER_CENTER="developer-center",e.TENANT_CENTER="tenant-center",e.APP_DESIGNER="app-designer",e.PAGE_DESIGNER="page-designer",e.WEB_RENDER="web-render",e.MOBILE_RENDER="mobile-render",e))(Nt||{})),ni=o("FIELD_TYPE_CATEGORY",(e=>(e.ALL="field_type_all",e.BASIC="field_type_basic",e.LOGIC="field_type_logic",e.TRACE="field_type_trace",e))(ni||{})),h=o("FIELD_TYPE",(e=>(e.PRIMARY_KEY="primary_key",e.ASSOCIATED_PRIMARY_KEY="associated_primary_key",e.TEXT="text",e.LONG_TEXT="long_text",e.INTEGER="integer",e.LONG="long",e.DOUBLE="double",e.DECIMAL="decimal",e.BOOLEAN="boolean",e.DATE="date",e.TIME="time",e.DATE_TIME="date_time",e.IMAGE="image",e.ATTACHMENT="attachment",e.SERIAL="serial_number",e.MASTERSLAVE="master_slave",e.USER="user",e.USER_MULTI="user_multi",e.ORG="org",e.ORG_MULTI="org_multi",e.ENUM="enum",e.ENUM_MULTI="enum_multi",e.OPTION="option",e.OPTION_MULTI="option_multi",e.REF="ref",e.REF_MULTI="ref_multi",e.RDO_REF="rdo_ref",e.EXPRESSION="expression",e.EXPRESSION_CONDITION="expression_condition",e.AGG="agg",e.ESOP="esop",e.TRANSACTION="transaction",e.LABEL_TEMPLATE="label_template",e.LABEL_TEMPLATE_REF="label_template_ref",e.DOCUMENT_TEMPLATE="document_template",e.SERIALRULE="serial_number_rule",e.PRINTER="printer",e.MESSAGE_TMPL="message_tmpl",e.RANGE_USER="range_user",e.SIGNATURE="electronic_signature",e.ONLINE_FORM_TEMPLATE="online_form_tmpl",e.E_DHR_TEMPLATE="edhr_tmpl",e.ONLINE_FORM="online_form",e.DATA_TABLE_FORMULA="data_table_formula",e.READONLYCMP="readonlycmp",e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e.Biz_Process="biz_process",e.TENANT="tenant",e))(h||{})),ii=o("FIELD_TYPE_BASIC",(e=>(e.TEXT="text",e.LONG_TEXT="long_text",e.INTEGER="integer",e.LONG="long",e.DOUBLE="double",e.DECIMAL="decimal",e.BOOLEAN="boolean",e.DATE="date",e.TIME="time",e.DATE_TIME="date_time",e))(ii||{})),ri=o("FIELD_TYPE_LOGIC",(e=>(e.IMAGE="image",e.ATTACHMENT="attachment",e.SERIAL="serial_number",e.MASTERSLAVE="master_slave",e.USER="user",e.USER_MULTI="user_multi",e.ORG="org",e.ORG_MULTI="org_multi",e.ENUM="enum",e.ENUM_MULTI="enum_multi",e.OPTION="option",e.OPTION_MULTI="option_multi",e.REF="ref",e.REF_MULTI="ref_multi",e.RDO_REF="rdo_ref",e.EXPRESSION="expression",e.EXPRESSION_CONDITION="expression_condition",e.AGG="agg",e.ESOP="esop",e.TRANSACTION="transaction",e.LABEL_TEMPLATE="label_template",e.LABEL_TEMPLATE_REF="label_template_ref",e.DOCUMENT_TEMPLATE="document_template",e.SERIALRULE="serial_number_rule",e.PRINTER="printer",e.MESSAGE_TMPL="message_tmpl",e.RANGE_USER="range_user",e.SIGNATURE="electronic_signature",e.ONLINE_FORM_TEMPLATE="online_form_tmpl",e.E_DHR_TEMPLATE="edhr_tmpl",e.ONLINE_FORM="online_form",e.Biz_Process="biz_process",e))(ri||{})),ai=o("FIELD_TYPE_TRACE",(e=>(e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e))(ai||{}));const Wl=o("FieldTypeToJs",{attachment:"string",boolean:"boolean",date:"string",date_time:"string",decimal:"number",double:"number",enum:"string",enum_multi:"string",image:"string",integer:"number",long:"number",long_text:"string",master_slave:"string",org:"string",org_multi:"string",rdo_ref:"string",ref:"string",ref_multi:"string",serial_number:"string",text:"string",time:"string",user:"string",user_multi:"string",expression:"string",expression_condition:"string",agg:"number",esop:"string",serial_number_rule:"string",label_template:"string",label_template_ref:"string",document_template:"string",transaction:"string",printer:"string",message_tmpl:"string",range_user:"string",primary_key:"string",associated_primary_key:"string",readonlycmp:"string",material_no:"string",product:"string",device:"string",option:"string",option_multi:"string",electronic_signature:"string",online_form_tmpl:"string",edhr_tmpl:"string",online_form:"string",data_table_formula:"string",biz_process:"string",tenant:"string"});var si=o("CreateType",(e=>(e.SYSTEM="SYSTEM",e.USER_DEFINED="USER_DEFINED",e.BUILTIN="BUILTIN",e.CUSTOM="CUSTOM",e.PROCESS="PROCESS",e))(si||{})),oi=o("MenuType",(e=>(e.CATALOG="CATALOG",e.STANDARD="STANDARD",e.LINK="LINK",e))(oi||{})),ci=o("OpenMode",(e=>(e.PRESENT="PRESENT",e.IFRAME="IFRAME",e.NEW="NEW",e))(ci||{})),li=o("MaterialEnum",(e=>(e.MaterialFormField="formField",e.MaterialTableField="tableField",e.MaterialEmbedTableField="embedTableField",e.MaterialSubTableField="subTableField",e.MaterialSubTableModalField="subTableModalField",e.cardListFormField="cardList",e.MaterialTableSelectField="tableSelectField",e.DescriptionsFormField="descriptions",e))(li||{}));const Vl=o("FieldIconMap",{primary_key:"icon-id",text:"icon-wenben1",long_text:"icon-changwenben",integer:"icon-zhengshu",long:"icon-changzhengshu",decimal:"icon-jingduxiaoshu1",double:"icon-xiaoshu",boolean:"icon-buer",date:"icon-riqi1",time:"icon-shijian1",date_time:"icon-riqishijian",user:"icon-renyuanguanlian",org:"icon-bumenguanlian",user_multi:"icon-renyuanduoxuan",org_multi:"icon-bumenduoxuan",image:"icon-tupian1",attachment:"icon-fujian1",serial_number:"icon-xuliehao",master_slave:"icon-zhuziguanlian",enum:"icon-meijuguanlian",ref:"icon-moxingguanlian",rdo_ref:"icon-RDOmoxingguanlian",enum_multi:"icon-meijuguanlianduoxuan",option:"icon-meijuguanlian",option_multi:"icon-meijuguanlianduoxuan",ref_multi:"icon-moxingduoxuan",expression:"icon-gongshiziduan",expression_condition:"icon-gongshiziduan",agg:"icon-huizong",esop:"icon-E-SOP",transaction:"icon-ziduan1",serial_number_rule:"icon-ziduan1",printer:"icon-dayinanniu",message_tmpl:"icon-xiaoximoban",range_user:"icon-fanweirenyuan",label_template:"icon-biaoqianmoban",label_template_ref:"icon-biaoqianmoban",document_template:"icon-danjumoban",electronic_signature:"icon-qianming1",online_form_tmpl:"icon-zaixianbiaodanmoban",edhr_tmpl:"icon-edhr",online_form:"icon-zaixianbiaodan",data_table_formula:"icon-gongshiziduan",readonlycmp:"icon-wenben1",tenant:"icon-id",associated_primary_key:"icon-id",material_no:"icon-field-material-no",product:"icon-field-product",device:"icon-field-device",biz_process:"icon-jichengzhongxin1"});var di=o("AggTypes",(e=>(e.COUNT="COUNT",e.SUM="SUM",e.MAX="MAX",e.MIN="MIN",e.AVG="AVG",e))(di||{})),ui=o("NodesConfigTypeEnum",(e=>(e.SPEC="spec",e.SUB_WORKFLOW="sub_workflow",e))(ui||{})),fi=o("selectionTypeEnums",(e=>(e.None="none",e.SingleChoice="gct_radio",e.MultipleChoice="checkbox",e))(fi||{})),hi=o("UniqueConstraintType",(e=>(e.NONE="NONE",e.GLOBAL="GLOBAL",e.LEVEL="LEVEL",e.LOGIC="LOGIC",e))(hi||{}));const Xl=o("MessageType",{ALL:"all",UNREAD:"unread"}),Yl=o("WorkbenchType",{TEST:"myTestApp",QUICK:"quickAccess",MY:"myApp"});var gi=o("PersonalCenterType",(e=>(e.PROFILE="profile",e.GENDER="gender",e.ENTERPRISE="enterprise",e))(gi||{})),Ei=o("GENDER_TYPE",(e=>(e.FEMALE="female",e.MALE="male",e.PRIVARY="privary",e))(Ei||{})),mi=o("TODO_TYPE",(e=>(e.TODO="todo",e.APPLICATION="application",e.DONE="done",e.DELEGATE="delegate",e))(mi||{})),Ti=o("CARD_TRIGGER_ENUM",(e=>(e.HOVER="hover",e.CLICK="click",e))(Ti||{}));const jl=o("SHOW_FIELDTYPES",[h.TEXT,h.LONG_TEXT,h.LONG,h.INTEGER,h.DECIMAL,h.DOUBLE,h.SERIAL]);var Ai=o("UserServiceType",(e=>(e.SCRIPT_SERVICE="SCRIPT_SERVICE",e.SQL_SERVICE="SQL_SERVICE",e.SO_SERVICE="SO_SERVICE",e.BUILTIN_SERVICE="SYS_BUILTIN",e))(Ai||{})),Lt=o("EntityModelCategoryEnum",(e=>(e.ENTITY="entity",e.DATA="data",e.VIEW="view",e.FORM="form",e.DATA_SET="dataSet",e))(Lt||{})),Ri=o("EntityModelTypeEnum",(e=>(e.BASE="BASE",e.NDO="NDO",e.RDO="RDO",e.TREE="TREE",e.DYNAMIC_FORM="DYNAMIC_FORM",e.WORKFLOW="WORKFLOW",e.TRANSACTION="TRANSACTION",e))(Ri||{})),bi=o("FieldDefaultValueTypeEnum",(e=>(e.NONE="NONE",e.FIXED="FIXED",e.SYS_VAR="SYS_VAR",e))(bi||{})),Si=o("FieldSysVarDefaultValueEnum",(e=>(e.NULL="",e.SYS_DATE="SYS_DATE",e.SYS_TIME="SYS_TIME",e.SYS_DATE_TIME="SYS_DATE_TIME",e.CURRENT_USER="CURRENT_USER",e.CURRENT_ORG="CURRENT_ORG",e))(Si||{})),Ii=o("scriptTypeEnum",(e=>(e.EVENT="event",e.BUSINESSSERVICE="businessService",e.TIMER="timer",e))(Ii||{})),Ni=o("pageLayoutModeEnum",(e=>(e.SHOW_BOX_SCROLL="showBoxScroll",e.SHOW_ALL_DATA="showAllData",e))(Ni||{})),Li=o("PanelEnum",(e=>(e.PAGE="page",e.HISTORY="history",e.GLOBAL="global",e.WIDGET="widget",e.CHANGE_DESIGN="changeDesign",e))(Li||{})),Oi=o("Postion",(e=>(e.STATIC="static",e.RELATIVE="relative",e.ABSOLUTE="absolute",e.FIXED="fixed",e.STICKY="sticky",e))(Oi||{})),_i=o("BorderStyle",(e=>(e.NONE="none",e.SOLID="solid",e.DOTTED="dotted",e.DASHED="dashed",e.DOUBLE="double",e))(_i||{})),pi=o("TextAlign",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.JUSTIFY="justify",e))(pi||{})),vi=o("TextDecoration",(e=>(e.LINETHROUGH="line-through",e.UNDERLINE="underline",e.NONE="none",e))(vi||{})),Di=o("EventCategory",(e=>(e.INNER="inner",e.JS="js",e))(Di||{})),Mi=o("PropGroup",(e=>(e.BASIC="basic",e.ADVANCED="advance",e.DISPLAY="display",e.LABEL="label",e.FIELD="field",e.DATA="data",e.OTHER="other",e.LIST="list",e.Table="table",e.SUBMIT_RULE="submitRule",e.LISTDATA="listdata",e.SHOW="show",e.FIELD_CONFIG="fieldConfig",e.FORM_CONFIG="formConfig",e.FIELD_LAYOUT="FieldLayout",e.LEFT_RIGHT_COLUMNS="leftRightColumns",e.TABLESELECT_CONFIG="tableSelect",e.GENRADIO="genRadio",e.GENCHECKBOX="genCheckbox",e.GENSWITCH="genSwitch",e.OPTIONS="options",e.COLLAPSE="collapse",e.SPACE_OCCUPATION="spaceOccupation",e.DIVIDER="divider",e.IFRAME="iframe",e.FILECOLLECT="fileCollect",e.CARDLIST="cardList",e.BUTTON="button",e.Button="Button",e.ButtonShow="ButtonShow",e.ButtonStyle="ButtonStyle",e.LISTBUTTON="listButton",e.MODAL="modal",e.MODALWIDTH="modalWidth",e.MODALHEIGHT="modalHeight",e.MODALTITLECONFIG="modalTitleConfig",e.SEARCH="search",e.QUERY="query",e.INPUT_CONFIG="inputConfig",e.DATALINKAGE="dataLinkage",e.PERMISSION="permission",e.DATASOURCE="dataSource",e.VALIDATERULE="validaterule",e.TEXT="text",e.GRID_CONFIG="gridConfig",e.COL_CONFIG="colConfig",e.COMPONENTDEPENDENCY="componentDependency",e.GENIMAGE="genImage",e.DATARANGE="dataRange",e.OPERATOR_CONFIG="operatorConfig",e.BUSINESS_CONFIG="businessConfig",e.Vue3="Vue3",e.TREE_CONFIG="treeConfig",e.CARDDISPLAY="cardDisplay",e))(Mi||{})),yi=o("StyleGroup",(e=>(e.LAYOUT="layout",e.STYLE="style",e.BACKGROUND="background",e.MARGIN="margin",e.BORDER="border",e.HEADER="header",e.SHOW_PROP="showProp",e))(yi||{})),Ci=o("tagEnum",(e=>(e.TAG="tag",e.PROGRESS="progress",e))(Ci||{})),Pi=o("TagTypeEnum",(e=>(e.RADIUS="radius",e.LINEAR_RADIUS="linear_radius",e.BIG_RADIUS="big_radius",e.LINEAR_BIG_RADIUS="linear_big_radius",e.DASHED_RADIUS="dashed_radius",e.STATUS="status",e))(Pi||{})),Ui=o("DisplayTagTypeEnum",(e=>(e.RADIUS="radius",e.BIG_RADIUS="big_radius",e.STATUS="status",e.SURFACE_RADIUS="surface_radius",e.SURFACE_BIG_RADIUS="surface_big_radius",e.SURFACE_STATUS="surface_status",e.LINE_RADIUS="line_radius",e.LINE_BIG_RADIUS="line_big_radius",e.LINE_DASHED_RADIUS="line_dashed_radius",e.LINE_STATUS="line_status",e))(Ui||{})),wi=o("ProgressTypeEnum",(e=>(e.CIRCLE="circle",e.LINE="line",e))(wi||{})),Fi=o("DisplayType",(e=>(e.RULE="rule",e.CONFIG="config",e))(Fi||{})),Gi=o("GLOBAL_VAR_TYPE",(e=>(e.STRING="string",e.NUMBER="number",e.BOOLEAN="boolean",e.OBJECT="object",e.ARRAY="array",e.NULL="NULL",e.DATE="date",e.DATETIME="datetime",e.TIME="time",e.VAR="var",e))(Gi||{})),Bi=o("GLOBAL_TYPE",(e=>(e.MODAL="modal",e.EVENT="event",e.VAR="var",e))(Bi||{})),ki=o("COLUMNS_TYPE",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.TOP="top",e.BOTTOM="bottom",e))(ki||{})),Hi=o("INNER_EVENT",(e=>(e.CLOSE_MODAL="__CLOSEMODAL__",e.OPEN_MODAL="__OPENMODAL__",e.REFRESH_TABLE="__REFRESHTABLE__",e))(Hi||{})),Wi=o("SUB_TABLE_EDIT_MODE",(e=>(e.INLINE="inline",e.MODAL="modal",e))(Wi||{})),Vi=o("SUB_TABLE_OPE_EVENT_TYPE_INLINE",(e=>(e.DELETE="delete",e.COPY="copy",e))(Vi||{})),Xi=o("SUB_TABLE_OPE_EVENT_TYPE",(e=>(e.DELETE="delete",e.EDIT="edit",e.COPY="copy",e))(Xi||{})),Yi=o("VERIFICATIONCONDITIONS_TYPE",(e=>(e.JS="js",e))(Yi||{})),ji=o("ASSIGNMENTSTRATEGY_ENUM",(e=>(e.alwaysCover="alwaysCover",e.notCovered="notCovered",e))(ji||{})),Ki=o("Dependency_ENUM",(e=>(e.HIDDEN="hidden",e.READONLY="readonly",e.DISABLED="disabled",e.REQUIRED="required",e.ASSIGNMENT="assignment",e))(Ki||{})),$i=o("ToolkitEnum",(e=>(e.OUTLINE="OUTLINE",e.WIDGETS="WIDGETS",e.FIELD="FIELD",e.MODAL="MODAL",e.JS="JS",e.CSS="CSS",e.TEMPLATE="TEMPLATE",e.LO="LO",e))($i||{})),Zi=o("CategoryTypeEnum",(e=>(e.FORM="form",e.LAYOUT="layout",e.ADVANCED="advanced",e.DATA="data",e.BUTTON="button",e.RDO="rdo",e.KIT="kit",e.PROCESS="process",e))(Zi||{})),Ot=o("Platform",(e=>(e.WEB="web",e.MOBILE="mobile",e.PAD="pad",e))(Ot||{})),Ji=o("BuiltinType",(e=>(e.MODAL="modal",e.MODAL_BODY="modalBody",e.MODAL_FOOTER="modalFooter",e.BottomButtonContainer="bottom-button-container",e))(Ji||{})),xi=o("DateRangeEnums",(e=>(e.WEEK_NOW="sys.pageDesigner.dateRange.weekNow",e.MONTH_NOW="sys.pageDesigner.dateRange.monthNow",e.QUARTER_NOW="sys.pageDesigner.dateRange.quarterNow",e.YEAR_NOW="sys.pageDesigner.dateRange.yearNow",e.WEEk_BEFORE="sys.pageDesigner.dateRange.weekBefore",e.MONTH_BEFORE="sys.pageDesigner.dateRange.monthBefore",e.QUARTER_BEFORE="sys.pageDesigner.dateRange.quarterBefore",e.YEAR_BEFORE="sys.pageDesigner.dateRange.yearBefore",e.DATE_BEFORE="sys.pageDesigner.dateRange.dateBefore",e.DATE_AFTER="sys.pageDesigner.dateRange.dateAfter",e))(xi||{})),zi=o("SelectPickerEnums",(e=>(e.DROPDOWN_SELECTION="dropdownSelection",e.TREE_SELECTION="treeSelection",e.MODAL_BOX_SELECTION="modalBoxSelection",e))(zi||{})),Qi=o("CURRENCY_ENUM",(e=>(e["¥"]="¥",e.$="$",e.S$="S$",e))(Qi||{})),qi=o("TIMETYPE_ENUM",(e=>(e.d="d",e["d:h"]="d:h",e["d:h:m"]="d:h:m",e["d:h:m:s"]="d:h:m:s",e.h="h",e["h:m"]="h:m",e["h:m:s"]="h:m:s",e.m="m",e["m:s"]="m:s",e.s="s",e))(qi||{})),er=o("TIMETYPE_LANG_ENUM",(e=>(e.d="days",e["d:h"]="dayhour",e["d:h:m"]="dayhourminute",e["d:h:m:s"]="dayhourminutesecond",e.h="hour",e["h:m"]="hourminute",e["h:m:s"]="hourminutesecond",e.m="minute",e["m:s"]="minutesecond",e.s="seconds",e))(er||{})),tr=o("CURRENCY_LANG_ENUM",(e=>(e["¥"]="chMoney",e.$="usMoney",e.S$="sgpMoney",e))(tr||{})),nr=o("RowSelectionTypeEnums",(e=>(e.SingleChoice="radio",e.MultipleChoice="checkbox",e))(nr||{})),ir=o("StatisticalMethodEnums",(e=>(e.Current="current",e.Whole="whole",e))(ir||{})),rr=o("PrintModeEnums",(e=>(e.Local="local",e.Server="server",e.PREVIEW_PRINT="PreviewPrint",e.DIRECT_PRINTING="DirectPrinting",e))(rr||{})),ar=o("openWindowEnums",(e=>(e.OPEN="open",e.APPROVE="linkApprove",e))(ar||{})),sr=o("KeyMode",(e=>(e.SYSTEM="system",e.TRANSACTION="transaction",e))(sr||{})),or=o("TransactionMode",(e=>(e.CURRENT="current",e.REFERENCE="reference",e))(or||{})),cr=o("DisplayEnums",(e=>(e.BLOCK="block",e.INLINE_BLOCK="inline-block",e))(cr||{})),lr=o("ButtonColorType",(e=>(e.DEFAULT="default",e.LINK="link",e))(lr||{})),dr=o("ButtonColorTheme",(e=>(e.DEFAULT="default",e.PRIMARY="primary",e.ERROR="error",e.WARNING="warning",e.SUCCESS="success",e))(dr||{})),ur=o("ButtonStyle",(e=>(e.ORDINARY="ordinary",e.SQUARE="square",e))(ur||{})),fr=o("ButtonSize",(e=>(e.SMALL="small",e.DEFAULT="middle",e.LARGE="large",e))(fr||{})),hr=o("ButtonTypeGroup",(e=>(e.TEXT="TEXT",e.ICON_TEXT="ICON_TEXT",e.ICON="ICON",e))(hr||{})),gr=o("ButtonType",(e=>(e.PRIMARY="primary",e.DEFAULT="default",e.DASHED="dashed",e.LINK="link",e))(gr||{})),Er=o("ButtonType_vant",(e=>(e.PRIMARY="primary",e.DANGER="danger",e.DEFAULT="default",e))(Er||{}));const Kl=o("ButtonGroupType",{TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0}],ICON_TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0,hasIcon:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0,hasIcon:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0,hasIcon:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0,hasIcon:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0,hasIcon:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0,hasIcon:!0}],ICON:[{type:"primary",hasIcon:!0},{type:"default",hasIcon:!0},{type:"primary",danger:!0,hasIcon:!0},{type:"default",danger:!0,hasIcon:!0},{type:"dashed",hasIcon:!0},{type:"link",hasIcon:!0}]});var mr=o("operateSysEnums",(e=>(e.COLUMNDELETE="columnDelete",e.COLUMNLINK="columnLink",e.COPY="copy",e.VERSION_COPY="version_copy",e.VERSION_CREATE="version_create",e.DETAILS="details",e.EDIT="edit",e.USAGEINFORMATION="usageInformation",e.MODELINGTRACEABILITY="modelingTraceability",e.IMPORT="import",e.EXPORT="export",e.BATCHDELETE="batchDelete",e.SUBMIT="submit",e.RESET="reset",e.EXCUTE="excute",e.LABEL_PRINT="label_print",e.DOCUMENT_PRINT="document_print",e.EXAMINE_AND_APPROVE="examineAndApprove",e))(mr||{})),Tr=o("TableSearchTypeEnum",(e=>(e.NONE="none",e.EMBEDDED="embedded",e.EXTERNAL="external",e))(Tr||{})),Ar=o("TableTypeEnum",(e=>(e.DEFAULT="default",e.EMBED="embed",e.SUB="sub",e))(Ar||{})),Rr=o("TableEditingMethodEnum",(e=>(e.DEFAULTEDITING="defaultEditing",e.CLICKTOENTEREDITING="clickToEnterEditing",e))(Rr||{})),br=o("WidgetInScopeEnum",(e=>(e.GCT="gct",e.GCT_MODAL="gct-modal",e.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",e))(br||{})),Sr=o("ListTreeSearchTypeEnum",(e=>(e.ALL="ALL",e.SEARCH="SEARCH",e.SEARCHALL="SEARCHALL",e.LEVEL="LEVEL",e.CHILDREN="CHILDREN",e))(Sr||{})),Ir=o("DatasourceTypeEnum",(e=>(e.REALTIMEDATASOURCE="realTimeDataSource",e.SERVICEDATASOURCE="serviceDataSource",e))(Ir||{})),Nr=o("SignatureTypeEnum",(e=>(e.SIGNATURE_ONLY="signature_only",e.SIGNATURE_DATE="signature_date",e.SIGNATURE_DATETIME="signature_datetime",e))(Nr||{})),Lr=o("ResetRuleType",(e=>(e.WIPE_DATA="wipe_data",e.REFRESHDATA="refresh_data",e))(Lr||{})),Or=o("SCOPE",(e=>(e.PAGE="page",e.MODAL="modal",e))(Or||{})),_r=o("FormComponents",(e=>(e.RdoInput="rdo-input",e.Input="input",e.ElectronicSignature="electronic-signature",e.UseinfoButton="useinfo-button",e.ModelingButton="modeling-button",e.ImportButton="gc-import-button",e.ExportButton="gc-export-button",e.DocumentPrintButton="document-print-button",e.SubmitButton="submit-button",e.BatchDeleteButton="batchdelete-button",e.CustomButton="custom-button",e.TableLinkButton="table-link-button",e.TableInfoButton="table-info-button",e.TableApproveButton="table-approve-button",e.OpeButton="ope-button",e.ResetButton="reset-button",e.RdoSaveButton="rdo-save-button",e.LabelPrintButton="labelprint-button",e.ProcessButton="process-button",e.ProcessApproveButton="process-approve-button",e.CreateButton="create-button",e.DeleteButton="delete-button",e.CopyButton="copy-button",e.RefreshButton="refresh-button",e.CreateVersionButton="create-version-button",e.CopyVersionButton="copy-version-button",e.Checkbox="checkbox",e.DataTable="data-table",e.DataVTable="data-v-table",e.TreeTable="tree-table",e.DataTableColumn="data-table-column",e.RefDataTable="ref-data-table",e.DataList="data-list",e.RdoDataList="rdo-data-list",e.DataTableOpe="data-table-ope",e.DataTableFormula="data-table-formula",e.Datepicker="datepicker",e.DateTimepicker="datetimepicker",e.Department="department",e.Form="form",e.RdoForm="rdo-form",e.RdoTable="rdo-table",e.MedProRdoForm="medprordo-form",e.MedProRdoTable="medprordo-table",e.FormProcess="form-process",e.Inputmoney="inputmoney",e.Inputnumber="inputnumber",e.InputDouble="inputdouble",e.Radio="radio",e.Select="select",e.RdoSelect="rdo-select",e.Switch="switch",e.Textarea="textarea",e.Timepicker="timepicker",e.Userpicker="userpicker",e.Search="search",e.SelectSearch="select-search",e.QuickSearch="quick-search",e.LayoutContainer="layout-container",e.ButtonContainer="button-container",e.ButtonProcessContainer="button-process-container",e.BottomButtonContainer="bottom-button-container",e.Grid="grid",e.GridCol="grid-col",e.Tabs="tabs",e.TabPane="tab-pane",e.LeftRightColumns="left-right-columns",e.TopBottomColumns="top-bottom-columns",e.LeftLayoutThree="left-layout-three",e.TopLayoutThree="top-layout-three",e.UploadFile="upload-file",e.UploadImage="upload-image",e.SubTable="sub-table",e.SubTableOpe="sub-table-ope",e.SubTableAddBtn="sub-table-add-button",e.SubTableCopyBtn="sub-table-copy-button",e.SubTableEditBtn="sub-table-edit-button",e.SubTableDeleteBtn="sub-table-delete-button",e.LinkPageBtn="link-page-button",e.Collapse="collapse",e.SpaceOccupation="space-occupation",e.Divider="divider",e.CardList="card-list",e.CardHeaderLeft="card-header-left",e.CardHeaderRight="card-header-right",e.CardContent="card-content",e.CardOpeBtn="card-ope-btn",e.BaseButton="base-button",e.ReadonlyCmp="readonlycmp",e.TableSelect="table-select",e.GenCheckbox="gen-checkbox",e.GenRadio="gen-radio",e.GenSwitch="gen-switch",e.WorkflowNodes="workflow-nodes",e.WorkflowNodeModal="workflow-node-modal",e.ESOP="e-sop",e.EXPRESSION="expression",e.ExpressionCondition="expression-condition",e.AGG="agg",e.DynamicFormType="dynamic-form-type",e.DynamicFormValue="dynamic-form-value",e.DynamicFormOpts="dynamic-form-options",e.DynamicFormShowType="dynamic-form-show-type",e.DynamicTable="dynamic-table",e.Transaction="transaction",e.SerialRule="serial-rule",e.LabelTemplate="label-template",e.LabelTemplateRef="label-template-ref",e.DocumentTemplate="document-template",e.Wacom="wacom",e.Text="text",e.CustomField="custom-field",e.Printer="printer",e.Descriptions="descriptions",e.RangeUser="range-user",e.GenImage="gen-image",e.TestButton="test-button",e.Iframe="iframe",e.ExcuteButton="medproexcute-button",e.SubDataTable="sub-data-table",e.Signature="signature",e.OnlineForm="online-form",e.TmplTreeSelect="tmpl-tree-select",e.Boolean="boolean",e.BizProcess="biz-process",e.ApprovalHistory="approval-history",e.FlowDiagram="flow-diagram",e.CustomCode="custom-code",e.ApprovalProcess="approval-process",e))(_r||{})),pr=o("SearchComponents",(e=>(e.SearchInput="SearchInput",e.SearchNumberInput="SearchNumberInput",e.SearchStringNumberInput="SearchStringNumberInput",e.SearchSwitch="SearchSwitch",e.SearchDate="SearchDate",e.SearchDateTime="SearchDateTime",e.SearchTime="SearchTime",e.SearchSelect="SearchSelect",e.SearchUserSelect="SearchUserSelect",e.SearchRdoSelect="SearchRdoSelect",e.SearchTransaction="SearchTransaction",e.SearchTmplTreeSelect="SearchTmplTreeSelect",e.SearchPrinter="SearchPrinter",e.SearchBizProcess="SearchBizProcess",e.SearchSelectRangUser="SearchSelectRangUser",e.SearchSelectDepartment="SearchSelectDepartment",e))(pr||{})),vr=o("tableColumnWidthEnum",(e=>(e.AUTO_PARENT_BOX="AutoParentBox",e.ATUO="selfAdaption",e.ENUMERATION="fixed",e.PERCENTAGE="percentage",e))(vr||{})),Dr=o("controlConfigEnum",(e=>(e.NULL="NULL",e.STRING="空字符串",e.ZERO="0",e))(Dr||{})),Mr=o("statisticalMethodEnum",(e=>(e.TOTAL="total",e.AVERAGE="average",e))(Mr||{})),yr=o("fixedAlignENUM",(e=>(e.RIGHT="right",e.NONE="",e.LEFT="left",e))(yr||{})),Cr=o("tableColumnTypeEnum",(e=>(e.COLUMN_TEXT="COLUMN_TEXT",e.COLUMN_NUMBER="COLUMN_NUMBER",e.COLUMNTEXT_DATA="COLUMNTEXT_DATA",e.COLUMNTEXT_REF="COLUMNTEXT_REF",e.COLUMNTEXT_ENUM="COLUMNTEXT_ENUM",e.COLUMNTEXT_ORG="COLUMNTEXT_ORG",e.COLUMNTEXT_USER="COLUMNTEXT_USER",e.COLUMNTEXT_BOOLEAN="COLUMNTEXT_BOOLEAN",e.COLUMNTEXT_IMAGE="COLUMNTEXT_IMAGE",e))(Cr||{})),Pr=o("tabsTypeENUM",(e=>(e.LINE="line",e.CARD="card",e.TEXt="text",e.CAPSULE="capsule",e.CUSTOM="custom",e))(Pr||{})),Ur=o("sortTypeEnum",(e=>(e.ASC="asc",e.DESC="desc",e))(Ur||{})),wr=o("BindCmpStyleEnum",(e=>(e.CMP_TEXT="TEXT",e.CMP_TEXTAREA="TEXTAREA",e.CMP_ELECTRONICSIGNATURE="ELECTRONICSIGNATURE",e.CMP_BOOLEAN="BOOLEAN",e.CMP_SELECT_LIST="SELECT_LIST",e.CMP_RADIO="RADIO",e.CMP_CHECKBOX="CHECKBOX",e.CMP_DROPDOWN_SELECT="dropdownSelection",e.CMP_MODAL="modalBoxSelection",e.CMP_TREE_SELECTION="treeSelection",e.CMP_NUMBER="NUMBER",e.CMP_CURRENCY="CURRENCY",e.CMP_TIME="TIME",e))(wr||{}));const $l=o("Ch_BindCmpStyleEnum",{TEXT:"sys.pageDesigner.bindCmpStyle.bindText",TEXTAREA:"sys.pageDesigner.bindCmpStyle.bindTextarea",ELECTRONICSIGNATURE:"sys.pageDesigner.bindCmpStyle.electronicSignature",BOOLEAN:"sys.pageDesigner.bindCmpStyle.bindBoolean",SELECT_LIST:"sys.pageDesigner.bindCmpStyle.bindSelectList",RADIO:"sys.pageDesigner.bindCmpStyle.bindRadio",CHECKBOX:"sys.pageDesigner.bindCmpStyle.bindCheckbox",dropdownSelection:"sys.pageDesigner.bindCmpStyle.bindDropdownSelect",modalBoxSelection:"sys.pageDesigner.bindCmpStyle.bindModal",treeSelection:"sys.pageDesigner.bindCmpStyle.bindTreeSelection",NUMBER:"sys.pageDesigner.bindCmpStyle.bindNumber",CURRENCY:"sys.pageDesigner.bindCmpStyle.bindCurrency",TIME:"sys.pageDesigner.bindCmpStyle.bindTime"});var Fr=o("BindCmpStyleTypeEnum",(e=>(e.BindText="bindText",e.BindLongText="BindLongText",e.BindBool="bindBool",e.BindPerson="bindPerson",e.BindDept="bindDept",e.BindLink="bindLink",e.BindMulti="bindMulti",e.BindNum="bindNum",e.BindDecimal="bindDecimal",e))(Fr||{}));const Zl=o("transformBindCmp2CmpType",{TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"}),Jl=o("bindCmpStyleMap",{bindText:["TEXT","TEXTAREA"],BindLongText:["TEXT","TEXTAREA","ELECTRONICSIGNATURE"],bindBool:["BOOLEAN","SELECT_LIST","RADIO","CHECKBOX"],bindPerson:["dropdownSelection","modalBoxSelection"],bindDept:["treeSelection","modalBoxSelection"],bindLink:["SELECT_LIST","RADIO"],bindMulti:["SELECT_LIST","CHECKBOX"],bindNum:["NUMBER","CURRENCY","TIME"],bindDecimal:["NUMBER","CURRENCY"]});var Gr=o("buttonShowType",(e=>(e.FOLD_ALL="foldAll",e.FOLD_PART="foldPart",e))(Gr||{}));const xl=o("searchListByFieldType",[h.BOOLEAN,h.DATE,h.DATE_TIME,h.DECIMAL,h.DOUBLE,h.ENUM,h.ENUM_MULTI,h.INTEGER,h.LONG,h.LONG_TEXT,h.TEXT,h.USER_MULTI,h.USER,h.TIME,h.REF_MULTI,h.REF,h.RDO_REF,h.ORG_MULTI,h.ORG,h.SERIAL,h.ONLINE_FORM_TEMPLATE,h.E_DHR_TEMPLATE,h.PRINTER,h.LABEL_TEMPLATE_REF,h.Biz_Process,h.DOCUMENT_TEMPLATE,h.TRANSACTION,h.RANGE_USER,h.MESSAGE_TMPL]),zl=o("mobileSearchListByFieldType",[h.BOOLEAN,h.DATE,h.DATE_TIME,h.DECIMAL,h.DOUBLE,h.ENUM,h.ENUM_MULTI,h.INTEGER,h.LONG,h.LONG_TEXT,h.TEXT,h.USER_MULTI,h.USER,h.TIME,h.REF_MULTI,h.REF,h.RDO_REF,h.ORG_MULTI,h.ORG,h.SERIAL,h.ONLINE_FORM_TEMPLATE,h.E_DHR_TEMPLATE,h.PRINTER,h.LABEL_TEMPLATE_REF,h.Biz_Process,h.DOCUMENT_TEMPLATE,h.TRANSACTION,h.MESSAGE_TMPL]),Ql=o("padSearchListByFieldType",[h.BOOLEAN,h.DATE,h.DATE_TIME,h.DECIMAL,h.DOUBLE,h.ENUM,h.ENUM_MULTI,h.INTEGER,h.LONG,h.LONG_TEXT,h.TEXT,h.USER_MULTI,h.USER,h.TIME,h.REF_MULTI,h.REF,h.RDO_REF,h.ORG_MULTI,h.ORG,h.SERIAL,h.PRINTER,h.LABEL_TEMPLATE_REF,h.TRANSACTION]);var Br=o("SCOPEINFO",(e=>(e.FIELD_LIST="fieldList",e.FIELD_FORM="fieldForm",e))(Br||{})),kr=o("PrintResourceEnum",(e=>(e.CLIENT_PRINT="CLIENT_PRINT",e.INTERNET_PRINT="INTERNET_PRINT",e))(kr||{})),Hr=o("AppPublishStateEnum",(e=>(e.SUCCESS="SUCCESS",e.FAILURE="FAILURE",e.PREPARING="PREPARING",e.EVENTING="EVENTING",e.PROCESSIING="PROCESSIING",e.DEPLOYING="DEPLOYING",e))(Hr||{})),Wr=o("BasicAction",(e=>(e.Insert="Insert",e.Update="Update",e.Delete="Delete",e.Import="Import",e.Export="Export",e.Setting="Setting",e.Download="Download",e.Test="Test",e.Design="Design",e.Add="Add",e))(Wr||{})),Vr=o("CustomAction",(e=>(e.ResetPassword="ResetPassword",e.PermissionSetting="PermissionSetting",e.RemoveAndHandover="RemoveAndHandover",e.CategoryManagement="CategoryManagement",e.BaiscSetting="BaiscSetting",e.WatermarkSetting="WatermarkSetting",e.SecuritySetting="SecuritySetting",e.LoginSetting="LoginSetting",e.ThemeSetting="ThemeSetting",e.OrganizationSetting="OrganizationSetting",e.ApkSetting="ApkSetting",e.DevelopIconManagement="DevelopIconManagement",e.DevelopImageManagement="DevelopImageManagement",e.Reprint="Reprint",e.ViewTask="ViewTask",e.ManualTrigger="ManualTrigger",e.Setting="Setting",e.Terminate="Terminate",e.Reassign="Reassign",e.Log="Log",e.Moving="Moving",e.EnableDisable="EnableDisable",e))(Vr||{}));const ql=o("DefaultActions",["Insert","Update","Delete"]),ed=o("PlatformSettingActions",["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"]);var Xr=o("sizeEnum",(e=>(e.XS="XS",e.SM="SM",e.MD="MD",e.LG="LG",e.XL="XL",e.XXL="XXL",e))(Xr||{})),Yr=o("screenEnum",(e=>(e[e.XS=480]="XS",e[e.SM=576]="SM",e[e.MD=768]="MD",e[e.LG=992]="LG",e[e.XL=1200]="XL",e[e.XXL=1600]="XXL",e))(Yr||{}));const q=o("screenMap",new Map);q.set("XS",480),q.set("SM",576),q.set("MD",768),q.set("LG",992),q.set("XL",1200),q.set("XXL",1600);const jr=o("TIMEZONE_KEY","TIMEZONE__"),td=o("TENANT_KEY","TENANT__"),nd=o("TOKEN_KEY","TOKEN__"),id=o("LOCALE_KEY","LOCALE__"),rd=o("LOCALE_LIST_KEY","LOCALE__LIST"),ad=o("LOCAL_I18N_TRANSLATE","LOCAL_I18N_TRANSLATE"),sd=o("USER_INFO_KEY","USER__INFO__"),od=o("ROLES_KEY","ROLES__KEY__"),cd=o("PROJ_CFG_KEY","PROJ__CFG__KEY__"),ld=o("LOCK_INFO_KEY","LOCK__INFO__KEY__"),dd=o("MULTIPLE_TABS_KEY","MULTIPLE_TABS__KEY__"),ud=o("APP_DARK_MODE_KEY_","__APP__DARK__MODE__"),fd=o("APP_LOCAL_CACHE_KEY","COMMON__LOCAL__KEY__"),hd=o("APP_SESSION_CACHE_KEY","COMMON__SESSION__KEY__"),gd=o("DESIGNER_SESSION_CACHE_KEY","DESIGNER_SESSION_CACHE_KEY");var Kr=o("CacheTypeEnum",(e=>(e[e.SESSION=0]="SESSION",e[e.LOCAL=1]="LOCAL",e))(Kr||{})),$r=o("SEARCH_SERVICE",(e=>(e.EQ="eq",e.IEQ="iEq",e.NE="ne",e.INE="ine",e.GT="gt",e.GE="ge",e.LT="lt",e.LE="le",e.ISNULL="isNull",e.ISNOTNULL="isNotNull",e.LIKE="like",e.ILIKE="iLike",e.NOTLIKE="notLike",e.NOTILIKE="iNotLike",e.LEFTLIKE="leftLike",e.ILEFTLIKE="iLeftLike",e.RIGHTLIKE="rightLike",e.IRIGHTLIKE="iRightLike",e.IN="in",e.NOTIN="notIn",e.CONTAINANY="containAny",e.CONTAINALL="containAll",e.RANGE="range",e.ORANGE="oRange",e.LORANGE="loRange",e.RORANGE="roRange",e.VERSIONIN="versionIn",e))($r||{}));const Ed=o("notSingleArr",["in","notIn","containAny","containAll","versionIn"]);var Zr=o("AGLINE_ENUMS",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.BETWEEN="between",e))(Zr||{}));const md=o("presetColor",["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"]);var Jr=o("ButtonOpeEnum",(e=>(e[e.SINGLELINE=0]="SINGLELINE",e[e.HEAD=1]="HEAD",e[e.BATCH=2]="BATCH",e[e.SINGLELINE_RDO=3]="SINGLELINE_RDO",e))(Jr||{})),xr=o("RdoButtonOpeEnum",(e=>(e[e.parentVersion=0]="parentVersion",e[e.childVersion=1]="childVersion",e))(xr||{})),zr=o("ExceptionEnum",(e=>(e[e.PAGE_NOT_ACCESS=403]="PAGE_NOT_ACCESS",e[e.PAGE_NOT_FOUND=404]="PAGE_NOT_FOUND",e[e.ERROR=500]="ERROR",e[e.NET_WORK_ERROR=1e4]="NET_WORK_ERROR",e[e.PAGE_NOT_DATA=10100]="PAGE_NOT_DATA",e))(zr||{})),k=o("ErrorTypeEnum",(e=>(e.VUE="vue",e.SCRIPT="script",e.RESOURCE="resource",e.AJAX="ajax",e.PROMISE="promise",e))(k||{})),Qr=o("ResultEnum",(e=>(e[e.SUCCESS=200]="SUCCESS",e[e.ERROR=-1]="ERROR",e[e.TIMEOUT=401]="TIMEOUT",e.TYPE="success",e))(Qr||{})),qr=o("RequestEnum",(e=>(e.GET="GET",e.POST="POST",e.PUT="PUT",e.DELETE="DELETE",e))(qr||{})),ea=o("ContentTypeEnum",(e=>(e.JSON="application/json;charset=UTF-8",e.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",e.FORM_DATA="multipart/form-data;charset=UTF-8",e))(ea||{})),ta=o("BizServiceEnum",(e=>(e.submit="post",e.listByIds="get",e.getone="post",e.listAll="post",e.listByPage="post",e.listTree="post",e.save="post",e.saveOrUpdate="post",e.saveBatch="post",e.importData="post",e.exportData="post",e.remove="post",e.removeById="delete",e.removeByIds="delete",e.update="put",e.updateById="put",e.updateByIds="put",e.rdoSave="post",e.rdoListAll="post",e.rdoListByPage="post",e.rdoListVersionById="get",e.rdoSaveVersion="post",e.rdoSaveBatch="post",e.rdoUpdateVersionById="put",e.rdoRemoveVersionById="delete",e.rdoRemoveById="delete",e.rdoGetVersionById="get",e.getOne="post",e.rdoGetVersionByRefId="post",e.getById="get",e.rdoListAllVersion="post",e.rdoRefListByPage="post",e.export="post",e.import="post",e.rdoExport="post",e.rdoImport="post",e.biz_search="post",e))(ta||{})),na=o("PlatformType",(e=>(e.WEB="web",e.PDA="pda",e.PAD="pad",e))(na||{})),ia=o("nullDisplayEnum",(e=>(e["--"]="--",e.empty="(空)",e.null="null",e["N/A"]="N/A",e.noDisplay="",e))(ia||{})),ra=o("DeviceParamsTypeEnum",(e=>(e.STRING="String",e.INTEGER="Integer",e.LONG="Long",e.FLOAT="Float",e.BOOLEAN="Boolean",e.DATE="Date",e))(ra||{})),aa=o("MenuTypeEnum",(e=>(e.SIDEBAR="sidebar",e.MIX_SIDEBAR="mix-sidebar",e.MIX="mix",e.TOP_MENU="top-menu",e))(aa||{})),sa=o("TriggerEnum",(e=>(e.NONE="NONE",e.FOOTER="FOOTER",e.HEADER="HEADER",e))(sa||{})),oa=o("MenuModeEnum",(e=>(e.VERTICAL="vertical",e.HORIZONTAL="horizontal",e.VERTICAL_RIGHT="vertical-right",e.INLINE="inline",e))(oa||{})),ca=o("MenuSplitTyeEnum",(e=>(e[e.NONE=0]="NONE",e[e.TOP=1]="TOP",e[e.LEFT=2]="LEFT",e))(ca||{})),la=o("TopMenuAlignEnum",(e=>(e.CENTER="center",e.START="start",e.END="end",e))(la||{})),da=o("MixSidebarTriggerEnum",(e=>(e.HOVER="hover",e.CLICK="click",e))(da||{})),ua=o("PageEnum",(e=>(e.BASE_LOGIN="/login",e.BASE_TENANT="/tenant",e.BASE_HOME="/home",e.USER_CENTER="/user-center",e.PROCESS_CENTER="/process",e.MESSAGE_CENTER="/message",e.ERROR_PAGE="/exception",e.ERROR_LOG_PAGE="/error-log/list",e.USER_CENTER_PWD="/user-center/password",e))(ua||{})),fa=o("RoleEnum",(e=>(e.SUPER="super",e.TEST="test",e))(fa||{})),ha=o("SizeEnum",(e=>(e.DEFAULT="default",e.SMALL="small",e.LARGE="large",e))(ha||{})),ga=o("ProcessStatusEnum",(e=>(e.APPROVING="APPROVING",e.COMPLETED="COMPLETED",e.REFUSED="REFUSED",e.REJECTED="REJECTED",e.TERMINATED="TERMINATED",e.WITHDRAWN="WITHDRAWN",e))(ga||{}));const Td=o("ch_ProcessStatusMap",{APPROVING:"sys.process.status.approving",COMPLETED:"sys.process.status.completed",REFUSED:"sys.process.status.refused",REJECTED:"sys.process.status.rejected",TERMINATED:"sys.process.status.terminated",WITHDRAWN:"sys.process.status.withdrawn"});var Ea=o("ExamineAndApproveStateEnum",(e=>(e.MY_APPLICATION="myApplication",e.MY_AGENT="myAgent",e.MY_DONE="myDone",e.MY_CUSTOM="myCustom",e.MY_CUSTOM_Modal="myCustomModal",e))(Ea||{})),ma=o("ButtonTypeEnum",(e=>(e.Resubmit="Resubmit",e.End="Terminate",e.Withdraw="Withdraw",e.Approve="Approve",e.Refuse="Refuse",e.Reassign="Reassign",e.Countersign="Countersign",e.Reject="Reject",e))(ma||{})),Ta=o("OpinionTypeEnum",(e=>(e.Required="Required",e.Optional="Optional",e.ApproveRequired="ApproveRequired",e.RefuseRequired="RefuseRequired",e.ReassignRequired="ReassignRequired",e.RejectRequired="RejectRequired",e.CountersignRequired="CountersignRequired",e))(Ta||{})),Aa=o("BpmnNodeTypeEnum",(e=>(e.BpmnStart="bpmnStart",e.BpmnSubmit="bpmnSubmit",e.BpmnApproval="bpmnApproval",e.BpmnEnd="bpmnEnd",e.BpmnExclusive="bpmnExclusive",e.BpmnJs="bpmnJs",e.BpmnMessage="bpmnMessage",e.BpmnParallel="bpmnParallel",e.BpmnJoin="bpmnJoin",e.BpmnForm="bpmnForm",e.BpmnBusiness="bpmnBusiness",e))(Aa||{})),Ra=o("PluginModeEnum",(e=>(e.DESIGN="design",e.WEB="web",e.MOBILE="mobile",e))(Ra||{})),b=o("ExpressionModeEnum",(e=>(e[e.SEARCH=0]="SEARCH",e[e.FIELD_DISPLAY=1]="FIELD_DISPLAY",e[e.EXPORT_TEMPLATE=2]="EXPORT_TEMPLATE",e[e.DISPLAY_RULE=3]="DISPLAY_RULE",e[e.PROCESS_TITLE=4]="PROCESS_TITLE",e[e.GATEWAY_RULE=5]="GATEWAY_RULE",e[e.CREATE_FIELD=6]="CREATE_FIELD",e[e.PAAS_CREATE_FIELD=7]="PAAS_CREATE_FIELD",e[e.ENTITY_FORMULA=8]="ENTITY_FORMULA",e[e.IPAAS_BACK=9]="IPAAS_BACK",e[e.LABEL_PRINT=10]="LABEL_PRINT",e[e.NOCODE_BPMN_RULE=11]="NOCODE_BPMN_RULE",e[e.PAAS_BPMN_RULE=12]="PAAS_BPMN_RULE",e[e.ONLINE_FORM_FIELD_FORMULA=13]="ONLINE_FORM_FIELD_FORMULA",e[e.MEDPRO_BUSINESSFLOW=14]="MEDPRO_BUSINESSFLOW",e[e.RUN_FORMULA=15]="RUN_FORMULA",e[e.BI_FORMULA=16]="BI_FORMULA",e[e.DATA_SET_FORMULA=17]="DATA_SET_FORMULA",e))(b||{})),g=o("ExpressionTabEnum",(e=>(e.FUNCTION="function",e.FORM="form",e.FIELD="field",e.VARIABLE="variable",e.NODE="node",e.OPERATOR="operator",e))(g||{})),O=o("OperatorTypeEnum",(e=>(e.ARITHMETIC="arithmetic",e.RELATIONSHIP="relationship",e.LOGIC="logic",e.OTHER="other",e))(O||{})),ba=o("VarTypeEnum",(e=>(e.INNER_VAR="INNER_VAR",e.SYSTEM_VAR="SYSTEM_VAR",e.GLOBAL_VAR="GLOBAL_VAR",e.PAGE_VAR="PAGE_VAR",e))(ba||{})),_t=o("ReturnTypeEnum",(e=>(e.String="string",e.Number="number",e.Boolean="boolean",e))(_t||{})),pt=o("DataSetReturnTypeEnum",(e=>(e.String="string",e.Double="number",e))(pt||{})),he=o("EntityFormulaReturnTypeEnum",(e=>(e.Text="text",e.LongText="long_text",e.Int="integer",e.Long="long",e.Double="decimal",e.Boolen="boolean",e))(he||{})),Sa=o("IdentifierAddon",(e=>(e.Prefix="",e))(Sa||{}));const Ad=o("zeroWidthSpace","");var Ia=o("GctMqttTopsEnum",(e=>(e.EDHR_FORM_INST_MULTI_PERSON_EDIT_BREAK="FORM_INST_MULTI_PERSON_EDIT_BREAK",e.EDHR_FORM_INST_MULTI_PERSON_EDIT_UNLOCK="FORM_INST_MULTI_PERSON_EDIT_UNLOCK",e))(Ia||{})),Na=o("GlobalParamEnum",(e=>(e.SELECT_ID="$VAR_GCT_SELECT_ID",e))(Na||{}));class vt{context={aid:"",bid:"",pid:"",platform:Ot.WEB};appInfo={};projectName=Nt.PORTAL;lang="zh-CN"}o("GlobalPiniaState",vt);class Me{loaded=!1;isNew=!0;loading=!1;destroyed=!1;data={}}o("FormState",Me);class W{disabled=!1;readonly=!1;visible=!0;keepalive=!1;destroyed=!1}o("FormItemBasicState",W);class Dt extends W{}o("FormCollapsePaneState",Dt);class Mt extends W{}o("FormCollapseState",Mt);class yt extends W{activePane=""}o("FormTabState",yt);class Ct extends W{}o("FormTabPaneState",Ct);class ye extends W{label="";value=null;options=[]}o("FormEditItemState",ye);class Pt extends W{expand=!0}o("FormGroupState",Pt);class Ut extends ye{}o("FormItemState",Ut);const Rd=o("gctMemoizeAsync",(...e)=>La.bind(null,...e));function La(e,...t){const i=typeof t=="object"?de.stringify(t):t;let a=Ce.get(i);return a||(a=(async()=>{try{return await e(...t)}catch(r){throw Ce.delete(i),r}})(),Ce.set(i,a,3e5),a)}class Ce{static cachedata={};static set(t,n,i){this.cachedata[t]={maxAge:i||0,value:n,now:Date.now()}}static get(t){this.reset();const n=this.cachedata[t];return n?n.value:null}static delete(t){return delete this.cachedata[t]}static clear(){this.cachedata={}}static reset(){for(const t in this.cachedata){const n=this.cachedata[t];n&&Date.now()-n.now>n.maxAge&&this.delete(t)}}}class wt{configs=new Map;cache=new Map;getConfig(t){return this.configs.get(t)}register(t){this.configs.set(t.tag,t),t.items&&this.cache.set(t.tag,t.items)}unregister(t){this.configs.delete(t),this.cache.delete(t)}get(t){return this.cache.get(t)||[]}async asyncGet(t,n){const i=this.configs.get(t);return i?i.mode==="static"?this.getByConfig(i):i.mode==="async"?this.cache.has(t)?this.cache.get(t)||[]:this.asyncGetByConfig(i,n):[]:[]}getByConfig(t){return t.items||[]}async asyncGetByConfig(t,n={}){if(t.fetch){const i=await t.fetch(n||{});if(i){const[a,r]=t.keys||["name","id"];return this.deepFormat(i,a,r)}}return[]}deepFormat(t,n,i){return t.map(a=>{const r={label:a[n],value:a[i]};return a.children&&a.children.length>0&&(r.options=this.deepFormat(a.children,n,i)),r})}}o("DictionaryUtil",wt);const Pe=o("t",(...e)=>_gct.i18n.global.t(...e));class Ue{data;next;prev;constructor(t,n=null,i=null){this.data=t,this.next=n,this.prev=i}clear(){this.data=null,this.next=null,this.prev=null}}o("LinkedNode",Ue);class Oa{active=null;add(t){if(!this.active)this.active=new Ue(t);else{if(this.active.next){let i=this.active.next;for(;i;)i=i.next,i&&i.clear()}const n=new Ue(t,null,this.active);this.active.next=n,this.active=n}}delete(t){const{prev:n,next:i}=t;n&&(n.next=i),i&&(i.prev=n),t.clear()}prev(){this.active&&this.active.prev&&(this.active=this.active.prev)}next(){this.active&&this.active.next&&(this.active=this.active.next)}clearAll(){if(this.active){let t=this.active.prev,n=this.active.next;for(;t;)t.clear(),t=t.prev;for(;n;)n.clear(),n=n.next;this.active.clear()}}canUndo(){return!!this.active&&!!this.active.prev}canRedo(){return!!this.active&&!!this.active.next}}o("LinkedList",Oa);const bd=o("insertCustomCssToHead",function(e,t=""){const n=document.getElementsByTagName("head")[0],i=document.getElementById("gct-custom-css"+t);i&&n.removeChild(i);const a=document.createElement("style");a.id="gct-custom-css"+t,a.type="text/css",Le(t)?a.innerHTML=e:a.innerHTML=`#${t}{${e}}`,n.appendChild(a)});function _a(e){const t=[];if(e.required&&t.push({required:!0,message:Pe("sys.notNull")}),e.reg){const{reg:i,regHint:a}=e,r=new RegExp(i),s=c=>r.test(c);t.push({validator:s,message:a??Pe("sys.regError")})}const n=e.validateFn;return n&&t.push({validator:n}),t}function pa(e){return{all:e=e||new Map,on:function(t,n){var i=e.get(t);i?i.push(n):e.set(t,[n])},off:function(t,n){var i=e.get(t);i&&(n?i.splice(i.indexOf(n)>>>0,1):e.set(t,[]))},emit:function(t,n){var i=e.get(t);i&&i.slice().map(function(a){a(n)}),(i=e.get("*"))&&i.slice().map(function(a){a(t,n)})}}}const Sd=o("mitt",pa());class va{CACHE_EXPIRATION_TIME=600*1e3;modelCache=new Map;modelLoadingCache=new Map;modelsLoadingCache=new Map;enumCache=new Map;enumLoadingCache=new Map;queryRefDataCache=new Map;queryRefDataLoadingCache=new Map;isExpired(t){return Date.now()>t.expiresAt}createCacheEntry(t){return{data:t,expiresAt:Date.now()+this.CACHE_EXPIRATION_TIME}}async loadModel(t){if(this.modelCache.has(t)){const i=this.modelCache.get(t);if(!this.isExpired(i))return i.data;this.modelCache.delete(t)}if(this.modelLoadingCache.has(t))return this.modelLoadingCache.get(t);const n=(async()=>{try{const i=await _api.apaas.modelMeta.getDetail({modelKey:t});return i?(this.modelCache.set(t,this.createCacheEntry(i)),i):{}}finally{this.modelLoadingCache.delete(t)}})();return this.modelLoadingCache.set(t,n),n}async loadModels(t){const n=t.join(",");if(t.every(r=>{const s=this.modelCache.get(r);return s&&!this.isExpired(s)}))return t.map(r=>this.modelCache.get(r).data);if(t.forEach(r=>{const s=this.modelCache.get(r);s&&this.isExpired(s)&&this.modelCache.delete(r)}),this.modelsLoadingCache.has(n))return this.modelsLoadingCache.get(n);const a=(async()=>{try{const r=t.filter(s=>!this.modelCache.has(s));if(r.length>0){const s=await _api.apaas.modelMeta.getByKeys({modelKeys:r.join(",")});s&&s.length>0&&s.forEach(c=>{this.modelCache.set(c.key,this.createCacheEntry(c)),c.fieldMetaList=c.fieldMetas||[]})}return t.map(s=>this.modelCache.get(s).data)}finally{this.modelsLoadingCache.delete(n)}})();return this.modelsLoadingCache.set(n,a),a}async loadField(t,n){const i=await this.loadModel(t);if(i?.fieldMetaList)return i.fieldMetaList.find(a=>a.key===n)}async loadFieldPaths(t,n,i){if(!i)return[];const a=[],r=!!i.bindFieldKey,s=r?i.modelLink||[i.belongModelKey,i.bindModelKey]:[i.modelKey],c=await this.loadModels(s);if(r)a.push(...c.map(f=>f.name));else{const f=await this.loadModel(i.modelKey);f&&a.push(f.name)}const u=await this.loadModel(t);if(u?.fieldMetaList){const f=u.fieldMetaList.find(l=>l.key===n);f&&a.push(f.name)}return a}async loadEnumList(t,n,i=Lt.ENTITY){const a=`${i}:${t}:${n}`;if(this.enumCache.has(a)){const s=this.enumCache.get(a);if(!this.isExpired(s))return Y(s.data);this.enumCache.delete(a),this.enumLoadingCache.delete(a)}if(this.enumLoadingCache.has(a))return this.enumLoadingCache.get(a);const r=(async()=>{try{return[]}finally{this.enumLoadingCache.delete(a)}})();return this.enumLoadingCache.set(a,r),r}async loadQueryRefData(t){if(!t||!t.modelKey)throw new Error("queryRefData 参数缺失");const n=JSON.stringify(t);if(this.queryRefDataCache.has(n)){const a=this.queryRefDataCache.get(n);if(!this.isExpired(a))return Y(a.data);this.queryRefDataCache.delete(n),this.queryRefDataLoadingCache.delete(n)}if(this.queryRefDataLoadingCache.has(n))return this.queryRefDataLoadingCache.get(n);const i=(async()=>{try{const a=await _api.apaas.modelData.postQueryRefData(t);return a?(this.queryRefDataCache.set(n,this.createCacheEntry(a)),Y(a)):{}}finally{this.queryRefDataLoadingCache.delete(n)}})();return this.queryRefDataLoadingCache.set(n,i),i}getCachedModel(t){const n=this.modelCache.get(t);if(n&&!this.isExpired(n))return n.data;n&&this.isExpired(n)&&this.modelCache.delete(t)}clear(t){this.modelCache.delete(t),this.modelLoadingCache.delete(t);const n=[];this.modelsLoadingCache.forEach((r,s)=>{s.includes(t)&&n.push(s)}),n.forEach(r=>{this.modelsLoadingCache.delete(r)});const i=[];this.enumCache.forEach((r,s)=>{s.includes(t)&&i.push(s)}),i.forEach(r=>{this.enumCache.delete(r),this.enumLoadingCache.delete(r)});const a=[];this.queryRefDataCache.forEach((r,s)=>{s.includes(`"modelKey":"${t}"`)&&a.push(s)}),a.forEach(r=>{this.queryRefDataCache.delete(r),this.queryRefDataLoadingCache.delete(r)})}clearAll(){this.modelCache.clear(),this.modelLoadingCache.clear(),this.modelsLoadingCache.clear(),this.enumCache.clear(),this.enumLoadingCache.clear(),this.queryRefDataCache.clear(),this.queryRefDataLoadingCache.clear()}keys(){return Array.from(this.modelCache.keys())}}const Id=o("modelLoader",new va),Nd=o("ModeFnMap",{[b.EXPORT_TEMPLATE]:["CONCAT"],[b.PROCESS_TITLE]:["CONCAT"],[b.SEARCH]:["AND","OR"],[b.GATEWAY_RULE]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT"],[b.NOCODE_BPMN_RULE]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT","ISNULL","ISEMPTY"],[b.PAAS_BPMN_RULE]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT"],[b.MEDPRO_BUSINESSFLOW]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT"],[b.ENTITY_FORMULA]:["IF","ISEMPTY","ISNULL","AND","OR","EQ","NE","LE","LT","GE","GT","PARSENUMBER","CONCAT","SPLIT","SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","YEAR","MONTH","DAY","HOUR","MINUTE","TUPLE","SEQMAP","SUMSQ"],[b.LABEL_PRINT]:["IF","ISEMPTY","ISNULL","AND","OR","EQ","NE","LE","LT","GE","GT","PARSENUMBER","CONCAT","SPLIT","SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","DATEFORMAT","YEAR","MONTH","DAY","HOUR","MINUTE","TUPLE","SEQMAP","SUMSQ"]}),Ld=o("ModeTabMap",{[b.EXPORT_TEMPLATE]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.PROCESS_TITLE]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.GATEWAY_RULE]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.NOCODE_BPMN_RULE]:[g.FIELD,g.FUNCTION,g.NODE,g.VARIABLE,g.OPERATOR],[b.PAAS_BPMN_RULE]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.SEARCH]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.FIELD_DISPLAY]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.DISPLAY_RULE]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.CREATE_FIELD]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.DATA_SET_FORMULA]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.PAAS_CREATE_FIELD]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.ENTITY_FORMULA]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.IPAAS_BACK]:[g.FUNCTION,g.OPERATOR],[b.LABEL_PRINT]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.ONLINE_FORM_FIELD_FORMULA]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.MEDPRO_BUSINESSFLOW]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.RUN_FORMULA]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.BI_FORMULA]:[g.FIELD,g.FUNCTION,g.OPERATOR]}),Od=o("ReturnTypeMaps",{[b.CREATE_FIELD]:_t,[b.DATA_SET_FORMULA]:pt,[b.PAAS_CREATE_FIELD]:he,[b.ENTITY_FORMULA]:he,[b.RUN_FORMULA]:he}),_d=o("ModeTabDict",{[g.FUNCTION]:{icon:"iconfont icon-hanshu1"},[g.FIELD]:{icon:"iconfont icon-ziduan2"},[g.VARIABLE]:{icon:"iconfont icon-bianliang"},[g.NODE]:{icon:"iconfont icon-hanshu1"},[g.OPERATOR]:{icon:"iconfont icon-a-yunsuanfu1"}}),Ft=o("BuiltOperators",{"+":{title:"加法: a+b",description:"a,b: 整数,数字",group:O.ARITHMETIC},"-":{title:"减法: a-b",description:"a,b: 整数,数字",group:O.ARITHMETIC},"*":{title:"乘法: a*b",description:"a,b: 整数,数字",group:O.ARITHMETIC},"/":{title:"除法: a/b",description:"a,b: 整数,数字",group:O.ARITHMETIC},"%":{title:"求余: a%b",description:"a,b: 整数,数字",group:O.ARITHMETIC},">":{title:"大于: a>b",description:"a,b: 整数,数字",group:O.RELATIONSHIP},">=":{title:"大于等于: a>=b",description:"a,b: 整数,数字",group:O.RELATIONSHIP},"<":{title:"小于: a<b",description:"a,b: 整数,数字",group:O.RELATIONSHIP},"<=":{title:"小于等于: a<=b",description:"a,b: 整数,数字",group:O.RELATIONSHIP},"==":{title:"等于: a==b",description:"a,b: 整数,数字,布尔,字符串",group:O.RELATIONSHIP},"!=":{title:"不等于: a!=b",description:"a,b: 整数,数字,布尔,字符串",group:O.RELATIONSHIP},"&&":{title:"与: a&&b",description:"a,b: 布尔",group:O.LOGIC},"||":{title:"或: a||b",description:"a,b: 布尔",group:O.LOGIC},"!":{title:"非: !a",description:"a: 布尔",group:O.LOGIC},"?":{title:"判断: a?b:c",description:"若a的值为true,则执行b否则执行c",group:O.OTHER,label:"?:",output:"?:"},"(":{title:"左括号: c-(a+b)",description:"优先运算 () 中的内容",group:O.OTHER},")":{title:"右括号: c-(a+b)",description:"优先运算 () 中的内容",group:O.OTHER}}),pd=o("numberOperator",["+","-","*","/","%",">",">=","<","<="]),vd=o("booleanOperator",["&&","||","!"]),Dd=o("allOperator",["==","!=","?",":"]),Md=o("returnBolOperator",["&&","||","!","==","!=",">",">=","<","<="]),yd=o("getOperatorList",()=>{const e=Object.keys(Ft).map(t=>{const{title:n,description:i,group:a,label:r,output:s}=Ft[t];return{name:r??t,group:a,desc:`${n}
|
|
2
|
+
${i}`,id:s??t}});return[O.ARITHMETIC,O.RELATIONSHIP,O.LOGIC,O.OTHER].map(t=>({id:t,name:Pe(`sys.expression.${t}`),children:e.filter(n=>n.group===t),idToChildren:!1}))}),Cd=o("CUSTOM_LANGUAGE","custom-expression"),Pd=o("CUSTOM_THEME","custom-expression-theme"),Gt=o("functionGroup",[{id:"LOGIC",name:"逻辑",children:[{desc:`IF(expr, a, b)
|
|
3
|
+
根据条件表达式,返回不同的值, 当expr执行为true,返回a, 否则返回b。
|
|
4
|
+
参数 expr: 条件表达式 a: 值 b: 另一个值 返回值 a|b
|
|
5
|
+
示例
|
|
6
|
+
IF(1 > 2, 1, 2); 返回 2`,definition:"declare function IF<T>(expr: boolean, v: T, l: T): T;"},{desc:`ISEMPTY(a)
|
|
7
|
+
判断参数a是否为空,a为空则返回true
|
|
8
|
+
参数a支持的类型:String,Array,Object,返回值 true|false
|
|
9
|
+
示例
|
|
10
|
+
ISEMPTY('') 返回 true
|
|
11
|
+
ISEMPTY(null) 返回 true
|
|
12
|
+
ISEMPTY(undefined) 返回 true
|
|
13
|
+
ISEMPTY([]) 返回 true
|
|
14
|
+
ISEMPTY({}) 返回 true
|
|
15
|
+
`,definition:"declare function ISEMPTY<T>(val: T): boolean;"},{desc:`ISNULL(a)
|
|
16
|
+
判断参数a是否为null,a为null则返回true
|
|
17
|
+
示例
|
|
18
|
+
ISNULL('') 返回 false
|
|
19
|
+
ISNULL(null) 返回 true
|
|
20
|
+
ISNULL(undefined) 返回 false`,definition:"declare function ISNULL<T>(val: T): Promise<boolean>;"},{desc:`ISUNDEFINED(a)
|
|
21
|
+
判断参数a是否为undefined,a为undefined则返回true
|
|
22
|
+
示例
|
|
23
|
+
ISUNDEFINED('') 返回 false
|
|
24
|
+
ISUNDEFINED(null) 返回 false
|
|
25
|
+
ISUNDEFINED(undefined) 返回 true`,definition:"declare function ISUNDEFINED<T>(val: T): Promise<boolean>;"},{desc:`AND(conditions): boolean
|
|
26
|
+
根据一组表达式判断是否为真,只要有一个为false,则返回false
|
|
27
|
+
参数 conditions: 条件表达式列表 返回值 true|false
|
|
28
|
+
示例
|
|
29
|
+
IF(AND(1==1,1 > 2,3==3),'正确','错误'); 返回 错误`,definition:"declare function AND<T>(...e: T[]): Promise<boolean>;"},{desc:`OR(conditions)
|
|
30
|
+
根据一组表达式判断是否为真,只要有一个为true,则返回true
|
|
31
|
+
参数 conditions: 条件表达式数组 返回值 true|false
|
|
32
|
+
示例
|
|
33
|
+
IF(AND(1==1,1 > 2,3==3),'正确','错误'); 返回 正确`,definition:"declare function OR<T>(...e: T[]): Promise<boolean>;"},{desc:`EQ(a, b)
|
|
34
|
+
比较两个值是否相等,如果相等则返回true
|
|
35
|
+
参数a/b支持的类型:Number,String ,Boolean , Date , Array , Object,Array及Object比较数值型知否相等,参数 a: 一个值 b: 另一个值 返回值 true|false
|
|
36
|
+
示例
|
|
37
|
+
EQ(1, 1); 返回 true
|
|
38
|
+
EQ("a", "c"); 返回 false
|
|
39
|
+
EQ([1,2,3],[1,2,3]) 返回 true
|
|
40
|
+
EQ({a:1,b:1},{a:1,b:1}) 返回 true`,definition:"declare function EQ<T, K>(v: T, o: K): Promise<boolean>;"},{desc:`NE(a, b)
|
|
41
|
+
比较两个值是否不相等,如果不相等则返回true
|
|
42
|
+
参数a/b支持的类型:Number,String ,Boolean , Date , Array , Object,Array及Object比较数值型知否不相等, 参数 a: 一个值 b: 另一个值 返回值 true|false
|
|
43
|
+
示例
|
|
44
|
+
NE(1, 1); 返回 false
|
|
45
|
+
NE("a", "c"); 返回 true
|
|
46
|
+
NE([1,2,3],[1,2,3]) 返回 false
|
|
47
|
+
NE({a:1,b:1},{a:1,b:1}) 返回 false`,definition:"declare function NE<T>(v: T, o: T): Promise<boolean>;"},{desc:`LE(a, b)
|
|
48
|
+
比较两个值大小,a小于等于b返回true
|
|
49
|
+
参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
|
|
50
|
+
示例
|
|
51
|
+
LE(1, 1); 返回 true
|
|
52
|
+
LE(2, 1); 返回 false
|
|
53
|
+
LE('2023-07-12',''2023-07-13'') 返回 true
|
|
54
|
+
LE('12:00',''13:00'') 返回 true`,definition:"declare function LE<T>(v: T, o: T): Promise<boolean>;"},{desc:`LT(a, b)
|
|
55
|
+
比较两个值大小,a小于b返回true
|
|
56
|
+
参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
|
|
57
|
+
示例
|
|
58
|
+
LT(1, 1); 返回 false
|
|
59
|
+
LT(1, 2); 返回 true
|
|
60
|
+
LT('2023-07-12',''2023-07-13'') 返回 true
|
|
61
|
+
LT('13:00',''12:00'') 返回 true`,definition:"declare function LT<T>(v: T, o: T): Promise<boolean>;"},{desc:`GE(a, b)
|
|
62
|
+
比较两个值大小,a大于等于b返回true
|
|
63
|
+
参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
|
|
64
|
+
示例
|
|
65
|
+
GE(1, 1); 返回 true
|
|
66
|
+
GE(2, 3); 返回 false
|
|
67
|
+
GE('2023-07-13','2023-07-12') 返回 true
|
|
68
|
+
GE('13:00','12:00') 返回 true`,definition:"declare function GE<T>(v: T, o: T): Promise<boolean>;"},{desc:`GT(a, b)
|
|
69
|
+
比较两个值大小,a大于b返回true
|
|
70
|
+
参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
|
|
71
|
+
示例
|
|
72
|
+
GT(1, 1); 返回 false
|
|
73
|
+
GT(2, 1); 返回 false
|
|
74
|
+
GT('2023-07-13','2023-07-12') 返回 true
|
|
75
|
+
GT('13:00','12:00') 返回 true`,definition:"declare function GT<T>(v: T, o: T): Promise<boolean>;"}]},{id:"STRING",name:"字符串",children:[{desc:`LEN(a)
|
|
76
|
+
返回字符串长度
|
|
77
|
+
示例
|
|
78
|
+
LEN('aa'); 返回 2`,definition:"declare function LEN(v: string): Promise<number>;"},{desc:`CONCAT(a,b....)
|
|
79
|
+
拼接参数a和b,返回拼接后的字符串
|
|
80
|
+
参数a/b支持字符串,返回字符串
|
|
81
|
+
示例
|
|
82
|
+
CONCAT('a','b','c') 返回abc`,definition:"declare function CONCAT(...args: string[]): Promise<string>;"},{desc:`SUBSTRING(str,start,end)
|
|
83
|
+
截取字符串str,从start开始截取到end,start从0开始,如果start和end为负数表示从最后开始截取,start为-1表示从最后一位开始截取,返回截取的字符串
|
|
84
|
+
示例
|
|
85
|
+
SUBSTRING('abcd',0,2) 返回abc
|
|
86
|
+
SUBSTRING('abcd',-1,-2) 返回 cd`,definition:"declare function SUBSTRING(v: string, s: number, e: number): Promise<string>;"},{desc:`SUBSTR(str,start,len)
|
|
87
|
+
截取字符串str,从start开始截取len长度,start从0开始,如果start为负数表示从最后开始截取,start为-1表示从最后一位开始截取,返回截取的字符串
|
|
88
|
+
SUBSTR('abcd',0,2) 返回ab
|
|
89
|
+
SUBSTRING('abcd',-1,2) 返回 cd`,definition:"declare function SUBSTR(v: string, s: number, l: number): Promise<string>;"},{desc:`UPPER(a)
|
|
90
|
+
字符串a转化为大写,参数a支持字符串
|
|
91
|
+
示例
|
|
92
|
+
UPPER('aa') 返回 AA `,definition:"declare function UPPER(v: string): Promise<string>;"},{desc:`LOWER(a)
|
|
93
|
+
字符串a转化为小写,参数a支持字符串
|
|
94
|
+
示例
|
|
95
|
+
LOWER('AA') 返回 aa`,definition:"declare function LOWER(v: string): Promise<string>;"},{desc:`TRIM(a)
|
|
96
|
+
字符串a去前后空格
|
|
97
|
+
示例
|
|
98
|
+
TRIM(' ab ') 返回 'ab'`,definition:"declare function TRIM(v: string): Promise<string>;"},{desc:`LTRIM(a)
|
|
99
|
+
字符串a去前空格
|
|
100
|
+
示例
|
|
101
|
+
LTRIM(' ab ') 返回 'ab '`,definition:"declare function LTRIM(v: string): Promise<string>;"},{desc:`RTRIM(a)
|
|
102
|
+
字符串a去前空格
|
|
103
|
+
示例
|
|
104
|
+
LTRIM(' ab ') 返回 ' ab'`,definition:"declare function RTRIM(v: string): Promise<string>;"},{desc:`REPEAT(str,a)
|
|
105
|
+
字符串a在str中重复的次数,返回重复次数
|
|
106
|
+
示例
|
|
107
|
+
REPEAT('aabbcc','a') 返回 2`,definition:"declare function REPEAT(v: string, c: string): Promise<number | null>;"},{desc:`REPLACE(str,a,b)
|
|
108
|
+
字符串str中把所有的a替换成b
|
|
109
|
+
示例
|
|
110
|
+
REPLACE('aabbcc','a','1') 返回 11bbcc`,definition:"declare function REPLACE(v: string, o: string, t: string): Promise<string>;"},{desc:`FINDSTR(str,a)
|
|
111
|
+
在字符串str中查找字符串a,如果存在返回true,不存在返回false
|
|
112
|
+
示例
|
|
113
|
+
FINDSTR('aabbcc','a') 返回 true`,definition:"declare function FINDSTR(v: string, c: string): Promise<boolean>;"},{desc:`SEARCHSTR(str,a)
|
|
114
|
+
在字符串str中查找字符串a,返回a在str中出现的次数,如果不存在则返回0
|
|
115
|
+
示例
|
|
116
|
+
SEARCHSTR('aabbcc','a') 返回 2`,definition:"declare function SEARCHSTR(v: string, c: string): Promise<number>;"},{desc:`PARSENUMBER(str)
|
|
117
|
+
字符串str转化为数值
|
|
118
|
+
示例
|
|
119
|
+
PARSENUMBER('1') 返回 1
|
|
120
|
+
PARSENUMBER('0.1') 返回 0.1`,definition:"declare function PARSENUMBER(v: string): Promise<number | null>;"},{desc:`SPLIET(str,a)
|
|
121
|
+
字符串str根据a分割转化为数组,返回数组
|
|
122
|
+
参数仅支持Number类型
|
|
123
|
+
示例
|
|
124
|
+
SPLIT('aa-bb-cc','-') 返回 ['aa','bb','cc']`,definition:"declare function SPLIT(v: string, c: string): Promise<string[]>;"}]},{id:"NUMBER",name:"数值",children:[{desc:`SUM(a,b,c...)
|
|
125
|
+
参数a、b、c...相加,返回相加后的数值
|
|
126
|
+
示例
|
|
127
|
+
SUM(1,2,3) 返回 6`,definition:"declare function SUM(...args: number[]): Promise<number>;"},{desc:`REDUCE(a,b,c...)
|
|
128
|
+
参数a、b、c...相减,返回相减后的数值
|
|
129
|
+
示例
|
|
130
|
+
REDUCE(2,1) 返回 1
|
|
131
|
+
REDUCE(5,1,2) 返回 2`,definition:"declare function REDUCE(...args: number[]): Promise<number>;"},{desc:`MULTIPLICATION(a,b,c...)
|
|
132
|
+
参数a、b、c...相乘,返回相乘后的数值
|
|
133
|
+
示例
|
|
134
|
+
MULTIPLICATION(2,1) 返回 2
|
|
135
|
+
MULTIPLICATION(5,1,2) 返回 10`,definition:"declare function MULTIPLICATION(...args: number[]): Promise<number>;"},{desc:`DIVISION(a,b,c...)
|
|
136
|
+
参数a、b、c...相除,返回相除后的数值
|
|
137
|
+
示例
|
|
138
|
+
DIVISION(2,1) 返回 2
|
|
139
|
+
DIVISION(10,5,2) 返回 1`,definition:"declare function DIVISION(...args: number[]): Promise<number>;"},{desc:`FIXED(value,num)
|
|
140
|
+
参数value保留num位小数,返回数值
|
|
141
|
+
示例
|
|
142
|
+
FIXED(2.01,1) 返回 2.0
|
|
143
|
+
FIXED(2.015,2) 返回 2.01`,definition:"declare function FIXED(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`ROUND(value,num)
|
|
144
|
+
参数value保留num位四舍五入后的小数,返回数值
|
|
145
|
+
示例
|
|
146
|
+
ROUND(2.01,1) 返回 2.0
|
|
147
|
+
ROUND(2.015,2) 返回 2.02`,definition:"declare function ROUND(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`ROUNDUP(value,num)
|
|
148
|
+
将数字向上舍入到指定的位数。无论数字正负,舍入方向始终向绝对值更大的方向进行。
|
|
149
|
+
示例
|
|
150
|
+
ROUNDUP(3.141,2) 返回 3.15`,definition:"declare function ROUNDUP(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`MAX([value1, value2...])
|
|
151
|
+
从数组参数中获取最大的数,返回数值
|
|
152
|
+
参数必须为Number类型数组
|
|
153
|
+
示例
|
|
154
|
+
MAX([2, 1]) 返回 2
|
|
155
|
+
MAX([2.1, 2.2]) 返回 2.2`,definition:"declare function MAX(v: number[]): Promise<number>;"},{desc:`LARGE([value1, value2...], n)
|
|
156
|
+
从数组参数中获取第n大数值,返回数值
|
|
157
|
+
参数必须为Number类型数组
|
|
158
|
+
示例
|
|
159
|
+
LARGE([5, 4, 3, 2, 1],2) 返回 4
|
|
160
|
+
LARGE([2.5, 2.4, 2.3, 2.2, 2.1], 3) 返回 2.3`,definition:"declare function LARGE(v: number[], n: number): Promise<number | Promise<Error>>;"},{desc:`MIN([value1, value2...])
|
|
161
|
+
从数组参数中获取最小的数,返回数值
|
|
162
|
+
参数必须为Number类型数组
|
|
163
|
+
示例
|
|
164
|
+
MIN([2, 1]) 返回 1
|
|
165
|
+
MIN([2.1, 2.2]) 返回 2.1`,definition:"declare function MIN(v: number[]): Promise<number>;"},{desc:`SMALL([value1, value2...], n)
|
|
166
|
+
从数组参数中获取第n小数值,返回数值
|
|
167
|
+
参数必须为Number类型数组
|
|
168
|
+
示例
|
|
169
|
+
SMALL([5, 4, 3, 2, 1], 2) 返回 2
|
|
170
|
+
SMALL([2.5, 2.4, 2.3, 2.2, 2.1], 3) 返回 2.3`,definition:"declare function SMALL(v: number[], n: number): Promise<number | Promise<Error>>;"},{desc:`AVERAGE([value1, value2...])
|
|
171
|
+
取数组中所有数值的平均值,返回数值
|
|
172
|
+
参数必须为Number类型数组
|
|
173
|
+
示例
|
|
174
|
+
AVERAGE([5, 4, 3, 2, 1]) 返回 3`,definition:"declare function AVERAGE(v: number[]): Promise<number | Promise<Error>>;"},{desc:`ABS(value)
|
|
175
|
+
取数值参数value的绝对值,返回数值
|
|
176
|
+
参数必须为Number类型
|
|
177
|
+
示例
|
|
178
|
+
ABS(-1) 返回 1`,definition:"declare function ABS(v: number): Promise<number>;"},{desc:`MOD(value1, value2)
|
|
179
|
+
取数value1除以value2的余数,返回数值
|
|
180
|
+
参数必须为Number类型
|
|
181
|
+
示例
|
|
182
|
+
MOD(4, 3) 返回 1`,definition:"declare function MOD(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`POWER(value, n)
|
|
183
|
+
获取数值value的n次乘幂,返回数值
|
|
184
|
+
参数必须为Number类型
|
|
185
|
+
示例
|
|
186
|
+
POWER(4, 2) 返回 16`,definition:"declare function POWER(v: number, n: number): Promise<number>;"},{desc:`SQRT(value)
|
|
187
|
+
获取数值value的平方根,返回数值
|
|
188
|
+
参数必须为Number类型
|
|
189
|
+
示例
|
|
190
|
+
SQRT(4) 返回 2`,definition:"declare function SQRT(v: number): Promise<number>;"},{desc:`SUMSQ
|
|
191
|
+
SUMSQ(数字1, 数字2, ...) 计算一组数值的平方和。
|
|
192
|
+
示例
|
|
193
|
+
SUMSQ(2,3)=2²+3²=13`,definition:"declare function SUMSQ(...args: number[]): Promise<number>;"},{desc:`STDEV
|
|
194
|
+
STDEV(数字1, 数字2, ...) 计算一组数值的标准差。
|
|
195
|
+
示例
|
|
196
|
+
STDEV([10, 12, 23, 23, 16, 23, 21, 16])=5.237229365663817`,definition:"declare function STDEV(...args: number[]): Promise<number>;"}]},{id:"OBJECT,ARRAY",name:"对象/数组",children:[{desc:`TUPLE(1, 2, 3)
|
|
197
|
+
把多个参数转化为数组结构
|
|
198
|
+
示例
|
|
199
|
+
TUPLE(1, 2, 3) 返回[1, 2, 3]`,definition:"declare function TUPLE(x:any): any[]"},{desc:`SEQMAP('a', 1, 'b', 'c')
|
|
200
|
+
把多个参数转化对象
|
|
201
|
+
示例
|
|
202
|
+
SEQMAP('a', 1, 'b', 'c') 返回 { a: 1, b: 'c' } `,definition:"declare function SEQMAP(a:string,b:any): object"},{desc:`GET(a, b)
|
|
203
|
+
如果a是对象,则获取对象a中属性b的值,如果a是数组,则获取下标b的数据项
|
|
204
|
+
参数a支持的类型: Array , Object,参数b支持的类型: Number,String
|
|
205
|
+
示例
|
|
206
|
+
GET(['A', 'B', 'C'], 1) 返回 A
|
|
207
|
+
GET({ a: 1, b: 2, c: 3 }, 'a') 返回 B`,definition:"declare function GET<T extends object | any[]>(v: T, p: number | keyof T): Promise<T[keyof T]>;"},{desc:`PUT(a, b, c)
|
|
208
|
+
如果a是对象,则b为对象中的属性,c为需要设置的属性值,如果a是数组,则b数组的下标,c为该下标需要设置的数据项
|
|
209
|
+
参数a支持的类型: Array , Object,参数b支持的类型: Number,String ,参数c泛型
|
|
210
|
+
示例
|
|
211
|
+
PUT(['A', 'B', 'C'], 1, 'D') 返回['A', 'D', 'C']
|
|
212
|
+
PUT({ a: 1, b: 2, c: 3 }, 'a', 4) 返回 { a: 4, b: 2, c: 3 } `,definition:"declare function PUT<T>(a: T, b: keyof T, c: T[keyof T | any]): Promise<T | Promise<Error>>;"},{desc:`PUSH(a, b)
|
|
213
|
+
在数组对象a末尾追加b
|
|
214
|
+
参数a的类型为Array, 参数b泛型,返回数组
|
|
215
|
+
示例
|
|
216
|
+
PUSH([1, 2, 3], 4) 返回[1, 2, 3, 4]`,definition:"declare function PUSH<T>(v: any[], n: T): Promise<T[] | Promise<Error>>;"},{desc:`HEADPUSH(a, b)
|
|
217
|
+
在数组对象a头部追加b
|
|
218
|
+
参数a的类型为Array, 参数b泛型,返回数组
|
|
219
|
+
示例
|
|
220
|
+
HEADPUSH([1, 2, 3], 0) 返回[0, 1, 2, 3]`,definition:"declare function HEADPUSH<T>(v: any[], n: T): Promise<T[] | Promise<Error>>;"},{desc:`COUNT
|
|
221
|
+
COUNT([数字1, 数字2, ...]) 计算数组的数量。
|
|
222
|
+
示例
|
|
223
|
+
COUNT([10, 12, 23, 23, 16, 23, 21, 16])=8`,definition:"declare function COUNT(v: number[]): Promise<number>;"}]},{id:"DATE",name:"日期",children:[{desc:`TIMESTAMP2DATE(dtstr)
|
|
224
|
+
时间戳转化为日期对象,参数dtstr为时间戳类型,返回日期时间对象
|
|
225
|
+
示例
|
|
226
|
+
TIMESTAMP2DATE(1689558261) 返回 2023-07 - 17 9: 44: 21`,definition:"declare function TIMESTAMP2DATE(v: number): Promise<string | Promise<Error>>;"},{desc:`DATE2TIMESTAMP(dt)
|
|
227
|
+
日期转时间戳,参数dt为日期类型,返回时间戳
|
|
228
|
+
示例
|
|
229
|
+
DATE2TIMESTAMP()`,definition:"declare function DATE2TIMESTAMP(v: string): Promise<number>;"},{desc:`DATEFORMAT(dt, format)
|
|
230
|
+
日期转字符串,参数dt为日期类型,format为格式
|
|
231
|
+
示例
|
|
232
|
+
DATEFORMAT(NOW(), YYYY-MM-DD HH:mm)`,definition:"declare function DATEFORMAT(v: Date, f: string): Promise<string>;"},{desc:`NOW()
|
|
233
|
+
获取当前日期时间
|
|
234
|
+
NOW() 返回 2023-07 - 17 9: 44: 21`,definition:"declare function NOW(): Promise<string>;"},{desc:"TODAY(获取当天日期TODAY() 返回2023-07-17",definition:"declare function TODAY(): Promise<string>;"},{desc:`YEAR(dt)
|
|
235
|
+
获取参数dt类型的年份
|
|
236
|
+
YEAR(NOW()) 返回 2024`,definition:"declare function YEAR(v: string | number | Date | null | undefined): number;"},{desc:`MONTH(dt)
|
|
237
|
+
获取参数dt类型的月份
|
|
238
|
+
MONTH(NOW()) 返回 7`,definition:"declare function MONTH(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`DAY(dt)
|
|
239
|
+
获取参数dt类型的日
|
|
240
|
+
DAY(NOW()) 返回 17`,definition:"declare function DAY(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`HOUR(dt)
|
|
241
|
+
获取参数dt类型的小时
|
|
242
|
+
HOUR(NOW()) 返回 10`,definition:"declare function HOUR(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`MINUTE(dt)
|
|
243
|
+
获取参数dt类型的分钟
|
|
244
|
+
MINUTE(NOW()) 返回 44`,definition:"declare function MINUTE(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`WEEKRANGE()
|
|
245
|
+
获取本周开始及结束日期
|
|
246
|
+
WEEKRANGE() 返回[2023-07 - 17 00:00:00.000000000 +0800 CST, 2023-07 - 23 23: 59: 59.000000000 +0800 CST]`,definition:"declare function WEEKRANGE(): Promise<[string, string]>;"},{desc:`LASTWEEKRANGE()
|
|
247
|
+
获取本周开始及结束日期
|
|
248
|
+
LASTWEEKRANGE() 返回[2023-07 - 10 00:00:00.000000000 +0800 CST, 2023-07 - 16 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTWEEKRANGE(): Promise<[string, string]>;"},{desc:`MONTHRANGE()
|
|
249
|
+
获取本月开始及结束日期
|
|
250
|
+
MONTHRANGE() 返回[2023-07-01 00:00:00.000000000 +0800 CST, 2023-07 - 31 23: 59: 59.000000000 +0800 CST]`,definition:"declare function MONTHRANGE(): Promise<[string, string]>;"},{desc:`LASTMONTHRANGE()
|
|
251
|
+
获取上月开始及结束日期
|
|
252
|
+
MONTHRANGE() 返回[2023-06-01 00:00:00.000000000 +0800 CST, 2023-06 - 30 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTMONTHRANGE(): Promise<[string, string]>;"},{desc:`YEARRANGE()
|
|
253
|
+
获取本年开始及结束日期
|
|
254
|
+
YEARRANGE() 返回[2023-01-01 00:00:00.000000000 +0800 CST, 2023 - 12 - 31 23: 59: 59.000000000 +0800 CST]`,definition:"declare function YEARRANGE(): Promise<[string, string]>;"},{desc:`LASTYEARRANGE()
|
|
255
|
+
获取上一年开始及结束日期
|
|
256
|
+
LASTYEARRANGE() 返回[2022-01-01 00:00:00.000000000 +0800 CST, 2022 - 12 - 31 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTYEARRANGE(): Promise<[string, string]>;"},{desc:`QUARTER()
|
|
257
|
+
获取本季度开始及结束日期
|
|
258
|
+
QUARTER() 返回[2022-07-01 00:00:00.000000000 +0800 CST, 2022 -09 - 30 23: 59: 59.000000000 +0800 CST]`,definition:"declare function QUARTER(): Promise<[string, string]>;"},{desc:`LASTQUARTER()
|
|
259
|
+
获取上季度开始及结束日期
|
|
260
|
+
LASTQUARTER() 返回[2022-04-01 00:00:00.000000000 +0800 CST, 2022-06 - 30 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTQUARTER(): Promise<[string, string]>;"},{desc:`ISDATERANGE(dt, [startDate, endDate])
|
|
261
|
+
判断参数dt是否在给定的区间范围内,如果在则返回true,反之返回false
|
|
262
|
+
ISDATERANGE(NOW(), WEEKRANGE()) 返回 true`,definition:"declare function ISDATERANGE(v: Date, r: [Date, Date]): Promise<boolean>;"},{desc:`ISTIMERANGE(dt, [startTime, endTime])
|
|
263
|
+
判断参数dt是否在给定的区间范围内,如果在则返回true,反之返回false
|
|
264
|
+
参数dt、startTime、endTime为时间字符串,如果startTime大于endTime则跨天
|
|
265
|
+
ISTIMERANGE(DATEFORMAT(NOW(), HH:mm), ['06:00', '12:00']) 返回 true
|
|
266
|
+
ISTIMERANGE(DATEFORMAT(NOW(), HH:mm), ['13:00', '07:00']) 返回 true `,definition:"declare function ISTIMERANGE(v: string, r: [string, string]): Promise<boolean>;"}]}].map(e=>(e.children=(e.children??[]).map(t=>{const i=t.definition.match(new RegExp("(?<=declare function )([A-Z0-9]+)","g"))?.[0]??"UNKNOWN",a=(t.definition.match(/([a-z]:)+/g)||[]).length;return Object.assign(t,{id:i,name:i,idToChildren:!1,_args_:a}),t}),e))),Ud=o("functionMap",Gt.reduce((e,t)=>(t.children.forEach(n=>{e[n.id]=n}),e),{})),wd=o("ipaasBackFunctionGroup",[{id:"INNER",name:"内置",children:[{desc:`MD5(str) 计算输入字符串的MD5值
|
|
267
|
+
示例: MD5('abc')
|
|
268
|
+
返回 900150983cd24fb0d6963f7d28e17f72
|
|
269
|
+
`,definition:"declare function MD5(str: string): string;"},{desc:`SHA1(str) 计算输入字符串的HASH值
|
|
270
|
+
示例: SHA1('abc')
|
|
271
|
+
返回 a9993e364706816aba3e25717850c26c9cd0d89d`,definition:"declare function SHA1(str: string): string;"},{desc:`SHA256(str) 计算输入字符串的HASH值
|
|
272
|
+
`,definition:"declare function SHA256(str: string): string;"},{desc:`SHA512(str) 计算输入字符串的HASH值
|
|
273
|
+
示例: SHA512('abc')
|
|
274
|
+
返回 ddaf35a193617abacc417349ae20...`,definition:"declare function SHA512(str: string): string;"},{desc:`RANDOMSTR(number) 生成随机字符串
|
|
275
|
+
number:为随机字符串的长度
|
|
276
|
+
示例: RandomStr(6)
|
|
277
|
+
返回 o4EX1D`,definition:"declare function RANDOMSTR(number: number): string;"},{desc:`NOW(format) 生成指定格式的当前时间戳
|
|
278
|
+
format为时间格式,可选值参考'yyyy-MM-dd','yyyy-MM-dd HH:mm:ss','HH:mm:ss'
|
|
279
|
+
示例: NOW('yyyy-MM-dd')
|
|
280
|
+
返回 1970-01-01`,definition:"declare function NOW(format: string): string;"},{desc:`CONCAT(a,b....)
|
|
281
|
+
拼接参数a和b,返回拼接后的字符串
|
|
282
|
+
参数a/b支持字符串,返回字符串
|
|
283
|
+
示例 CONCAT('a','b','c')
|
|
284
|
+
返回abc`,definition:"declare function CONCAT(...args: string[]): string;"},{desc:`UNIX10()
|
|
285
|
+
返回10位的时间戳
|
|
286
|
+
UNIX10() 返回 1677811200`,definition:"declare function UNIX10(): number;"},{desc:`UNIX13()
|
|
287
|
+
返回13位的时间戳
|
|
288
|
+
UNIX13() 返回 1677811200000`,definition:"declare function UNIX13(): number;"}]}].map(e=>(e.children=e.children.map(t=>{const n=t.definition.match(new RegExp("(?<=declare function )([A-Z0-9]+)","g"))[0],i=(t.definition.match(/([a-z]:)+/g)||[]).length;return Object.assign(t,{id:n,name:n,idToChildren:!1,_args_:i}),t}),e))),Fd=o("ipaasBackFunctionMap",Gt.reduce((e,t)=>(t.children.forEach(n=>{e[n.id]=n}),e),{})),Da=o("biBackFunctionGroup",[{id:"COMMON",name:"常用",children:[{desc:`将多个字段合并成一个字符串
|
|
289
|
+
示例: CONCAT('a', '-', 'b') = 'a-b'
|
|
290
|
+
`,definition:"declare function CONCAT( ...any: string[]): string;"},{desc:`返回日期的指定中加上指定的数字 后的日期
|
|
291
|
+
示例: DATEADD('2020-09-29', 100, days) = 2021-01-07
|
|
292
|
+
`,definition:"declare function DATEADD(data: string, interval: number, date_part: string): string;"},{desc:`返回 <date1> 与 <date2> 之差。以 <date_part> 的单位表示,只计算完整<date_part>
|
|
293
|
+
示例: DATEDIFF('2024-05-22', '2020-09-29', 'year') = 3
|
|
294
|
+
`,definition:"declare function DATEDIFF(date1: string, date2: string, date_part: string): number;"},{desc:`将日期进行格式化,并输出文本
|
|
295
|
+
示例: DATEFORMAT(2020-09-29, yyyyMMdd) = '20200929'
|
|
296
|
+
`,definition:"declare function DATEFORMAT(date: any, format: string): string;"},{desc:`以<format>格式解析字符串<date_string>,并转化为日期类型。
|
|
297
|
+
示例: TODATE('2020-09-29', 'yyyy-MM-dd') = 2020-09-29
|
|
298
|
+
`,definition:"declare function TODATE(date_string: string, format:string): any;"},{desc:`NULLIF函数接受两个参数,如果两个参数相等则返回NULL,否则返回第一个参数,可以用来避免分母为0的情况
|
|
299
|
+
示例: 如果field为0 则返回null,NULLIF(<field>,0) = null
|
|
300
|
+
`,definition:"declare function NULLIF(arg1: any,arg2:any): any;"}]},{id:"NUMBER",name:"数值",children:[{desc:`返回多个参数中的最大值,至少输入2个参数
|
|
301
|
+
示例: GREATEST(10, 5, 7) = 10
|
|
302
|
+
`,definition:"declare function GREATEST( ...any: number[]): number;"},{desc:`返回多个参数中的最小值,至少输入2个参数
|
|
303
|
+
示例: LEAST(10, 5, 7) = 5
|
|
304
|
+
`,definition:"declare function LEAST( ...any: number[]): number;"},{desc:`将<number> 舍入为指定位数。 <decimals>指定输出结果的小数位数精度。如果省略decimals,则输出为整数
|
|
305
|
+
示例: ROUND(1/3, 2) = 0.33
|
|
306
|
+
`,definition:"declare function ROUND(number: number, decimals?: number): number"}]},{id:"TEXT",name:"文本",children:[{desc:`将多个字段合并成一个字符串
|
|
307
|
+
示例: CONCAT('a', '-', 'b') = 'a-b'
|
|
308
|
+
`,definition:"declare function CONCAT( ...any: string[]): string;"},{desc:`如果给定字符串包含指定子字符串,则返回 true
|
|
309
|
+
示例: CONTAINS('Hello World', ' ') = true
|
|
310
|
+
`,definition:"declare function CONTAINS(string: string, substring: string): boolean;"},{desc:`返回子字符串在字符串中的索引位置,从指定的索引<start>开始查找(<start>可不填)。如果未找到子字符串,则返回 0。字符串中第一个字符的位置为 1
|
|
311
|
+
示例: FIND('World', 'Hello World') = 7
|
|
312
|
+
FIND('Computer', 'Hello World') = 0
|
|
313
|
+
`,definition:"declare function FIND(substring: string, string: string, start?: number): number;"},{desc:`返回字符串长度
|
|
314
|
+
示例: LEN('Hello World') = 11
|
|
315
|
+
`,definition:"declare function LEN(string: string): number;"},{desc:`返回<string>从指定<start>位置处开始的字符串。字符串中第一个字符的位置为 1。 如果添加了可选数字参数<length>,则返回的字符串仅包含该数量的字符
|
|
316
|
+
示例: MID('Hello World', 2) = 'ello World'
|
|
317
|
+
MID('Hello World', 2, 4) ='ello'
|
|
318
|
+
`,definition:"declare function MID(string: string, start: number, length?: number): string"},{desc:`在 <string> 中搜索 <substring> 并将其替换为 <replacement>。如果未找到 <substring>,则字符串保持不变。
|
|
319
|
+
示例: REPLACE('Hello World', ' ', '-') = 'Hello-World'
|
|
320
|
+
`,definition:"declare function REPLACE(string: string, substring: string, replacement: string): string"},{desc:`移除 <string> 的所有前置空格和尾随空格
|
|
321
|
+
示例: TRIM(' Hello World ') = 'Hello World'
|
|
322
|
+
`,definition:"declare function TRIM(string: string): string"}]},{id:"DATE",name:"日期",children:[{desc:`返回日期的指定中加上指定的数字 后的日期
|
|
323
|
+
示例: DATEADD('2020-09-29', 100, days) = 2021-01-07
|
|
324
|
+
`,definition:"declare function DATEADD(data: string, interval: number, date_part: string): string;"},{desc:`以整数的形式返回给定 <date> 的天
|
|
325
|
+
示例: DAY('2020-09-29') = 29
|
|
326
|
+
`,definition:"declare function DAY(date: string): number;"},{desc:`以整数形式返回给定 <date> 的月份
|
|
327
|
+
示例: MONTH('2020-09-29') = 9
|
|
328
|
+
`,definition:"declare function MONTH(date: string): number;"},{desc:`返回一个依据指定 <year>、<month> 和 <day> 构造的日期值
|
|
329
|
+
示例: MAKEDATE(2020, 9, 29) = 2020-09-29
|
|
330
|
+
`,definition:"declare function MAKEDATE(year: number, month: number, day: number): any;"},{desc:`返回当前时间
|
|
331
|
+
示例: NOW() = 2024-05-22 09:29:29
|
|
332
|
+
`,definition:"declare function NOW(): any;"},{desc:`以整数形式返回给定 <date> 的季度
|
|
333
|
+
示例: QUARTER('2020-09-29') = 3
|
|
334
|
+
`,definition:"declare function QUARTER(date: string): number;"},{desc:`返回当前日期
|
|
335
|
+
示例: TODAY() = 2024-05-22
|
|
336
|
+
`,definition:"declare function TODAY(): any;"},{desc:`以整数形式返回给定 <date> 的周
|
|
337
|
+
示例: WEEK('2010-01-01') = 52
|
|
338
|
+
WEEK('2010-01-06') = 1
|
|
339
|
+
`,definition:"declare function WEEK(date: string): number;"},{desc:`以整数形式返回给定 <date> 的年份
|
|
340
|
+
示例: YEAR('2020-09-29') = 2020
|
|
341
|
+
`,definition:"declare function YEAR(date: string): number;"}]},{id:"PARSE",name:"转换",children:[{desc:`将日期进行格式化,并输出文本
|
|
342
|
+
示例: DATEFORMAT(2020-09-29, yyyyMMdd) = '20200929'
|
|
343
|
+
`,definition:"declare function DATEFORMAT(date: any, format: string): string;"},{desc:`以<format>格式解析字符串<date_string>,并转化为日期类型。
|
|
344
|
+
示例: TODATE('2020-09-29', 'yyyy-MM-dd') = 2020-09-29
|
|
345
|
+
`,definition:"declare function TODATE(date_string: string, format:string): any;"},{desc:`将文本或数值转为浮点数
|
|
346
|
+
示例: TODOUBLE('123.21') = 123.21
|
|
347
|
+
TODOUBLE(3) = 3.0
|
|
348
|
+
`,definition:"declare function TODOUBLE(expression: string | number): number;"},{desc:`将文本或数值转为整数,若存在小数部分将舍弃
|
|
349
|
+
TOINT('123.9') = 123
|
|
350
|
+
`,definition:"declare function TOINT(expression: string | number) : number;"},{desc:`将数值转为字符串
|
|
351
|
+
TOSTR(123) = '123'
|
|
352
|
+
`,definition:"declare function TOSTR(expression: number) : string;"}]},{id:"AGG",name:"聚合",children:[{desc:`平均值
|
|
353
|
+
示例: AVG([订单金额])
|
|
354
|
+
根据图表中使用的维度进行聚合,求订单金额的平均值
|
|
355
|
+
`,definition:"declare function AVG(number: number): number;"},{desc:`计数
|
|
356
|
+
示例: COUNT([订单ID])
|
|
357
|
+
根据图表中使用的维度进行聚合,求订单的数量
|
|
358
|
+
`,definition:"declare function COUNT(expression: string | number): number;"},{desc:`去重计数
|
|
359
|
+
示例: COUNTD([订单ID])
|
|
360
|
+
根据图表中使用的维度进行聚合,求订单ID去重后的数量
|
|
361
|
+
`,definition:"declare function COUNTD(expression: string | number): number;"},{desc:`最大值
|
|
362
|
+
示例: MAX([订单金额])
|
|
363
|
+
根据图表中使用的维度进行聚合,求订单金额的最大值
|
|
364
|
+
`,definition:"declare function MAX(expression: number): number;"},{desc:`中位数
|
|
365
|
+
示例: MEDIAN([订单金额])
|
|
366
|
+
根据图表中使用的维度进行聚合,求订单金额的中位数
|
|
367
|
+
`,definition:"declare function MEDIAN(number: number): number;"},{desc:`最小值
|
|
368
|
+
示例: MIN([订单金额])
|
|
369
|
+
根据图表中使用的维度进行聚合,求订单金额的最小值
|
|
370
|
+
`,definition:"declare function MIN(expression: number): number;"},{desc:`求和
|
|
371
|
+
示例: SUM([订单金额])
|
|
372
|
+
根据图表中使用的维度进行聚合,求订单金额的总和
|
|
373
|
+
`,definition:"declare function SUM(number: number): number;"}]}].map(e=>(e.children=e.children.map(t=>{const n=t.definition.match(new RegExp("(?<=declare function )([A-Z0-9_]+)","g"))[0],i=(t.definition.match(/([a-z]:)+/g)||[]).length;return Object.assign(t,{id:n,name:n,idToChildren:!1,_args_:i}),t}),e))),Gd=o("biBackFunctionMap",Da.reduce((e,t)=>(t.children.forEach(n=>{e[n.id]=n}),e),{})),Bd=o("FUNC_KEYS",["IF","ISEMPTY","ISNULL","ISUNDEFINED","AND","OR","EQ","NE","LE","LT","GE","GT","LEN","CONCAT","SUBSTRING","SUBSTR","UPPER","LOWER","TRIM","LTRIM","RTRIM","REPEAT","REPLACE","FINDSTR","SEARCHSTR","PARSENUMBER","SPLIT","SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","SUMSQ","STDEV","TUPLE","SEQMAP","GET","PUT","PUSH","HEADPUSH","COUNT","TIMESTAMP2DATE","DATE2TIMESTAMP","DATEFORMAT","NOW","TODAY","YEAR","MONTH","DAY","HOUR","MINUTE","WEEKRANGE","LASTWEEKRANGE","MONTHRANGE","LASTMONTHRANGE","YEARRANGE","LASTYEARRANGE","QUARTER","LASTQUARTER","ISDATERANGE","ISTIMERANGE"]),kd=o("SYSTEM_VAR_PREFIX","$SYSTEM_VAR_"),Ma=o("innerVarList",[{id:"$USERID",name:"$USERID",valueType:"string",desc:"当前登录人id"},{id:"$USERNAME",name:"$USERNAME",valueType:"string",desc:"当前登录人姓名"},{id:"$USERDEPARTMENTID",name:"$USERDEPARTMENTID",valueType:"string",desc:"当前登录人主部门"},{id:"$USERDEPARTMENTNAME",name:"$USERDEPARTMENTNAME",valueType:"string",desc:"当前登录人主部门名称"}]),Hd=o("innerVarIds",Ma.map(e=>e.id)),Wd=o("numberTypes",[h.INTEGER,h.LONG,h.DOUBLE,h.DECIMAL]),Vd=o("booleanTypes",[h.BOOLEAN]),Xd=o("NUMBER_TYPE","number"),Yd=o("STRING_TYPE","string"),jd=o("BOOLEAN_TYPE","boolean"),Kd=o("OBJECT_TYPE","object"),$d=o("ARRAY_TYPE","array"),Zd=o("FUN_NUM_TYPE",["SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","LEN","DATE2TIMESTAMP","SUMSQ","STDEV","COUNT","TOINT","FIND","YEAR","WEEK","DAY","MONTH","QUARTER","TODOUBLE","DATEDIFF","AVG","GREATEST","LEAST","COUNTD","MEDIAN"]),Jd=o("FUN_STR_TYPE",["CONCAT","SUBSTRING","SUBSTR","UPPER","LOWER","TRIM","LTRIM","RTRIM","REPEAT","REPLACE","FINDSTR","SEARCHSTR","PARSENUMBER","SPLIT"]),xd=o("FUN_BOL_TYPE",["IF","ISEMPTY","ISNULL","ISUNDEFINED","AND","OR","EQ","NE","LE","LT","GE","GT","CONTAINS"]),zd=o("FUN_OBJ_OR_ARR_TYPE",["TUPLE","SEQMAP","GET","PUT","PUSH","HEADPUSH"]),Qd=o("RETURN_TYPE_MAP",{string:"字符串",number:"数值",boolean:"布尔",date:"日期",time:"时间",datetime:"日期时间",array:"数组",object:"对象",null:"空值",unknown:"未知",text:"文本",long_text:"长文本",integer:"整数",long:"长整数",decimal:"小数"});var ya=o("WinMsgTypeEnum",(e=>(e.EXPRESSION="expression-language-service",e))(ya||{}));const qd=o("operator2FuncMap",{"+":"ADD","-":"REDUCE","*":"MULTIPLICATION","/":"DIVISION","%":"MOD"});var Bt=o("EditorRegisterConst",(e=>(e.PREFIX="EDITOR___",e))(Bt||{})),Ca=o("EditorType",(e=>(e.LENGTH_UNIT="length-unit",e.COLOR="color",e.SPAN="span",e.TEXT="text",e.NUMBER="number",e.INFO="info",e.MSG="msg",e.SELECT="select",e.SELECT_GROUP="select-group",e.RADIO="radio",e.PICKER="picker",e.MULTIPLE_CHOICE="multiple-choice",e.I18N="i18n",e.TEXTAREA="textarea",e.DATE_RANGE="date-range",e.SWITCH="switch",e.CHECK_SWITCH="check-switch",e.ICON_SELECT="icon-select",e.CHECKBOX="checkbox",e.DATE="date",e.MODEL_SELECT="model-select",e.ACTION="action",e.TABLE="table",e.SELECT_TABLE="select-table",e.EMPTY="empty",e.FORM_MODEL_FIELD_SELECT="form-model-field-select",e.PIXEL_CONFIG="pixel-config",e.FIELD_INFO="field-info",e.DATE_FORMAT_SELECT="date-format-select",e.FORMULA="formula",e))(Ca||{})),Pa=o("EditorTypeOld",(e=>(e.LENGTH_UNIT="length-unit-editor",e.COLOR="color-editor",e.SPAN="span-editor",e.TEXT="text-editor",e.NUMBER="number-editor",e.INFO="info-editor",e.SELECT="select-editor",e.MODEL_SELECT="model-editor",e.Field_SELECT="field-editor",e.RADIO="radio-editor",e.PICKER="picker-editor",e.I18N="i18n-editor",e.TEXTAREA="textarea-editor",e.DATE_RANGE="date-range-editor",e.SWITCH="switch-editor",e.CHECK_SWITCH="check-switch-editor",e.ICON_SELECT="icon-select-editor",e.CHECKBOX="checkbox-editor",e.BORDER="border-editor",e.BORDER_RADIUS="border-radius-editor",e.ALIGN="align-editor",e.FONT_STYLE="font-style-editor",e.POSITION="position-editor",e.SPACING="spacing-editor",e.MARGIN="margin-editor",e))(Pa||{})),Ua=o("FormContainerType",(e=>(e.FORM_TITLE_GROUP="form-title-group",e))(Ua||{}));const ee=o("CoreConst",{TOKEN:"gct-token",TENANT:"gct-tenant"}),wa=o("STYLE_NAMESPACE_TAG","gct"),eu=o("PLUGIN_BASE_URL","/minio"),kt=o("APP_INST","app_inst"),Fa="is-";function K(e,t,n,i,a){let r=`${e}-${t}`;return n&&(r+=`-${n}`),i&&(r+=`__${i}`),a&&(r+=`--${a}`),r}class Ht{constructor(t,n){this.block=t,this.namespace=n||wa}namespace;b(t=""){return K(this.namespace,this.block,t,"","")}e(t){return t?K(this.namespace,this.block,"",t,""):""}m(t){return t?K(this.namespace,this.block,"","",t):""}be(t,n){return t&&n?K(this.namespace,this.block,t,n,""):""}em(t,n){return t&&n?K(this.namespace,this.block,"",t,n):""}bm(t,n){return t&&n?K(this.namespace,this.block,t,"",n):""}bem(t,n,i){return t&&n&&i?K(this.namespace,this.block,t,n,i):""}is(t,n){return t&&n?`${Fa}${t}`:""}cssVar(t){const n={};for(const i in t)t[i]&&(n[this.cssVarName(i)]=t[i]);return n}cssVarBlock(t){const n={};for(const i in t)t[i]&&(n[this.cssVarBlockName(i)]=t[i]);return n}cssVarName(t){return`--${this.namespace}-${t}`}cssVarBlockName(t){return`--${this.namespace}-${this.block}-${t}`}}o("Namespace",Ht);function Ga(e){return new Ht(e)}function Ba(e){if(e instanceof Array)e&&e.length>0&&e.splice(0,e.length);else if(e instanceof Object&&e)for(const t in e)Object.prototype.hasOwnProperty.call(e,t)&&delete e[t]}class ka{constructor(){this.map=new Map,this.maxListeners=100}setMaxListeners(t){this.maxListeners=t}getSize(t){return this.map.has(t)?this.map.get(t).length:0}addListener(t,n){if(n instanceof Function){this.map.has(t)||this.map.set(t,[]);const i=this.map.get(t);if(i.length<this.maxListeners)i.push(n);else throw new Error(`事件监听已达最大上限[${this.maxListeners}],无法新增监听!`)}}removeListener(t,n){if(this.map.has(t)){const i=this.map.get(t);if(i.length>0){for(let a=0;a<i.length;a++)if(i[a]===n){i.splice(a,1);break}}}}emit(t,...n){this.map.has(t)&&this.map.get(t).forEach(a=>{a(...n)})}async asyncEmit(t,...n){if(this.map.has(t)){const a=this.map.get(t).map(r=>r(...n));return Promise.all(a)}return[]}reset(){this.map.forEach(t=>{Ba(t)}),this.map.clear()}}class we{constructor(t){this.e=new ka,this.e.setMaxListeners(t||300)}getSize(t){return this.e.getSize(t)}on(t,n){this.e.addListener(t,n)}off(t,n){this.e.removeListener(t,n)}emit(t,...n){this.e.emit(t,...n)}asyncEmit(t,...n){return this.e.asyncEmit(t,...n)}reset(){this.e.reset()}}const{toString:Fe}=Object.prototype;function Wt(e){return Xa(e)==="function"}function Ha(e){return Fe.call(e)==="[object AsyncFunction]"}function Wa(e){return Fe.call(e)==="[object Promise]"}const Va={"[object Boolean]":"boolean","[object Number]":"number","[object String]":"string","[object Function]":"function","[object Array]":"array","[object Date]":"date","[object RegExp]":"regExp","[object Undefined]":"undefined","[object Null]":"null","[object Object]":"object","[object Set]":"set","[object Map]":"map","[object WeakMap]":"weakmap"};function Xa(e){return Va[Fe.call(e)]}function Ge(e,t,n=0,i=!1,a="/"){let r="";if(i&&!/^(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)$/.test(location.hostname)){const c=location.hostname;c.indexOf(".")!==c.lastIndexOf(".")&&(r=`;domain=${c.substring(c.indexOf("."),c.length)}`)}if(n!==0){const s=n*24*60*60*1e3,c=new Date(new Date().getTime()+s);document.cookie=`${e}=${escape(t)};path=${a};expires=${c.toUTCString()}${r}`}else document.cookie=`${e}=${escape(t)};path=${a}${r}`}function Vt(e,t){Ge(e,"",-1,t)}function Xt(e){const t=new RegExp(`(^| )${e}=([^;]*)(;|$)`),n=document.cookie.match(t);return n&&n.length>1?unescape(n[2]):null}class Ya{constructor(){this.items=[]}get size(){return this.items.length}callSync(t,...n){const i=t||Object.create({});let a;for(let r=0;r<this.items.length;r++){const s=this.items[r];if(s.fn&&(a=s.fn(i,...n)),a===null){console.warn(`因${s.fn?s.fn.name:null}方法返回值为「null」,钩子中断执行。`,s);break}}return i}tap(t){if(t&&Wt(t)){const n={mode:"sync"};n.fn=t,this.items.push(n)}}removeTap(t){if(t)for(let n=0;n<this.items.length;n++){const i=this.items[n];t===i.fn&&this.items.splice(n,1)}}clear(){this.items=[]}}class Yt extends Ya{async call(t,...n){const i=t||Object.create({});let a;for(let r=0;r<this.items.length;r++){const s=this.items[r];if(s.fn&&(s.mode==="promise"?(a=s.fn(i,...n),Wa(a)&&(a=await a)):a=s.fn(i,...n)),a===null){console.warn(`因${s.fn?s.fn.name:null}方法返回值为「null」,钩子中断执行。`,s);break}}return i}tapPromise(t){if(t&&(Wt(t)||Ha(t))){const n={mode:"promise"};n.fn=t,this.items.push(n)}}removeTapPromise(t){this.removeTap(t)}}class ja{ignoreDismissCheck=!1;state=D({okDisabled:!1,cancelDisabled:!1});hooks={shouldDismiss:new Yt,beforeDismiss:new Yt};ok;setOptions;constructor(t){t.dismiss&&(this._dismiss=t.dismiss),t.setOptions&&(this.setOptions=t.setOptions)}cancel;callback(t,n){t&&(this.ok=t),n&&(this.cancel=n)}_dismiss=t=>{console.warn("外部关闭能力未注册",t)};injectDismiss(t){this._dismiss=t}async dismiss(t={ok:!1,data:[]}){const n={};return this.ignoreDismissCheck!==!0&&await this.hooks.shouldDismiss.call(n),n.allowClose===!1?(console.warn("shouldDismiss结果为false,关闭中断。"),!1):(await this.hooks.beforeDismiss.call(t),this._dismiss(t),this.destroy(),!0)}destroy(){this.hooks.shouldDismiss.clear(),this.hooks.beforeDismiss.clear()}}o("Modal",ja);class Be{constructor(t,n,i){this.component=t,this.render=n,this.opts=i,this._initPromise=this.init()}vm;modal;result;evt=new we;_initPromise;static async createVueApp(t,n){return console.error("没有注入createVueApp方法"),ht(t,n)}async init(){const t=this,{render:n,opts:i}=this,a=document.createElement("div");document.body.appendChild(a);const r=await Be.createVueApp({mounted(){t.modal=this.$refs.root},unmounted(){document.body.removeChild(a),t.evt.emit("dismiss",t.result)},render(){return gt(t.component,{ref:"root",opts:i,onDismiss(s){t.result=s,r.unmount()}},{default:n})}});r.mount(a),this.vm=r}async present(){return await this._initPromise,await Et(),this.modal.present()}async dismiss(t){await this.modal.dismiss(t)}async onWillDismiss(){return new Promise(t=>{const n=i=>{t(i),this.evt.off("dismiss",n)};this.evt.on("dismiss",n)})}}o("OverlayContainer",Be);function Ka(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var ke,jt;function $a(){if(jt)return ke;jt=1;function e(a){if(typeof a!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(a))}function t(a,r){for(var s="",c=0,u=-1,f=0,l,d=0;d<=a.length;++d){if(d<a.length)l=a.charCodeAt(d);else{if(l===47)break;l=47}if(l===47){if(!(u===d-1||f===1))if(u!==d-1&&f===2){if(s.length<2||c!==2||s.charCodeAt(s.length-1)!==46||s.charCodeAt(s.length-2)!==46){if(s.length>2){var E=s.lastIndexOf("/");if(E!==s.length-1){E===-1?(s="",c=0):(s=s.slice(0,E),c=s.length-1-s.lastIndexOf("/")),u=d,f=0;continue}}else if(s.length===2||s.length===1){s="",c=0,u=d,f=0;continue}}r&&(s.length>0?s+="/..":s="..",c=2)}else s.length>0?s+="/"+a.slice(u+1,d):s=a.slice(u+1,d),c=d-u-1;u=d,f=0}else l===46&&f!==-1?++f:f=-1}return s}function n(a,r){var s=r.dir||r.root,c=r.base||(r.name||"")+(r.ext||"");return s?s===r.root?s+c:s+a+c:c}var i={resolve:function(){for(var r="",s=!1,c,u=arguments.length-1;u>=-1&&!s;u--){var f;u>=0?f=arguments[u]:(c===void 0&&(c=process.cwd()),f=c),e(f),f.length!==0&&(r=f+"/"+r,s=f.charCodeAt(0)===47)}return r=t(r,!s),s?r.length>0?"/"+r:"/":r.length>0?r:"."},normalize:function(r){if(e(r),r.length===0)return".";var s=r.charCodeAt(0)===47,c=r.charCodeAt(r.length-1)===47;return r=t(r,!s),r.length===0&&!s&&(r="."),r.length>0&&c&&(r+="/"),s?"/"+r:r},isAbsolute:function(r){return e(r),r.length>0&&r.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var r,s=0;s<arguments.length;++s){var c=arguments[s];e(c),c.length>0&&(r===void 0?r=c:r+="/"+c)}return r===void 0?".":i.normalize(r)},relative:function(r,s){if(e(r),e(s),r===s||(r=i.resolve(r),s=i.resolve(s),r===s))return"";for(var c=1;c<r.length&&r.charCodeAt(c)===47;++c);for(var u=r.length,f=u-c,l=1;l<s.length&&s.charCodeAt(l)===47;++l);for(var d=s.length,E=d-l,m=f<E?f:E,T=-1,A=0;A<=m;++A){if(A===m){if(E>m){if(s.charCodeAt(l+A)===47)return s.slice(l+A+1);if(A===0)return s.slice(l+A)}else f>m&&(r.charCodeAt(c+A)===47?T=A:A===0&&(T=0));break}var X=r.charCodeAt(c+A),ct=s.charCodeAt(l+A);if(X!==ct)break;X===47&&(T=A)}var z="";for(A=c+T+1;A<=u;++A)(A===u||r.charCodeAt(A)===47)&&(z.length===0?z+="..":z+="/..");return z.length>0?z+s.slice(l+T):(l+=T,s.charCodeAt(l)===47&&++l,s.slice(l))},_makeLong:function(r){return r},dirname:function(r){if(e(r),r.length===0)return".";for(var s=r.charCodeAt(0),c=s===47,u=-1,f=!0,l=r.length-1;l>=1;--l)if(s=r.charCodeAt(l),s===47){if(!f){u=l;break}}else f=!1;return u===-1?c?"/":".":c&&u===1?"//":r.slice(0,u)},basename:function(r,s){if(s!==void 0&&typeof s!="string")throw new TypeError('"ext" argument must be a string');e(r);var c=0,u=-1,f=!0,l;if(s!==void 0&&s.length>0&&s.length<=r.length){if(s.length===r.length&&s===r)return"";var d=s.length-1,E=-1;for(l=r.length-1;l>=0;--l){var m=r.charCodeAt(l);if(m===47){if(!f){c=l+1;break}}else E===-1&&(f=!1,E=l+1),d>=0&&(m===s.charCodeAt(d)?--d===-1&&(u=l):(d=-1,u=E))}return c===u?u=E:u===-1&&(u=r.length),r.slice(c,u)}else{for(l=r.length-1;l>=0;--l)if(r.charCodeAt(l)===47){if(!f){c=l+1;break}}else u===-1&&(f=!1,u=l+1);return u===-1?"":r.slice(c,u)}},extname:function(r){e(r);for(var s=-1,c=0,u=-1,f=!0,l=0,d=r.length-1;d>=0;--d){var E=r.charCodeAt(d);if(E===47){if(!f){c=d+1;break}continue}u===-1&&(f=!1,u=d+1),E===46?s===-1?s=d:l!==1&&(l=1):s!==-1&&(l=-1)}return s===-1||u===-1||l===0||l===1&&s===u-1&&s===c+1?"":r.slice(s,u)},format:function(r){if(r===null||typeof r!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof r);return n("/",r)},parse:function(r){e(r);var s={root:"",dir:"",base:"",ext:"",name:""};if(r.length===0)return s;var c=r.charCodeAt(0),u=c===47,f;u?(s.root="/",f=1):f=0;for(var l=-1,d=0,E=-1,m=!0,T=r.length-1,A=0;T>=f;--T){if(c=r.charCodeAt(T),c===47){if(!m){d=T+1;break}continue}E===-1&&(m=!1,E=T+1),c===46?l===-1?l=T:A!==1&&(A=1):l!==-1&&(A=-1)}return l===-1||E===-1||A===0||A===1&&l===E-1&&l===d+1?E!==-1&&(d===0&&u?s.base=s.name=r.slice(1,E):s.base=s.name=r.slice(d,E)):(d===0&&u?(s.name=r.slice(1,l),s.base=r.slice(1,E)):(s.name=r.slice(d,l),s.base=r.slice(d,E)),s.ext=r.slice(l,E)),d>0?s.dir=r.slice(0,d-1):u&&(s.dir="/"),s},sep:"/",delimiter:":",win32:null,posix:null};return i.posix=i,ke=i,ke}var Za=$a();const Kt=Ka(Za);class Ja{constructor(t,n=!1){this.isDev=n,this.url=new URL(t),this.baseDir=Kt.dirname(this.url.pathname)}baseDir;url;dir(t){return this.isDev===!0?t:this.url.origin+Kt.resolve(this.baseDir,t)}}o("PluginStaticResource",Ja);function xa(){return{context:{type:Object,default:()=>({})},value:{type:Object},model:{type:Object,required:!0},c:{type:Object,required:!0},itemModel:{type:Object},data:{type:Object},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},keepalive:{type:Boolean,default:!1},visible:{type:Boolean,default:!0},size:{type:String},count:{type:Number,default:0},isEmptyText:{type:Boolean,default:!1}}}function ge(){return Xt(ee.TOKEN)}function $t(e){e?Ge(ee.TOKEN,e,7,!0):Vt(ee.TOKEN,!0)}function Zt(){return Xt(ee.TENANT)}function za(e){e?Ge(ee.TENANT,e,7,!0):Vt(ee.TENANT,!0)}const Qa=o("isMobile",(()=>{const e=navigator.userAgent,t=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/,n=window.innerWidth<=768,i="ontouchstart"in window||navigator.maxTouchPoints>0;return t.test(e)||n&&i})());function Jt(){return localStorage.getItem(jr)||"UTC+08:00"}function qa(e,t){return Oe(Y(e),t,(n,i)=>{if(typeof n=="object"&&typeof i=="object")return Oe(Y(n),i,(a,r)=>Array.isArray(a)?ut(a,r,ft):void 0)})}function es(e){const t=de.stringify(e,{encode:!0,delimiter:";"});return t?`;${t}`:""}function xt(e){return e.indexOf(";")===-1?{}:de.parse(e,{delimiter:";"})}const He=[];for(let e=0;e<=15;e++)He[e]=e.toString(16);function ts(){let e="";for(let t=1;t<=36;t++)t===9||t===14||t===19||t===24?e+="-":t===15?e+=4:t===20?e+=He[Math.random()*4|8]:e+=He[Math.random()*16|0];return e.replace(/-/g,"")}let zt=0;function ns(e=""){e=e.replaceAll("-","");const t=Math.floor(Math.random()*1e9);return zt++,e+"_"+t+zt}const tu=o("uuid2",(e,t)=>{const n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),i=[];let a;if(t=t||n.length,e)for(a=0;a<e;a++)i[a]=n[0|Math.random()*t];else{let r;for(i[8]=i[13]=i[18]=i[23]="-",i[14]="4",a=0;a<36;a++)i[a]||(r=0|Math.random()*16,i[a]=n[a==19?r&3|8:r])}return i.join("")});function is(e,t){return U({get:()=>e.value,set:i=>{e.value=i,t(i)}})}function rs(e,t){const n=Object.keys(j(e)?e.value:e),i={};return n.forEach(a=>{i[a]=U({get:()=>(j(e)?e.value:e)[a],set(r){(j(e)?e.value:e)[a]=r,t(a,r)}})}),i}function as(e,t){const n=Object.keys(j(e)?e.value:e),i={};let a={};return n.forEach(r=>{i[r]=U({get:()=>(a={},(j(e)?e.value:e)[r]),set(s){const c=j(e)?e.value:e;a[r]=s;const u={...c,...a};t(r,s,u)}})}),i}function ss(e){if(e==="nullpx")return{value:0,unit:"px"};const t=/^(\d+\.?\d*)([a-zA-Z%]+)$/,n=e.match(t);if(n)return{value:parseFloat(n[1]),unit:n[2]};throw new Error("Invalid value")}function os(e){const t=y();let n;const i=()=>{e.deep&&(n=ae(()=>t.value,a=>{console.info("computedEx:属性或者值修改",a),e.set(a)},{deep:!0}))};return ae(()=>e.get(),a=>{n&&n(),console.info("computedEx:获取新值,重新监听",a),t.value=a,i()},{immediate:!0}),t}function cs(e){const t=new Map;return function(...n){const i=JSON.stringify(n);if(t.has(i))return t.get(i);const a=e(...n);return t.set(i,a),a}}function ls(e,t,n,i){return{install(a){e&&t&&_gct.register.editor.register(Bt.PREFIX+e,t),n&&a.component(i??n.name,n)}}}function Qt(e){e.interceptors.request.use(t=>(t.headers||(t.headers=new At),Object.assign(t.headers,{Token:ge(),Source:Qa?502:501,Lang:_gct.store.lang,"Tenant-Id":Zt(),Timezone:Jt()}),t))}var qt="5.0.1";function Ee(e,t){return new Promise(n=>setTimeout(n,e,t))}function ds(){return new Promise(e=>{const t=new MessageChannel;t.port1.onmessage=()=>e(),t.port2.postMessage(null)})}function us(e,t=1/0){const{requestIdleCallback:n}=window;return n?new Promise(i=>n.call(window,()=>i(),{timeout:t})):Ee(Math.min(e,t))}function en(e){return!!e&&typeof e.then=="function"}function tn(e,t){try{const n=e();en(n)?n.then(i=>t(!0,i),i=>t(!1,i)):t(!0,n)}catch(n){t(!1,n)}}async function nn(e,t,n=16){const i=Array(e.length);let a=Date.now();for(let r=0;r<e.length;++r){i[r]=t(e[r],r);const s=Date.now();s>=a+n&&(a=s,await ds())}return i}function se(e){return e.then(void 0,()=>{}),e}function fs(e,t){for(let n=0,i=e.length;n<i;++n)if(e[n]===t)return!0;return!1}function hs(e,t){return!fs(e,t)}function We(e){return parseInt(e)}function w(e){return parseFloat(e)}function H(e,t){return typeof e=="number"&&isNaN(e)?t:e}function p(e){return e.reduce((t,n)=>t+(n?1:0),0)}function rn(e,t=1){if(Math.abs(t)>=1)return Math.round(e/t)*t;{const n=1/t;return Math.round(e*n)/n}}function gs(e){var t,n;const i=`Unexpected syntax '${e}'`,a=/^\s*([a-z-]*)(.*)$/i.exec(e),r=a[1]||void 0,s={},c=/([.:#][\w-]+|\[.+?\])/gi,u=(f,l)=>{s[f]=s[f]||[],s[f].push(l)};for(;;){const f=c.exec(a[2]);if(!f)break;const l=f[0];switch(l[0]){case".":u("class",l.slice(1));break;case"#":u("id",l.slice(1));break;case"[":{const d=/^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(l);if(d)u(d[1],(n=(t=d[4])!==null&&t!==void 0?t:d[5])!==null&&n!==void 0?n:"");else throw new Error(i);break}default:throw new Error(i)}}return[r,s]}function Es(e){const t=new Uint8Array(e.length);for(let n=0;n<e.length;n++){const i=e.charCodeAt(n);if(i>127)return new TextEncoder().encode(e);t[n]=i}return t}function V(e,t){const n=e[0]>>>16,i=e[0]&65535,a=e[1]>>>16,r=e[1]&65535,s=t[0]>>>16,c=t[0]&65535,u=t[1]>>>16,f=t[1]&65535;let l=0,d=0,E=0,m=0;m+=r+f,E+=m>>>16,m&=65535,E+=a+u,d+=E>>>16,E&=65535,d+=i+c,l+=d>>>16,d&=65535,l+=n+s,l&=65535,e[0]=l<<16|d,e[1]=E<<16|m}function C(e,t){const n=e[0]>>>16,i=e[0]&65535,a=e[1]>>>16,r=e[1]&65535,s=t[0]>>>16,c=t[0]&65535,u=t[1]>>>16,f=t[1]&65535;let l=0,d=0,E=0,m=0;m+=r*f,E+=m>>>16,m&=65535,E+=a*f,d+=E>>>16,E&=65535,E+=r*u,d+=E>>>16,E&=65535,d+=i*f,l+=d>>>16,d&=65535,d+=a*u,l+=d>>>16,d&=65535,d+=r*c,l+=d>>>16,d&=65535,l+=n*f+i*u+a*c+r*s,l&=65535,e[0]=l<<16|d,e[1]=E<<16|m}function te(e,t){const n=e[0];t%=64,t===32?(e[0]=e[1],e[1]=n):t<32?(e[0]=n<<t|e[1]>>>32-t,e[1]=e[1]<<t|n>>>32-t):(t-=32,e[0]=e[1]<<t|n>>>32-t,e[1]=n<<t|e[1]>>>32-t)}function M(e,t){t%=64,t!==0&&(t<32?(e[0]=e[1]>>>32-t,e[1]=e[1]<<t):(e[0]=e[1]<<t-32,e[1]=0))}function L(e,t){e[0]^=t[0],e[1]^=t[1]}const ms=[4283543511,3981806797],Ts=[3301882366,444984403];function an(e){const t=[0,e[0]>>>1];L(e,t),C(e,ms),t[1]=e[0]>>>1,L(e,t),C(e,Ts),t[1]=e[0]>>>1,L(e,t)}const me=[2277735313,289559509],Te=[1291169091,658871167],sn=[0,5],As=[0,1390208809],Rs=[0,944331445];function bs(e,t){const n=Es(e);t=t||0;const i=[0,n.length],a=i[1]%16,r=i[1]-a,s=[0,t],c=[0,t],u=[0,0],f=[0,0];let l;for(l=0;l<r;l=l+16)u[0]=n[l+4]|n[l+5]<<8|n[l+6]<<16|n[l+7]<<24,u[1]=n[l]|n[l+1]<<8|n[l+2]<<16|n[l+3]<<24,f[0]=n[l+12]|n[l+13]<<8|n[l+14]<<16|n[l+15]<<24,f[1]=n[l+8]|n[l+9]<<8|n[l+10]<<16|n[l+11]<<24,C(u,me),te(u,31),C(u,Te),L(s,u),te(s,27),V(s,c),C(s,sn),V(s,As),C(f,Te),te(f,33),C(f,me),L(c,f),te(c,31),V(c,s),C(c,sn),V(c,Rs);u[0]=0,u[1]=0,f[0]=0,f[1]=0;const d=[0,0];switch(a){case 15:d[1]=n[l+14],M(d,48),L(f,d);case 14:d[1]=n[l+13],M(d,40),L(f,d);case 13:d[1]=n[l+12],M(d,32),L(f,d);case 12:d[1]=n[l+11],M(d,24),L(f,d);case 11:d[1]=n[l+10],M(d,16),L(f,d);case 10:d[1]=n[l+9],M(d,8),L(f,d);case 9:d[1]=n[l+8],L(f,d),C(f,Te),te(f,33),C(f,me),L(c,f);case 8:d[1]=n[l+7],M(d,56),L(u,d);case 7:d[1]=n[l+6],M(d,48),L(u,d);case 6:d[1]=n[l+5],M(d,40),L(u,d);case 5:d[1]=n[l+4],M(d,32),L(u,d);case 4:d[1]=n[l+3],M(d,24),L(u,d);case 3:d[1]=n[l+2],M(d,16),L(u,d);case 2:d[1]=n[l+1],M(d,8),L(u,d);case 1:d[1]=n[l],L(u,d),C(u,me),te(u,31),C(u,Te),L(s,u)}return L(s,i),L(c,i),V(s,c),V(c,s),an(s),an(c),V(s,c),V(c,s),("00000000"+(s[0]>>>0).toString(16)).slice(-8)+("00000000"+(s[1]>>>0).toString(16)).slice(-8)+("00000000"+(c[0]>>>0).toString(16)).slice(-8)+("00000000"+(c[1]>>>0).toString(16)).slice(-8)}function Ss(e){var t;return{name:e.name,message:e.message,stack:(t=e.stack)===null||t===void 0?void 0:t.split(`
|
|
374
|
+
`),...e}}function Is(e){return/^function\s.*?\{\s*\[native code]\s*}$/.test(String(e))}function Ns(e){return typeof e!="function"}function Ls(e,t){const n=se(new Promise(i=>{const a=Date.now();tn(e.bind(null,t),(...r)=>{const s=Date.now()-a;if(!r[0])return i(()=>({error:r[1],duration:s}));const c=r[1];if(Ns(c))return i(()=>({value:c,duration:s}));i(()=>new Promise(u=>{const f=Date.now();tn(c,(...l)=>{const d=s+Date.now()-f;if(!l[0])return u({error:l[1],duration:d});u({value:l[1],duration:d})})}))})}));return function(){return n.then(a=>a())}}function Os(e,t,n,i){const a=Object.keys(e).filter(s=>hs(n,s)),r=se(nn(a,s=>Ls(e[s],t),i));return async function(){const c=await r,u=await nn(c,d=>se(d()),i),f=await Promise.all(u),l={};for(let d=0;d<a.length;++d)l[a[d]]=f[d];return l}}function on(){const e=window,t=navigator;return p(["MSCSSMatrix"in e,"msSetImmediate"in e,"msIndexedDB"in e,"msMaxTouchPoints"in t,"msPointerEnabled"in t])>=4}function _s(){const e=window,t=navigator;return p(["msWriteProfilerMark"in e,"MSStream"in e,"msLaunchUri"in t,"msSaveBlob"in t])>=3&&!on()}function oe(){const e=window,t=navigator;return p(["webkitPersistentStorage"in t,"webkitTemporaryStorage"in t,(t.vendor||"").indexOf("Google")===0,"webkitResolveLocalFileSystemURL"in e,"BatteryManager"in e,"webkitMediaStream"in e,"webkitSpeechGrammar"in e])>=5}function F(){const e=window,t=navigator;return p(["ApplePayError"in e,"CSSPrimitiveValue"in e,"Counter"in e,t.vendor.indexOf("Apple")===0,"RGBColor"in e,"WebKitMediaKeys"in e])>=4}function Ve(){const e=window,{HTMLElement:t,Document:n}=e;return p(["safari"in e,!("ongestureend"in e),!("TouchEvent"in e),!("orientation"in e),t&&!("autocapitalize"in t.prototype),n&&"pointerLockElement"in n.prototype])>=4}function ce(){const e=window;return Is(e.print)&&String(e.browser)==="[object WebPageNamespace]"}function cn(){var e,t;const n=window;return p(["buildID"in navigator,"MozAppearance"in((t=(e=document.documentElement)===null||e===void 0?void 0:e.style)!==null&&t!==void 0?t:{}),"onmozfullscreenchange"in n,"mozInnerScreenX"in n,"CSSMozDocumentRule"in n,"CanvasCaptureMediaStream"in n])>=4}function ps(){const e=window;return p([!("MediaSettingsRange"in e),"RTCEncodedAudioFrame"in e,""+e.Intl=="[object Intl]",""+e.Reflect=="[object Reflect]"])>=3}function vs(){const e=window,{URLPattern:t}=e;return p(["union"in Set.prototype,"Iterator"in e,t&&"hasRegExpGroups"in t.prototype,"RGB8"in WebGLRenderingContext.prototype])>=3}function Ds(){const e=window;return p(["DOMRectList"in e,"RTCPeerConnectionIceEvent"in e,"SVGGeometryElement"in e,"ontransitioncancel"in e])>=3}function le(){const e=window,t=navigator,{CSS:n,HTMLButtonElement:i}=e;return p([!("getStorageUpdates"in t),i&&"popover"in i.prototype,"CSSCounterStyleRule"in e,n.supports("font-size-adjust: ex-height 0.5"),n.supports("text-transform: full-width")])>=4}function Ms(){if(navigator.platform==="iPad")return!0;const e=screen,t=e.width/e.height;return p(["MediaSource"in window,!!Element.prototype.webkitRequestFullscreen,t>.65&&t<1.53])>=2}function ys(){const e=document;return e.fullscreenElement||e.msFullscreenElement||e.mozFullScreenElement||e.webkitFullscreenElement||null}function Cs(){const e=document;return(e.exitFullscreen||e.msExitFullscreen||e.mozCancelFullScreen||e.webkitExitFullscreen).call(e)}function Xe(){const e=oe(),t=cn(),n=window,i=navigator,a="connection";return e?p([!("SharedWorker"in n),i[a]&&"ontypechange"in i[a],!("sinkId"in new Audio)])>=2:t?p(["onorientationchange"in n,"orientation"in n,/android/i.test(i.appVersion)])>=2:!1}function Ps(){const e=navigator,t=window,n=Audio.prototype,{visualViewport:i}=t;return p(["srLatency"in n,"srChannelCount"in n,"devicePosture"in e,i&&"segments"in i,"getTextInformation"in Image.prototype])>=3}function Us(){return Gs()?-4:ws()}function ws(){const e=window,t=e.OfflineAudioContext||e.webkitOfflineAudioContext;if(!t)return-2;if(Fs())return-1;const n=4500,i=5e3,a=new t(1,i,44100),r=a.createOscillator();r.type="triangle",r.frequency.value=1e4;const s=a.createDynamicsCompressor();s.threshold.value=-50,s.knee.value=40,s.ratio.value=12,s.attack.value=0,s.release.value=.25,r.connect(s),s.connect(a.destination),r.start(0);const[c,u]=Bs(a),f=se(c.then(l=>ks(l.getChannelData(0).subarray(n)),l=>{if(l.name==="timeout"||l.name==="suspended")return-3;throw l}));return()=>(u(),f)}function Fs(){return F()&&!Ve()&&!Ds()}function Gs(){return F()&&le()&&ce()||oe()&&Ps()&&vs()}function Bs(e){let r=()=>{};return[new Promise((c,u)=>{let f=!1,l=0,d=0;e.oncomplete=T=>c(T.renderedBuffer);const E=()=>{setTimeout(()=>u(ln("timeout")),Math.min(500,d+5e3-Date.now()))},m=()=>{try{const T=e.startRendering();switch(en(T)&&se(T),e.state){case"running":d=Date.now(),f&&E();break;case"suspended":document.hidden||l++,f&&l>=3?u(ln("suspended")):setTimeout(m,500);break}}catch(T){u(T)}};m(),r=()=>{f||(f=!0,d>0&&E())}}),r]}function ks(e){let t=0;for(let n=0;n<e.length;++n)t+=Math.abs(e[n]);return t}function ln(e){const t=new Error(e);return t.name=e,t}async function dn(e,t,n=50){var i,a,r;const s=document;for(;!s.body;)await Ee(n);const c=s.createElement("iframe");try{for(await new Promise((u,f)=>{let l=!1;const d=()=>{l=!0,u()},E=A=>{l=!0,f(A)};c.onload=d,c.onerror=E;const{style:m}=c;m.setProperty("display","block","important"),m.position="absolute",m.top="0",m.left="0",m.visibility="hidden",t&&"srcdoc"in c?c.srcdoc=t:c.src="about:blank",s.body.appendChild(c);const T=()=>{var A,X;l||(((X=(A=c.contentWindow)===null||A===void 0?void 0:A.document)===null||X===void 0?void 0:X.readyState)==="complete"?d():setTimeout(T,10))};T()});!(!((a=(i=c.contentWindow)===null||i===void 0?void 0:i.document)===null||a===void 0)&&a.body);)await Ee(n);return await e(c,c.contentWindow)}finally{(r=c.parentNode)===null||r===void 0||r.removeChild(c)}}function Hs(e){const[t,n]=gs(e),i=document.createElement(t??"div");for(const a of Object.keys(n)){const r=n[a].join(" ");a==="style"?Ws(i.style,r):i.setAttribute(a,r)}return i}function Ws(e,t){for(const n of t.split(";")){const i=/^\s*([\w-]+)\s*:\s*(.+?)(\s*!([\w-]+))?\s*$/.exec(n);if(i){const[,a,r,,s]=i;e.setProperty(a,r,s||"")}}}function Vs(){let e=window;for(;;){const t=e.parent;if(!t||t===e)return!1;try{if(t.location.origin!==e.location.origin)return!0}catch(n){if(n instanceof Error&&n.name==="SecurityError")return!0;throw n}e=t}}const Xs="mmMwWLliI0O&1",Ys="48px",ne=["monospace","sans-serif","serif"],un=["sans-serif-thin","ARNO PRO","Agency FB","Arabic Typesetting","Arial Unicode MS","AvantGarde Bk BT","BankGothic Md BT","Batang","Bitstream Vera Sans Mono","Calibri","Century","Century Gothic","Clarendon","EUROSTILE","Franklin Gothic","Futura Bk BT","Futura Md BT","GOTHAM","Gill Sans","HELV","Haettenschweiler","Helvetica Neue","Humanst521 BT","Leelawadee","Letter Gothic","Levenim MT","Lucida Bright","Lucida Sans","Menlo","MS Mincho","MS Outlook","MS Reference Specialty","MS UI Gothic","MT Extra","MYRIAD PRO","Marlett","Meiryo UI","Microsoft Uighur","Minion Pro","Monotype Corsiva","PMingLiU","Pristina","SCRIPTINA","Segoe UI Light","Serifa","SimHei","Small Fonts","Staccato222 BT","TRAJAN PRO","Univers CE 55 Medium","Vrinda","ZWAdobeF"];function js(){return dn(async(e,{document:t})=>{const n=t.body;n.style.fontSize=Ys;const i=t.createElement("div");i.style.setProperty("visibility","hidden","important");const a={},r={},s=m=>{const T=t.createElement("span"),{style:A}=T;return A.position="absolute",A.top="0",A.left="0",A.fontFamily=m,T.textContent=Xs,i.appendChild(T),T},c=(m,T)=>s(`'${m}',${T}`),u=()=>ne.map(s),f=()=>{const m={};for(const T of un)m[T]=ne.map(A=>c(T,A));return m},l=m=>ne.some((T,A)=>m[A].offsetWidth!==a[T]||m[A].offsetHeight!==r[T]),d=u(),E=f();n.appendChild(i);for(let m=0;m<ne.length;m++)a[ne[m]]=d[m].offsetWidth,r[ne[m]]=d[m].offsetHeight;return un.filter(m=>l(E[m]))})}function Ks(){const e=navigator.plugins;if(!e)return;const t=[];for(let n=0;n<e.length;++n){const i=e[n];if(!i)continue;const a=[];for(let r=0;r<i.length;++r){const s=i[r];a.push({type:s.type,suffixes:s.suffixes})}t.push({name:i.name,description:i.description,mimeTypes:a})}return t}function $s(){return Zs(to())}function Zs(e){let t=!1,n,i;const[a,r]=Js();return xs(a,r)?(t=zs(r),e?n=i="skipped":[n,i]=Qs(a,r)):n=i="unsupported",{winding:t,geometry:n,text:i}}function Js(){const e=document.createElement("canvas");return e.width=1,e.height=1,[e,e.getContext("2d")]}function xs(e,t){return!!(t&&e.toDataURL)}function zs(e){return e.rect(0,0,10,10),e.rect(2,2,6,6),!e.isPointInPath(5,5,"evenodd")}function Qs(e,t){qs(e,t);const n=Ye(e),i=Ye(e);return n!==i?["unstable","unstable"]:(eo(e,t),[Ye(e),n])}function qs(e,t){e.width=240,e.height=60,t.textBaseline="alphabetic",t.fillStyle="#f60",t.fillRect(100,1,62,20),t.fillStyle="#069",t.font='11pt "Times New Roman"';const n="Cwm fjordbank gly 😃";t.fillText(n,2,15),t.fillStyle="rgba(102, 204, 0, 0.2)",t.font="18pt Arial",t.fillText(n,4,45)}function eo(e,t){e.width=122,e.height=110,t.globalCompositeOperation="multiply";for(const[n,i,a]of[["#f2f",40,40],["#2ff",80,40],["#ff2",60,80]])t.fillStyle=n,t.beginPath(),t.arc(i,a,40,0,Math.PI*2,!0),t.closePath(),t.fill();t.fillStyle="#f9c",t.arc(60,60,60,0,Math.PI*2,!0),t.arc(60,60,20,0,Math.PI*2,!0),t.fill("evenodd")}function Ye(e){return e.toDataURL()}function to(){return F()&&le()&&ce()}function no(){const e=navigator;let t=0,n;e.maxTouchPoints!==void 0?t=We(e.maxTouchPoints):e.msMaxTouchPoints!==void 0&&(t=e.msMaxTouchPoints);try{document.createEvent("TouchEvent"),n=!0}catch{n=!1}const i="ontouchstart"in window;return{maxTouchPoints:t,touchEvent:n,touchStart:i}}function io(){return navigator.oscpu}function ro(){const e=navigator,t=[],n=e.language||e.userLanguage||e.browserLanguage||e.systemLanguage;if(n!==void 0&&t.push([n]),Array.isArray(e.languages))oe()&&ps()||t.push(e.languages);else if(typeof e.languages=="string"){const i=e.languages;i&&t.push(i.split(","))}return t}function ao(){return window.screen.colorDepth}function so(){return H(w(navigator.deviceMemory),void 0)}function oo(){if(!(F()&&le()&&ce()))return co()}function co(){const e=screen,t=i=>H(We(i),null),n=[t(e.width),t(e.height)];return n.sort().reverse(),n}const lo=2500,uo=10;let Ae,je;function fo(){if(je!==void 0)return;const e=()=>{const t=Ke();$e(t)?je=setTimeout(e,lo):(Ae=t,je=void 0)};e()}function ho(){return fo(),async()=>{let e=Ke();if($e(e)){if(Ae)return[...Ae];ys()&&(await Cs(),e=Ke())}return $e(e)||(Ae=e),e}}function go(){if(F()&&le()&&ce())return()=>Promise.resolve(void 0);const e=ho();return async()=>{const t=await e(),n=i=>i===null?null:rn(i,uo);return[n(t[0]),n(t[1]),n(t[2]),n(t[3])]}}function Ke(){const e=screen;return[H(w(e.availTop),null),H(w(e.width)-w(e.availWidth)-H(w(e.availLeft),0),null),H(w(e.height)-w(e.availHeight)-H(w(e.availTop),0),null),H(w(e.availLeft),null)]}function $e(e){for(let t=0;t<4;++t)if(e[t])return!1;return!0}function Eo(){return H(We(navigator.hardwareConcurrency),void 0)}function mo(){var e;const t=(e=window.Intl)===null||e===void 0?void 0:e.DateTimeFormat;if(t){const i=new t().resolvedOptions().timeZone;if(i)return i}const n=-To();return`UTC${n>=0?"+":""}${n}`}function To(){const e=new Date().getFullYear();return Math.max(w(new Date(e,0,1).getTimezoneOffset()),w(new Date(e,6,1).getTimezoneOffset()))}function Ao(){try{return!!window.sessionStorage}catch{return!0}}function Ro(){try{return!!window.localStorage}catch{return!0}}function bo(){if(!(on()||_s()))try{return!!window.indexedDB}catch{return!0}}function So(){return!!window.openDatabase}function Io(){return navigator.cpuClass}function No(){const{platform:e}=navigator;return e==="MacIntel"&&F()&&!Ve()?Ms()?"iPad":"iPhone":e}function Lo(){return navigator.vendor||""}function Oo(){const e=[];for(const t of["chrome","safari","__crWeb","__gCrWeb","yandex","__yb","__ybro","__firefox__","__edgeTrackingPreventionStatistics","webkit","oprt","samsungAr","ucweb","UCShellJava","puffinDevice"]){const n=window[t];n&&typeof n=="object"&&e.push(t)}return e.sort()}function _o(){const e=document;try{e.cookie="cookietest=1; SameSite=Strict;";const t=e.cookie.indexOf("cookietest=")!==-1;return e.cookie="cookietest=1; SameSite=Strict; expires=Thu, 01-Jan-1970 00:00:01 GMT",t}catch{return!1}}function po(){const e=atob;return{abpIndo:["#Iklan-Melayang","#Kolom-Iklan-728","#SidebarIklan-wrapper",'[title="ALIENBOLA" i]',e("I0JveC1CYW5uZXItYWRz")],abpvn:[".quangcao","#mobileCatfish",e("LmNsb3NlLWFkcw=="),'[id^="bn_bottom_fixed_"]',"#pmadv"],adBlockFinland:[".mainostila",e("LnNwb25zb3JpdA=="),".ylamainos",e("YVtocmVmKj0iL2NsaWNrdGhyZ2guYXNwPyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hcHAucmVhZHBlYWsuY29tL2FkcyJd")],adBlockPersian:["#navbar_notice_50",".kadr",'TABLE[width="140px"]',"#divAgahi",e("YVtocmVmXj0iaHR0cDovL2cxLnYuZndtcm0ubmV0L2FkLyJd")],adBlockWarningRemoval:["#adblock-honeypot",".adblocker-root",".wp_adblock_detect",e("LmhlYWRlci1ibG9ja2VkLWFk"),e("I2FkX2Jsb2NrZXI=")],adGuardAnnoyances:[".hs-sosyal","#cookieconsentdiv",'div[class^="app_gdpr"]',".as-oil",'[data-cypress="soft-push-notification-modal"]'],adGuardBase:[".BetterJsPopOverlay",e("I2FkXzMwMFgyNTA="),e("I2Jhbm5lcmZsb2F0MjI="),e("I2NhbXBhaWduLWJhbm5lcg=="),e("I0FkLUNvbnRlbnQ=")],adGuardChinese:[e("LlppX2FkX2FfSA=="),e("YVtocmVmKj0iLmh0aGJldDM0LmNvbSJd"),"#widget-quan",e("YVtocmVmKj0iLzg0OTkyMDIwLnh5eiJd"),e("YVtocmVmKj0iLjE5NTZobC5jb20vIl0=")],adGuardFrench:["#pavePub",e("LmFkLWRlc2t0b3AtcmVjdGFuZ2xl"),".mobile_adhesion",".widgetadv",e("LmFkc19iYW4=")],adGuardGerman:['aside[data-portal-id="leaderboard"]'],adGuardJapanese:["#kauli_yad_1",e("YVtocmVmXj0iaHR0cDovL2FkMi50cmFmZmljZ2F0ZS5uZXQvIl0="),e("Ll9wb3BJbl9pbmZpbml0ZV9hZA=="),e("LmFkZ29vZ2xl"),e("Ll9faXNib29zdFJldHVybkFk")],adGuardMobile:[e("YW1wLWF1dG8tYWRz"),e("LmFtcF9hZA=="),'amp-embed[type="24smi"]',"#mgid_iframe1",e("I2FkX2ludmlld19hcmVh")],adGuardRussian:[e("YVtocmVmXj0iaHR0cHM6Ly9hZC5sZXRtZWFkcy5jb20vIl0="),e("LnJlY2xhbWE="),'div[id^="smi2adblock"]',e("ZGl2W2lkXj0iQWRGb3hfYmFubmVyXyJd"),"#psyduckpockeball"],adGuardSocial:[e("YVtocmVmXj0iLy93d3cuc3R1bWJsZXVwb24uY29tL3N1Ym1pdD91cmw9Il0="),e("YVtocmVmXj0iLy90ZWxlZ3JhbS5tZS9zaGFyZS91cmw/Il0="),".etsy-tweet","#inlineShare",".popup-social"],adGuardSpanishPortuguese:["#barraPublicidade","#Publicidade","#publiEspecial","#queTooltip",".cnt-publi"],adGuardTrackingProtection:["#qoo-counter",e("YVtocmVmXj0iaHR0cDovL2NsaWNrLmhvdGxvZy5ydS8iXQ=="),e("YVtocmVmXj0iaHR0cDovL2hpdGNvdW50ZXIucnUvdG9wL3N0YXQucGhwIl0="),e("YVtocmVmXj0iaHR0cDovL3RvcC5tYWlsLnJ1L2p1bXAiXQ=="),"#top100counter"],adGuardTurkish:["#backkapat",e("I3Jla2xhbWk="),e("YVtocmVmXj0iaHR0cDovL2Fkc2Vydi5vbnRlay5jb20udHIvIl0="),e("YVtocmVmXj0iaHR0cDovL2l6bGVuemkuY29tL2NhbXBhaWduLyJd"),e("YVtocmVmXj0iaHR0cDovL3d3dy5pbnN0YWxsYWRzLm5ldC8iXQ==")],bulgarian:[e("dGQjZnJlZW5ldF90YWJsZV9hZHM="),"#ea_intext_div",".lapni-pop-over","#xenium_hot_offers"],easyList:[".yb-floorad",e("LndpZGdldF9wb19hZHNfd2lkZ2V0"),e("LnRyYWZmaWNqdW5reS1hZA=="),".textad_headline",e("LnNwb25zb3JlZC10ZXh0LWxpbmtz")],easyListChina:[e("LmFwcGd1aWRlLXdyYXBbb25jbGljayo9ImJjZWJvcy5jb20iXQ=="),e("LmZyb250cGFnZUFkdk0="),"#taotaole","#aafoot.top_box",".cfa_popup"],easyListCookie:[".ezmob-footer",".cc-CookieWarning","[data-cookie-number]",e("LmF3LWNvb2tpZS1iYW5uZXI="),".sygnal24-gdpr-modal-wrap"],easyListCzechSlovak:["#onlajny-stickers",e("I3Jla2xhbW5pLWJveA=="),e("LnJla2xhbWEtbWVnYWJvYXJk"),".sklik",e("W2lkXj0ic2tsaWtSZWtsYW1hIl0=")],easyListDutch:[e("I2FkdmVydGVudGll"),e("I3ZpcEFkbWFya3RCYW5uZXJCbG9jaw=="),".adstekst",e("YVtocmVmXj0iaHR0cHM6Ly94bHR1YmUubmwvY2xpY2svIl0="),"#semilo-lrectangle"],easyListGermany:["#SSpotIMPopSlider",e("LnNwb25zb3JsaW5rZ3J1ZW4="),e("I3dlcmJ1bmdza3k="),e("I3Jla2xhbWUtcmVjaHRzLW1pdHRl"),e("YVtocmVmXj0iaHR0cHM6Ly9iZDc0Mi5jb20vIl0=")],easyListItaly:[e("LmJveF9hZHZfYW5udW5jaQ=="),".sb-box-pubbliredazionale",e("YVtocmVmXj0iaHR0cDovL2FmZmlsaWF6aW9uaWFkcy5zbmFpLml0LyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hZHNlcnZlci5odG1sLml0LyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hZmZpbGlhemlvbmlhZHMuc25haS5pdC8iXQ==")],easyListLithuania:[e("LnJla2xhbW9zX3RhcnBhcw=="),e("LnJla2xhbW9zX251b3JvZG9z"),e("aW1nW2FsdD0iUmVrbGFtaW5pcyBza3lkZWxpcyJd"),e("aW1nW2FsdD0iRGVkaWt1b3RpLmx0IHNlcnZlcmlhaSJd"),e("aW1nW2FsdD0iSG9zdGluZ2FzIFNlcnZlcmlhaS5sdCJd")],estonian:[e("QVtocmVmKj0iaHR0cDovL3BheTRyZXN1bHRzMjQuZXUiXQ==")],fanboyAnnoyances:["#ac-lre-player",".navigate-to-top","#subscribe_popup",".newsletter_holder","#back-top"],fanboyAntiFacebook:[".util-bar-module-firefly-visible"],fanboyEnhancedTrackers:[".open.pushModal","#issuem-leaky-paywall-articles-zero-remaining-nag","#sovrn_container",'div[class$="-hide"][zoompage-fontsize][style="display: block;"]',".BlockNag__Card"],fanboySocial:["#FollowUs","#meteored_share","#social_follow",".article-sharer",".community__social-desc"],frellwitSwedish:[e("YVtocmVmKj0iY2FzaW5vcHJvLnNlIl1bdGFyZ2V0PSJfYmxhbmsiXQ=="),e("YVtocmVmKj0iZG9rdG9yLXNlLm9uZWxpbmsubWUiXQ=="),"article.category-samarbete",e("ZGl2LmhvbGlkQWRz"),"ul.adsmodern"],greekAdBlock:[e("QVtocmVmKj0iYWRtYW4ub3RlbmV0LmdyL2NsaWNrPyJd"),e("QVtocmVmKj0iaHR0cDovL2F4aWFiYW5uZXJzLmV4b2R1cy5nci8iXQ=="),e("QVtocmVmKj0iaHR0cDovL2ludGVyYWN0aXZlLmZvcnRobmV0LmdyL2NsaWNrPyJd"),"DIV.agores300","TABLE.advright"],hungarian:["#cemp_doboz",".optimonk-iframe-container",e("LmFkX19tYWlu"),e("W2NsYXNzKj0iR29vZ2xlQWRzIl0="),"#hirdetesek_box"],iDontCareAboutCookies:['.alert-info[data-block-track*="CookieNotice"]',".ModuleTemplateCookieIndicator",".o--cookies--container","#cookies-policy-sticky","#stickyCookieBar"],icelandicAbp:[e("QVtocmVmXj0iL2ZyYW1ld29yay9yZXNvdXJjZXMvZm9ybXMvYWRzLmFzcHgiXQ==")],latvian:[e("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiAxMjBweDsgaGVpZ2h0OiA0MHB4OyBvdmVyZmxvdzogaGlkZGVuOyBwb3NpdGlvbjogcmVsYXRpdmU7Il0="),e("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiA4OHB4OyBoZWlnaHQ6IDMxcHg7IG92ZXJmbG93OiBoaWRkZW47IHBvc2l0aW9uOiByZWxhdGl2ZTsiXQ==")],listKr:[e("YVtocmVmKj0iLy9hZC5wbGFuYnBsdXMuY28ua3IvIl0="),e("I2xpdmVyZUFkV3JhcHBlcg=="),e("YVtocmVmKj0iLy9hZHYuaW1hZHJlcC5jby5rci8iXQ=="),e("aW5zLmZhc3R2aWV3LWFk"),".revenue_unit_item.dable"],listeAr:[e("LmdlbWluaUxCMUFk"),".right-and-left-sponsers",e("YVtocmVmKj0iLmFmbGFtLmluZm8iXQ=="),e("YVtocmVmKj0iYm9vcmFxLm9yZyJd"),e("YVtocmVmKj0iZHViaXp6bGUuY29tL2FyLz91dG1fc291cmNlPSJd")],listeFr:[e("YVtocmVmXj0iaHR0cDovL3Byb21vLnZhZG9yLmNvbS8iXQ=="),e("I2FkY29udGFpbmVyX3JlY2hlcmNoZQ=="),e("YVtocmVmKj0id2Vib3JhbWEuZnIvZmNnaS1iaW4vIl0="),".site-pub-interstitiel",'div[id^="crt-"][data-criteo-id]'],officialPolish:["#ceneo-placeholder-ceneo-12",e("W2hyZWZePSJodHRwczovL2FmZi5zZW5kaHViLnBsLyJd"),e("YVtocmVmXj0iaHR0cDovL2Fkdm1hbmFnZXIudGVjaGZ1bi5wbC9yZWRpcmVjdC8iXQ=="),e("YVtocmVmXj0iaHR0cDovL3d3dy50cml6ZXIucGwvP3V0bV9zb3VyY2UiXQ=="),e("ZGl2I3NrYXBpZWNfYWQ=")],ro:[e("YVtocmVmXj0iLy9hZmZ0cmsuYWx0ZXgucm8vQ291bnRlci9DbGljayJd"),e("YVtocmVmXj0iaHR0cHM6Ly9ibGFja2ZyaWRheXNhbGVzLnJvL3Ryay9zaG9wLyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9ldmVudC4ycGVyZm9ybWFudC5jb20vZXZlbnRzL2NsaWNrIl0="),e("YVtocmVmXj0iaHR0cHM6Ly9sLnByb2ZpdHNoYXJlLnJvLyJd"),'a[href^="/url/"]'],ruAd:[e("YVtocmVmKj0iLy9mZWJyYXJlLnJ1LyJd"),e("YVtocmVmKj0iLy91dGltZy5ydS8iXQ=="),e("YVtocmVmKj0iOi8vY2hpa2lkaWtpLnJ1Il0="),"#pgeldiz",".yandex-rtb-block"],thaiAds:["a[href*=macau-uta-popup]",e("I2Fkcy1nb29nbGUtbWlkZGxlX3JlY3RhbmdsZS1ncm91cA=="),e("LmFkczMwMHM="),".bumq",".img-kosana"],webAnnoyancesUltralist:["#mod-social-share-2","#social-tools",e("LmN0cGwtZnVsbGJhbm5lcg=="),".zergnet-recommend",".yt.btn-link.btn-md.btn"]}}async function vo({debug:e}={}){if(!Do())return;const t=po(),n=Object.keys(t),i=[].concat(...n.map(s=>t[s])),a=await Mo(i);e&&yo(t,a);const r=n.filter(s=>{const c=t[s];return p(c.map(f=>a[f]))>c.length*.6});return r.sort(),r}function Do(){return F()||Xe()}async function Mo(e){var t;const n=document,i=n.createElement("div"),a=new Array(e.length),r={};fn(i);for(let s=0;s<e.length;++s){const c=Hs(e[s]);c.tagName==="DIALOG"&&c.show();const u=n.createElement("div");fn(u),u.appendChild(c),i.appendChild(u),a[s]=c}for(;!n.body;)await Ee(50);n.body.appendChild(i);try{for(let s=0;s<e.length;++s)a[s].offsetParent||(r[e[s]]=!0)}finally{(t=i.parentNode)===null||t===void 0||t.removeChild(i)}return r}function fn(e){e.style.setProperty("visibility","hidden","important"),e.style.setProperty("display","block","important")}function yo(e,t){let n="DOM blockers debug:\n```";for(const i of Object.keys(e)){n+=`
|
|
375
|
+
${i}:`;for(const a of e[i])n+=`
|
|
376
|
+
${t[a]?"🚫":"➡️"} ${a}`}console.log(`${n}
|
|
377
|
+
\`\`\``)}function Co(){for(const e of["rec2020","p3","srgb"])if(matchMedia(`(color-gamut: ${e})`).matches)return e}function Po(){if(hn("inverted"))return!0;if(hn("none"))return!1}function hn(e){return matchMedia(`(inverted-colors: ${e})`).matches}function Uo(){if(gn("active"))return!0;if(gn("none"))return!1}function gn(e){return matchMedia(`(forced-colors: ${e})`).matches}const wo=100;function Fo(){if(matchMedia("(min-monochrome: 0)").matches){for(let e=0;e<=wo;++e)if(matchMedia(`(max-monochrome: ${e})`).matches)return e;throw new Error("Too high value")}}function Go(){if(ie("no-preference"))return 0;if(ie("high")||ie("more"))return 1;if(ie("low")||ie("less"))return-1;if(ie("forced"))return 10}function ie(e){return matchMedia(`(prefers-contrast: ${e})`).matches}function Bo(){if(En("reduce"))return!0;if(En("no-preference"))return!1}function En(e){return matchMedia(`(prefers-reduced-motion: ${e})`).matches}function ko(){if(mn("reduce"))return!0;if(mn("no-preference"))return!1}function mn(e){return matchMedia(`(prefers-reduced-transparency: ${e})`).matches}function Ho(){if(Tn("high"))return!0;if(Tn("standard"))return!1}function Tn(e){return matchMedia(`(dynamic-range: ${e})`).matches}const S=Math,v=()=>0;function Wo(){const e=S.acos||v,t=S.acosh||v,n=S.asin||v,i=S.asinh||v,a=S.atanh||v,r=S.atan||v,s=S.sin||v,c=S.sinh||v,u=S.cos||v,f=S.cosh||v,l=S.tan||v,d=S.tanh||v,E=S.exp||v,m=S.expm1||v,T=S.log1p||v,A=N=>S.pow(S.PI,N),X=N=>S.log(N+S.sqrt(N*N-1)),ct=N=>S.log(N+S.sqrt(N*N+1)),z=N=>S.log((1+N)/(1-N))/2,Ul=N=>S.exp(N)-1/S.exp(N)/2,wl=N=>(S.exp(N)+1/S.exp(N))/2,Fl=N=>S.exp(N)-1,Gl=N=>(S.exp(2*N)-1)/(S.exp(2*N)+1),Bl=N=>S.log(1+N);return{acos:e(.12312423423423424),acosh:t(1e308),acoshPf:X(1e154),asin:n(.12312423423423424),asinh:i(1),asinhPf:ct(1),atanh:a(.5),atanhPf:z(.5),atan:r(.5),sin:s(-1e300),sinh:c(1),sinhPf:Ul(1),cos:u(10.000000000123),cosh:f(1),coshPf:wl(1),tan:l(-1e300),tanh:d(1),tanhPf:Gl(1),exp:E(1),expm1:m(1),expm1Pf:Fl(1),log1p:T(10),log1pPf:Bl(10),powPI:A(-100)}}const Vo="mmMwWLliI0fiflO&1",Ze={default:[],apple:[{font:"-apple-system-body"}],serif:[{fontFamily:"serif"}],sans:[{fontFamily:"sans-serif"}],mono:[{fontFamily:"monospace"}],min:[{fontSize:"1px"}],system:[{fontFamily:"system-ui"}]};function Xo(){return Yo((e,t)=>{const n={},i={};for(const a of Object.keys(Ze)){const[r={},s=Vo]=Ze[a],c=e.createElement("span");c.textContent=s,c.style.whiteSpace="nowrap";for(const u of Object.keys(r)){const f=r[u];f!==void 0&&(c.style[u]=f)}n[a]=c,t.append(e.createElement("br"),c)}for(const a of Object.keys(Ze))i[a]=n[a].getBoundingClientRect().width;return i})}function Yo(e,t=4e3){return dn((n,i)=>{const a=i.document,r=a.body,s=r.style;s.width=`${t}px`,s.webkitTextSizeAdjust=s.textSizeAdjust="none",oe()?r.style.zoom=`${1/i.devicePixelRatio}`:F()&&(r.style.zoom="reset");const c=a.createElement("div");return c.textContent=[...Array(t/20<<0)].map(()=>"word").join(" "),r.appendChild(c),e(a,r)},'<!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1">')}function jo(){return navigator.pdfViewerEnabled}function Ko(){const e=new Float32Array(1),t=new Uint8Array(e.buffer);return e[0]=1/0,e[0]=e[0]-e[0],t[3]}function $o(){const{ApplePaySession:e}=window;if(typeof e?.canMakePayments!="function")return-1;if(Zo())return-3;try{return e.canMakePayments()?1:0}catch(t){return Jo(t)}}const Zo=Vs;function Jo(e){if(e instanceof Error&&e.name==="InvalidAccessError"&&/\bfrom\b.*\binsecure\b/i.test(e.message))return-2;throw e}function xo(){var e;const t=document.createElement("a"),n=(e=t.attributionSourceId)!==null&&e!==void 0?e:t.attributionsourceid;return n===void 0?void 0:String(n)}const An=-1,Rn=-2,zo=new Set([10752,2849,2884,2885,2886,2928,2929,2930,2931,2932,2960,2961,2962,2963,2964,2965,2966,2967,2968,2978,3024,3042,3088,3089,3106,3107,32773,32777,32777,32823,32824,32936,32937,32938,32939,32968,32969,32970,32971,3317,33170,3333,3379,3386,33901,33902,34016,34024,34076,3408,3410,3411,3412,3413,3414,3415,34467,34816,34817,34818,34819,34877,34921,34930,35660,35661,35724,35738,35739,36003,36004,36005,36347,36348,36349,37440,37441,37443,7936,7937,7938]),Qo=new Set([34047,35723,36063,34852,34853,34854,34229,36392,36795,38449]),qo=["FRAGMENT_SHADER","VERTEX_SHADER"],ec=["LOW_FLOAT","MEDIUM_FLOAT","HIGH_FLOAT","LOW_INT","MEDIUM_INT","HIGH_INT"],bn="WEBGL_debug_renderer_info",tc="WEBGL_polygon_mode";function nc({cache:e}){var t,n,i,a,r,s;const c=Sn(e);if(!c)return An;if(!Ln(c))return Rn;const u=Nn()?null:c.getExtension(bn);return{version:((t=c.getParameter(c.VERSION))===null||t===void 0?void 0:t.toString())||"",vendor:((n=c.getParameter(c.VENDOR))===null||n===void 0?void 0:n.toString())||"",vendorUnmasked:u?(i=c.getParameter(u.UNMASKED_VENDOR_WEBGL))===null||i===void 0?void 0:i.toString():"",renderer:((a=c.getParameter(c.RENDERER))===null||a===void 0?void 0:a.toString())||"",rendererUnmasked:u?(r=c.getParameter(u.UNMASKED_RENDERER_WEBGL))===null||r===void 0?void 0:r.toString():"",shadingLanguageVersion:((s=c.getParameter(c.SHADING_LANGUAGE_VERSION))===null||s===void 0?void 0:s.toString())||""}}function ic({cache:e}){const t=Sn(e);if(!t)return An;if(!Ln(t))return Rn;const n=t.getSupportedExtensions(),i=t.getContextAttributes(),a=[],r=[],s=[],c=[],u=[];if(i)for(const l of Object.keys(i))r.push(`${l}=${i[l]}`);const f=In(t);for(const l of f){const d=t[l];s.push(`${l}=${d}${zo.has(d)?`=${t.getParameter(d)}`:""}`)}if(n)for(const l of n){if(l===bn&&Nn()||l===tc&&sc())continue;const d=t.getExtension(l);if(!d){a.push(l);continue}for(const E of In(d)){const m=d[E];c.push(`${E}=${m}${Qo.has(m)?`=${t.getParameter(m)}`:""}`)}}for(const l of qo)for(const d of ec){const E=rc(t,l,d);u.push(`${l}.${d}=${E.join(",")}`)}return c.sort(),s.sort(),{contextAttributes:r,parameters:s,shaderPrecisions:u,extensions:n,extensionParameters:c,unsupportedExtensions:a}}function Sn(e){if(e.webgl)return e.webgl.context;const t=document.createElement("canvas");let n;t.addEventListener("webglCreateContextError",()=>n=void 0);for(const i of["webgl","experimental-webgl"]){try{n=t.getContext(i)}catch{}if(n)break}return e.webgl={context:n},n}function rc(e,t,n){const i=e.getShaderPrecisionFormat(e[t],e[n]);return i?[i.rangeMin,i.rangeMax,i.precision]:[]}function In(e){return Object.keys(e.__proto__).filter(ac)}function ac(e){return typeof e=="string"&&!e.match(/[^A-Z0-9_x]/)}function Nn(){return cn()}function sc(){return oe()||F()}function Ln(e){return typeof e.getParameter=="function"}function oc(){if(!(Xe()||F()))return-2;if(!window.AudioContext)return-1;const t=new AudioContext().baseLatency;return t==null?-1:isFinite(t)?t:-3}function cc(){if(!window.Intl)return-1;const e=window.Intl.DateTimeFormat;if(!e)return-2;const t=e().resolvedOptions().locale;return!t&&t!==""?-3:t}const lc={fonts:js,domBlockers:vo,fontPreferences:Xo,audio:Us,screenFrame:go,canvas:$s,osCpu:io,languages:ro,colorDepth:ao,deviceMemory:so,screenResolution:oo,hardwareConcurrency:Eo,timezone:mo,sessionStorage:Ao,localStorage:Ro,indexedDB:bo,openDatabase:So,cpuClass:Io,platform:No,plugins:Ks,touchSupport:no,vendor:Lo,vendorFlavors:Oo,cookiesEnabled:_o,colorGamut:Co,invertedColors:Po,forcedColors:Uo,monochrome:Fo,contrast:Go,reducedMotion:Bo,reducedTransparency:ko,hdr:Ho,math:Wo,pdfViewerEnabled:jo,architecture:Ko,applePay:$o,privateClickMeasurement:xo,audioBaseLatency:oc,dateTimeLocale:cc,webGlBasics:nc,webGlExtensions:ic};function dc(e){return Os(lc,e,[])}const uc="$ if upgrade to Pro: https://fpjs.dev/pro";function fc(e){const t=hc(e),n=gc(t);return{score:t,comment:uc.replace(/\$/g,`${n}`)}}function hc(e){if(Xe())return .4;if(F())return Ve()&&!(le()&&ce())?.5:.3;const t="value"in e.platform?e.platform.value:"";return/^Win/.test(t)?.6:/^Mac/.test(t)?.5:.7}function gc(e){return rn(.99+.01*e,1e-4)}function Ec(e){let t="";for(const n of Object.keys(e).sort()){const i=e[n],a="error"in i?"error":JSON.stringify(i.value);t+=`${t?"|":""}${n.replace(/([:|\\])/g,"\\$1")}:${a}`}return t}function On(e){return JSON.stringify(e,(t,n)=>n instanceof Error?Ss(n):n,2)}function _n(e){return bs(Ec(e))}function mc(e){let t;const n=fc(e);return{get visitorId(){return t===void 0&&(t=_n(this.components)),t},set visitorId(i){t=i},confidence:n,components:e,version:qt}}function Tc(e=50){return us(e,e*2)}function Ac(e,t){const n=Date.now();return{async get(i){const a=Date.now(),r=await e(),s=mc(r);return(t||i?.debug)&&console.log(`Copy the text below to get the debug data:
|
|
378
|
+
|
|
379
|
+
\`\`\`
|
|
380
|
+
version: ${s.version}
|
|
381
|
+
userAgent: ${navigator.userAgent}
|
|
382
|
+
timeBetweenLoadAndGet: ${a-n}
|
|
383
|
+
visitorId: ${s.visitorId}
|
|
384
|
+
components: ${On(r)}
|
|
385
|
+
\`\`\``),s}}}function Rc(){if(!(window.__fpjs_d_m||Math.random()>=.001))try{const e=new XMLHttpRequest;e.open("get",`https://m1.openfpcdn.io/fingerprintjs/v${qt}/npm-monitoring`,!0),e.send()}catch(e){console.error(e)}}async function bc(e={}){var t;(!((t=e.monitoring)!==null&&t!==void 0)||t)&&Rc();const{delayFallback:n,debug:i}=e;await Tc(n);const a=dc({cache:{},debug:i});return Ac(a,i)}var Sc={load:bc,hashComponents:_n,componentsToDebugString:On};const pn="FINGERPRINT";function vn(){return typeof window<"u"&&typeof navigator<"u"}function Ic(){if(!vn())return{type:"unknown",name:"unknown"};const e=navigator.userAgent;return/iPad|iPhone|iPod/i.test(e)?{type:"mobile",name:"iOS"}:/Android/i.test(e)?{type:"mobile",name:"Android"}:/Windows Phone/i.test(e)?{type:"mobile",name:"Windows Phone"}:/BlackBerry/i.test(e)?{type:"mobile",name:"BlackBerry"}:/Edg/i.test(e)?{type:"web",name:"Edge"}:/OPR|Opera/i.test(e)?{type:"web",name:"Opera"}:/Firefox/i.test(e)?{type:"web",name:"Firefox"}:/Chrome/i.test(e)?{type:"web",name:"Chrome"}:/Safari/i.test(e)?{type:"web",name:"Safari"}:{type:"unknown",name:"unknown"}}async function Nc(){return(await Sc.load()).get()}async function Je(){if(!vn())return"unknown/unknown";const{type:e,name:t}=Ic(),n=e==="web";if(n){const r=localStorage.getItem(pn);if(r)return`${t}/${r}`}const a=(await Nc()).visitorId;return n&&localStorage.setItem(pn,a),`${t}/${a}`}function Dn(){let e=sessionStorage.getItem("currentPageTag");return e||(e=Date.now().toString(),sessionStorage.setItem("currentPageTag",e)),e}class P{static _DEFAULT_CONFIG={id:"id",children:"children",pid:"pid",deep:!0};static _getConfig(t){return Object.assign({},P._DEFAULT_CONFIG,t)}static listToTree(t,n={},i){const a=P._getConfig(n),r=new Map,s=[],{id:c,children:u,pid:f,deep:l}=a;for(const d of t){const E=d;l?E[u]=E[u]??void 0:E[u]=E[f]==="ROOT"?E[u]??[]:[],r.set(E[c],i(d))}for(const d of t){const E=d,m=r.get(E[f]);if(m){const T=m;T[u]||(T[u]=[]),T[u].push(i(d))}else s.push(i(d))}return s}static treeToList(t,n={}){const{children:i}=P._getConfig(n),a=[...t];for(let r=0;r<a.length;r++){const c=a[r][i];Array.isArray(c)&&a.splice(r+1,0,...c)}return a}static findNode(t,n,i={}){const{children:a}=P._getConfig(i),r=t?[...t]:[];for(const s of r){if(n(s))return s;const u=s[a];Array.isArray(u)&&r.push(...u)}return null}static findNodeAll(t,n,i={}){const{children:a}=P._getConfig(i),r=t?[...t]:[],s=[];for(const c of r){n(c)&&s.push(c);const f=c[a];Array.isArray(f)&&r.push(...f)}return s}static findPath(t,n,i={}){const{children:a}=P._getConfig(i),r=[],s=t?[...t]:[],c=new Set;for(;s.length;){const u=s[0];if(c.has(u))r.pop(),s.shift();else{c.add(u);const l=u[a];if(Array.isArray(l)&&s.unshift(...l),r.push(u),n(u))return r}}return null}static findClosestParent(t,n,i,a={}){const{id:r}=P._getConfig(a);return P.findPath(t,c=>c[r]===n,a)?.reverse().find(c=>i(c))}static list_to_tree(t,n=i=>i){const i={},a=[];for(let r=0;r<t.length;r++){const s=t[r];i[s.id]=r,s.children=[]}for(const r of t)if(r.parentId==="ROOT"||!r.parentId)a.push(n(r));else{const s=r,c=i[r.parentId];c!==void 0&&t[c].children?.push(n(s))}return a}static getAllParentPath(t,n){return(P.findPath(t,a=>a.path===n)||[]).map(a=>a.path)}static traverseAndBuildTree(t,n,i={}){i=this._getConfig(i);const{children:a}=i;return t.map(r=>{const s=n(r)||r;return a&&r[a]&&r[a].length>0&&(s[a]=this.traverseAndBuildTree(r.children,n)),s})}static eachTree(t,n,i={}){t.forEach(a=>{const r=n(a,i)||a;a.children&&P.eachTree(a.children,n,r)})}}o("TreeHelper",P);const nu=o("calcStyle",(e,t=[])=>{const n={},i=e.padding;i&&(i.top!=null&&i.top!=""&&!t.includes("paddingTop")&&(n["padding-top"]=i.top),i.right!=null&&i.right!=""&&!t.includes("paddingRight")&&(n["padding-right"]=i.right),i.bottom!=null&&i.bottom!=""&&!t.includes("paddingBottom")&&(n["padding-bottom"]=i.bottom),i.left!=null&&i.left!=""&&!t.includes("paddingLeft")&&(n["padding-left"]=i.left));const a=e.margin;a&&(a.top!=null&&a.top!=""&&!t.includes("marginTop")&&(n["margin-top"]=a.top),a.right!=null&&a.right!=""&&!t.includes("marginRight")&&(n["margin-right"]=a.right),a.bottom!=null&&a.bottom!=""&&!t.includes("marginBottom")&&(n["margin-bottom"]=a.bottom),a.left!=null&&a.left!=""&&!t.includes("marginLeft")&&(n["margin-left"]=a.left)),e.background!=null&&e.background!=""&&!t.includes("backgroundColor")&&(n["background-color"]=e.background),e.width!=null&&e.width!=""&&!t.includes("width")&&(n.width=e.width),e.height!=null&&e.height!=""&&!t.includes("height")&&(n.height=e.height,n.overflowX="hidden",n.overflowY="auto");const r=e.position;r&&(r.position!=null&&r.position!=""&&!t.includes("zIndex")&&(n.position=r.position,n["z-index"]=1),r.top!=null&&r.top!=""&&!t.includes("top")&&(n.top=`${r.top}px`),r.right!=null&&r.right!=""&&!t.includes("right")&&(n.right=`${r.right}px`),r.bottom!=null&&r.bottom!=""&&!t.includes("bottom")&&(n.bottom=`${r.bottom}px`),r.left!=null&&r.left!=""&&!t.includes("left")&&(n.left=`${r.left}px`));const s=e.border;return s&&(s.topLeftRadius!=null&&s.topLeftRadius!=""&&!t.includes("borderTopLeftRadius")&&(n["border-top-left-radius"]=s.topLeftRadius),s.topRightRadius!=null&&s.topRightRadius!=""&&!t.includes("borderTopRightRadius")&&(n["border-top-right-radius"]=s.topRightRadius),s.bottomLeftRadius!=null&&s.bottomLeftRadius!=""&&!t.includes("borderBottomLeftRadius")&&(n["border-bottom-left-radius"]=s.bottomLeftRadius),s.bottomRightRadius!=null&&s.bottomRightRadius!=""&&!t.includes("borderBottomRightRadius")&&(n["border-bottom-right-radius"]=s.bottomRightRadius),s.top&&(s.top.color!=null&&s.top.color!=""&&!t.includes("borderTopColor")&&(n["border-top-color"]=s.top.color),s.top.width!=null&&s.top.width!=""&&!t.includes("borderTopWidth")&&(n["border-top-width"]=s.top.width),s.top.style&&!t.includes("borderTopStyle")&&(n["border-top-style"]=s.top.style)),s.right&&(s.right.color!=null&&s.right.color!=""&&!t.includes("borderRightColor")&&(n["border-right-color"]=s.right.color),s.right.width!=null&&s.right.width!=""&&!t.includes("borderRightWidth")&&(n["border-right-width"]=s.right.width),s.right.style&&!t.includes("borderRightStyle")&&(n["border-right-style"]=s.right.style)),s.bottom&&(s.bottom.color!=null&&s.bottom.color!=""&&!t.includes("borderBottomColor")&&(n["border-bottom-color"]=s.bottom.color),s.bottom.width!=null&&s.bottom.width!=""&&!t.includes("borderBottomWidth")&&(n["border-bottom-width"]=s.bottom.width),s.bottom.style&&!t.includes("borderBottomStyle")&&(n["border-bottom-style"]=s.bottom.style)),s.left&&(s.left.color!=null&&s.left.color!=""&&!t.includes("borderLeftColor")&&(n["border-left-color"]=s.left.color),s.left.width!=null&&s.left.width!=""&&!t.includes("borderLeftWidth")&&(n["border-left-width"]=s.left.width),s.left.style&&!t.includes("borderLeftStyle")&&(n["border-left-style"]=s.left.style))),e.border_radius&&(n["border-radius"]=`${e.border_radius}px`),n}),iu=o("calcFontStyle",(e,t=[])=>{const n={},i=e.labelFont;return i&&(i.color!=null&&i.color!=""&&!t.includes("color")&&(n.color=i.color),i.fontSize!=null&&i.fontSize!=""&&!t.includes("fontSize")&&(n["font-size"]=i.fontSize),i.align&&!t.includes("textAlign")&&(n["text-align"]=i.align,n["text-align-last"]=i.align),i.bold===!0&&!t.includes("fontWeight")&&(n["font-weight"]="bold"),i.italic===!0&&!t.includes("fontStyle")&&(n["font-style"]="italic"),i.textDecoration&&!t.includes("textDecoration")&&(n["text-decoration"]=i.textDecoration)),n});function Mn(e,t){let n=e;return Object.keys(t).forEach(i=>{n=n.replace(`{${i}}`,t[i]??""),n=n.replace(`{${i}?}`,t[i]??"")}),n=n.replace(/\/\{[a-z]+\?\}/g,""),n}function Lc(e,t){const{target:n="_blank",noopener:i=!0,noreferrer:a=!0,genUrlData:r,routePath:s="",optionStr:c=""}=t||{},u=[];i&&u.push("noopener=yes"),a&&u.push("noreferrer=yes");let f=e;r&&(f=Mn(f,r)),s&&(f+=s);let l=u.join(",");return c&&(l=l?`${l},${c}`:c),window.open(f,n,l)}const Oc=Q("global-store",{state(){return new vt},getters:{getProjectName(){return this.projectName},geLang(){return this.lang},getAppInfo(){return this.appInfo}},actions:{async init(){const e=location.pathname.split("/")[2];if(e){const t=xt(e);t&&(this.context=t)}},async loadAppInfo(){const e=await _api.apaas.designerCommon.getGetApp();this.appInfo=e},setProjectName(e){this.projectName=e},setLang(e){this.lang=e}}});class yn{pinia=lt();store;constructor(){dt(this.pinia),this.store=Oc()}}o("GlobalStoreUtil",yn);class Cn{editors=new Map;providers=new Map;register(t,n){this.editors.set(t,n)}unregister(t){this.editors.delete(t)}get(t){if(this.providers.has(t))return this.providers.get(t);const n=this.editors.get(t);if(n){const i=n();return this.providers.set(t,i),i}return null}}o("EditorRegister",Cn);class Pn{items=new Map;register(t,n){this.items.set(t,n)}unregister(t){this.items.delete(t)}create(t){const n=this.items.get(t);return n?n():null}}o("FormItemRegister",Pn);var Re=o("EnvironmentType",(e=>(e.DEV="dev",e.TEST="test",e.PROD="prod",e))(Re||{}));const _c=o("IP_REG",/^http:\/\/\d{1,3}(\.\d{1,3}){3}:(\d{1,5})$/),Un=o("HOST_REG",/^https?:\/\/([a-z0-9]+)-test\./),pc=o("APP_RUN_PATH_REG",/\/web-render|\/web\/|web-single\/|dev-single\/|test-single\//),vc=o("APP_PROD_PATH_REG",/\/web\/|\/web-single\//),Dc=o("APP_PREVIEW_PATH_REG",/\/web-render\//),Mc=o("DEV_SINGLE_PATH_REG",/\/dev-single\//),yc=o("TEST_SINGLE_PATH_REG",/\/test-single\//);class wn{_testEnv=!1;_testTenantData={};_platformOrigin;_isHostMode=!1;constructor(){this._platformOrigin=location.origin||"",this._isHostMode=Un.test(this._platformOrigin)}get isAppRun(){return pc.test(location.pathname)}get isAppProd(){return vc.test(location.pathname)}get isAppPreview(){return Dc.test(location.pathname)}get isDevSingleEnv(){return Mc.test(location.pathname)}get isTestEnv(){return yc.test(location.pathname)||this._testEnv}get platformOrigin(){return this._platformOrigin}get isHostMode(){return this._isHostMode}get testTenantData(){return this._testTenantData}async checkIsTestEnv(){let t=null;if(this._isHostMode){if(t=this._platformOrigin.match(Un),this._testEnv=!!(t&&t[1]),this._testEnv){const n=await _api.platform.tenant.getInfoByPortOrDomain({domain:t[1]});Object.assign(this._testTenantData,n)}}else{t=this._platformOrigin.match(_c);const n=t&&t[2];if(n){const i=await _api.platform.tenant.getInfoByPortOrDomain({port:n});i&&(Object.assign(this._testTenantData,i),this._testEnv=i.testEnvPort===n)}}}getEnv(){return this.isTestEnv?Re.TEST:this.isAppProd?Re.PROD:Re.DEV}}o("EnvironmentManager",wn);class Fn{i18n=Rt({legacy:!1,locale:"zh-CN",fallbackLocale:"en",messages:{en:{message:{hello:"hello world"}},ja:{message:{hello:"こんにちは、世界"}}}});locale="zh-CN";constructor(){this.init()}async init(){await this.loadLocales();const t=this.getMessageUrl({locale:this.locale});await this.loadMessages(t)}async loadLocales(){const t=await(await fetch("/gct-platform/api/i18n-config/list")).json();if(t.code===200){const n=t.data.find(i=>i.defaultLanguage);this.locale=n.languageTag}}async loadMessages(t,n=this.locale){const r=(await(await fetch(t)).text()).split(`
|
|
386
|
+
`).reduce((s,c)=>{const[u,...f]=c.split(":");return s[u]=f.join(":"),s},{});this.i18n.global.mergeLocaleMessage(n,r)}getMessageUrl(t){if("app"in t){const n=t.env==="dev"?`dev_${t.branch}`:t.env;return`minio/${t.app}/locale-js/${n}/${t.locale}__.json`}return`/minio/locale-js/${t.locale}__platform__.json`}}o("LocaleUtil",Fn);function Gn(e){e.use(_gct.i18n)}const Cc=[];class Pc{router;constructor(){this.router=bt({history:St(),routes:Cc})}async add(t){Array.isArray(t)?t.forEach(n=>this.add(n)):this.router.addRoute(t),await this.router.replace(this.router.currentRoute.value.fullPath)}}function Uc(e){e.use(_gct.router)}class Bn{i18nUtil=new Fn;i18n=this.i18nUtil.i18n;storeUtil=new yn;store=this.storeUtil.store;routerUtil=new Pc;router=this.routerUtil.router;message;dictionary=new wt;env=new wn;register={editor:new Cn,formItem:new Pn};openUtil;async init(){await this.env.checkIsTestEnv(),await this.store.init()}}o("GctGlobal",Bn);class kn{constructor(t){this.model=t,this.init()}evt=new we;state=new Me;item={};provider={};context={};params={};fields=[];modelMap={};init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent(),this.calcState()}initEvent(){}calcState(){}initFormItems(t){t.forEach(n=>{let i=null;if((n.type==="item"||n.type==="hidden")&&(this.fields.push(n.name),this.modelMap[n.name]=n),n.type==="item"&&(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}___${n.name}`),i||(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}`))),i||(i=_gct.register.formItem.create(n.type)),!i){console.error(`未找到表单项提供者:${n.type}`,n);return}if(this.provider[n.name]=i,n.type==="item"){const a=n;this.item[a.name]=i.createController(this,a)}else if(n.type==="hidden"){const a=n;this.item[a.name]=i.createController(this,a)}else if(n.type==="container"||n.container){const a=n;this.item[n.name]=i.createController(this,a),a.children&&this.initFormItems(a.children)}})}calcHidden(){Object.keys(this.item).forEach(n=>{const i=this.item[n];if(i.model.hidden){const a=i.model.hidden(this,i,this.state.data);a!=null&&(i.state.visible=!a)}})}getData(){const t={};return this.fields.forEach(n=>{const i=this.item[n];i&&(i.state.visible===!0||i.model.type==="hidden")&&(t[i.key]=i.value)}),t}resetData(){this.fields.forEach(t=>{const n=this.item[t];n&&n.reset()})}async load(){try{if(!this.model.loadRequest)return{};this.state.loading=!0;const t=await this.model.loadRequest({id:this.context.id});return this.fields.forEach(n=>{const i=this.item[n];i&&(i.value=t[i.key]),i.defaultValue()}),this.state.loaded=!0,t}finally{this.state.loading=!1}}destroy(){this.state.destroyed=!0,this.evt.reset(),this.fields.forEach(t=>{const n=this.item[t];n&&n.destroy()})}validate(){return Promise.resolve(!0)}validateItem(t){return Promise.resolve(!0)}loaded(){this.calcHidden(),this.fields.forEach(t=>{this.item[t].defaultValue()}),this.calcState()}mounted(){}}o("GctFormController",kn);class wc extends kn{initEvent(){super.initEvent(),this.evt.on("change",(t,n,i)=>{if(this.model.watch){const r=this.model.watch[t];r&&r(this,n,i)}const a=this.item[t];a&&a.model.watch&&a.model.watch(this,a,n,i),n!=i&&this.calcHidden(),this.model.autosave===!0&&this.state.loading===!1&&this.autoSave()})}autoSave(){return this.save()}save(){const t=this.getData();return this.state.isNew===!0&&this.model.newRequest?this.model.newRequest(t):this.model.updateRequest?this.model.updateRequest({id:this.context.id},t):Promise.resolve(t)}}o("EditFormController",wc);function Fc(e){const t=e();return t.state=D(t.state),pe(()=>t.destroy()),t}class xe{model;constructor(t){this.model=t}}o("EditorController",xe);class Hn{constructor(t){this.model=t,this.init()}evt=new we;context={};params={};state=new Me;item={};provider={};load(){throw new Error("Method not implemented.")}loaded(){throw new Error("Method not implemented.")}destroy(){throw new Error("Method not implemented.")}validate(){throw new Error("Method not implemented.")}validateItem(t){throw new Error("Method not implemented.")}mounted(){throw new Error("Method not implemented.")}init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent()}initEvent(){}initFormItems(t){t.forEach(n=>{let i=null;if(n.type==="item"&&(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}___${n.name}`),i||(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}`))),i||(i=_gct.register.formItem.create(n.type)),!i){console.error(`未找到表单项提供者:${n.type}`,n);return}if(this.provider[n.name]=i,n.type==="item"){const a=n;this.item[a.name]=i.createController(this,n)}else if(n.type==="container"){const a=n;this.item[n.name]=i.createController(this,n),a.children&&this.initFormItems(a.children)}})}getData(){return{}}resetData(){Object.keys(this.state.data).forEach(n=>{const i=this.state.data[n];i&&(typeof i=="object"?Array.isArray(i)?this.state.data[n]=[]:this.state.data[n]={}:this.state.data[n]=null)})}}o("FormController",Hn);function Gc(e){const t=new Hn(e);return t.state=D(t.state),t}class ${constructor(t,n){this.form=t,this.model=n,this.init()}state=this.crateItemState();get data(){return this.form.state.data}init(){}destroy(){this.state.destroyed=!0}crateItemState(){return new W}}o("FormItemBasicController",$);function Bc(e){const t=e();return t.state=D(t.state),t}class kc extends ${type="collapse-pane";crateItemState(){return new Dt}}o("FormCollapsePaneController",kc);class Hc extends ${type="collapse";crateItemState(){return new Mt}}o("FormCollapseController",Hc);class Wc extends ${type="tab";crateItemState(){return new yt}}o("FormTabController",Wc);class Vc extends ${type="tab-pane";crateItemState(){return new Ct}}o("FormTabPaneController",Vc);class Xc extends ${type="group";crateItemState(){return new Pt}}o("FormGroupController",Xc);class ze extends ${get key(){return this.model.field??this.model.name}get value(){return this.form.state.data[this.key]}set value(t){const n=Y(this.form.state.data[this.key]);this.form.state.data[this.key]=t,this.form.evt.emit("change",this.key,t,n),this.state.value=t}get editorValue(){return this.model.fields?this.model.fields.map(t=>this.form.item[t].value):this.value}set editorValue(t){this.model.fields?this.model.fields.forEach((n,i)=>{this.form.item[n].value=t?.[i]}):this.value=t}init(){if(super.init(),this.model.type!=="hidden"){const{editor:t}=this.model;this.state.readonly=t.readonly,t.disabled!=null&&(this.state.disabled=t.disabled)}if(this.model.dictionary){const{mode:t}=this.model.dictionary;t==="static"&&(this.state.options=this.model.dictionary.items||[])}}defaultValue(){this.form.state.data[this.key]===void 0&&this.model.defaultValue!==void 0&&(this.form.state.data[this.key]=this.model.defaultValue)}reset(){this.model.defaultValue!==void 0?this.value=this.model.defaultValue:this.value=void 0}blur(){console.warn("FormEditItemController.blur not implemented")}crateItemState(){return new ye}}o("FormEditItemController",ze);class Yc extends ze{type="item";async loadDictionary(t){if(this.state.options.length>0)return this.state.options;this.state.options=[],this.state.loading=!0;try{return this.model.dictionary?this.state.options=await _gct.dictionary.asyncGetByConfig(this.model.dictionary,t):this.model.dictionaryTag&&(this.state.options=await _gct.dictionary.asyncGet(this.model.dictionaryTag,t)),this.state.options}finally{this.state.loading=!1}}clearDictionary(){this.state.options=[]}blur(){console.warn("FormEditItemController.blur not implemented")}crateItemState(){return new Ut}}o("FormItemController",Yc);class jc extends ze{type="hidden"}o("FormHiddenItemController",jc);class Kc extends xe{}o("LengthUnitEditorController",Kc);class $c extends xe{}o("ColorEditorController",$c);function Zc(){return fe(kt)}function Wn(){return fe("formController")}function Jc(e){let t=null;if(e){const i=Wn().item[e];i&&(t=U({get(){return i.value},set(a){typeof a=="string"&&(a=a.trim()),!(typeof a!="object"&&i.value==a)&&(i.value=a)}}))}else{let n=ve().proxy;const i=n.$props,a=n.$emit;t=U({get:()=>i.value,set:r=>{typeof r=="string"&&(r=r.trim()),!(typeof r!="object"&&i.value==r)&&a("update:value",r)}}),n=null}return t}function xc(e,t){let n=ve().proxy;const i=n.$props,a=n.$emit,r=e?e.length:0,s=t?t.length:0,c=U({get:()=>{if(!i.value)return"";let u=i.value;return r>0&&u.startsWith(e)&&(u=u.substring(r)),s>0&&u.endsWith(t)&&(u=u.substring(0,u.length-s)),u},set:u=>{if(i.value===u)return;if(u==""){a("update:value","");return}let f=u;r>0&&(f=e+f),s>0&&(f=f+t),a("update:value",f)}});return n=null,c}function zc(e){const t=fe("modal");return t&&e&&(t.ok=e),t}function Qc(){return U(()=>window.$wujie?.props)}function qc(){const e=mt({});return Tt(()=>{const t=n=>{n.data?.type==="IFRAME_PROPS"&&(e.value=n.data.props)};window.addEventListener("message",t),window.parent.postMessage({type:"IFRAME_READY"},"*"),pe(()=>{window.removeEventListener("message",t)})}),U(()=>e.value)}function el(){return U(()=>window.$wujie.bus)}function Vn(e){return typeof e<"u"}function tl(e){const t=y(e||""),n=y(!1),i=y(!1);return ae(t,a=>{Vn(a)&&(i.value=!0,n.value=Xn(a))},{immediate:!!e,flush:"sync"}),{clipboardRef:t,isSuccessRef:n,copiedRef:i}}function Xn(e,{target:t=document.body}={}){const n=document.createElement("textarea"),i=document.activeElement;n.value=e,n.setAttribute("readonly",""),n.style.contain="strict",n.style.position="absolute",n.style.left="-9999px",n.style.fontSize="12pt";const a=document.getSelection();let r;a&&a.rangeCount>0&&(r=a.getRangeAt(0)),t.append(n),n.select(),n.selectionStart=0,n.selectionEnd=e.length;let s=!1;try{s=document.execCommand("copy")}catch(c){throw new Error(c)}return n.remove(),r&&a&&(a.removeAllRanges(),a.addRange(r)),i&&i.focus(),s}const Z={UNAUTHORIZED:401,FORBIDDEN:403,NOT_FOUND:404,INTERNAL_SERVER_ERROR:500,BAD_GATEWAY:502,SERVICE_UNAVAILABLE:503,GATEWAY_TIMEOUT:504};class nl{handle(t){console.error(t)}}class il{handle(t){console.error(t)}}class rl{handle(t){if(t.type===k.AJAX){new Yn().handle(t);return}console.error(t)}}class Yn{handle(t){const n=this._extractStatusCode(t.message);if(n)switch(n){case Z.UNAUTHORIZED:this._handleUnauthorized();break;case Z.FORBIDDEN:this._handleForbidden();break;case Z.NOT_FOUND:this._handleNotFound();break;case Z.INTERNAL_SERVER_ERROR:case Z.BAD_GATEWAY:case Z.SERVICE_UNAVAILABLE:case Z.GATEWAY_TIMEOUT:this._handleServerError(n);break;default:this._handleGenericHttpError(t);break}else this._handleGenericHttpError(t)}_extractStatusCode(t){const n=t.match(/HTTP\s+(\d{3})|Business\s+Error\s+\[(\d+)\]/);return n?parseInt(n[1]||n[2],10):null}_handleGenericHttpError(t){t.message.includes("Business Error")?console.debug("Handling business error:",t.message):t.message.includes("Network")?console.debug("Handling network error:",t.message):console.debug("Handling HTTP error:",t.message)}_handleUnauthorized(){console.warn("Unauthorized access, redirecting to login...")}_handleForbidden(){console.warn("Access forbidden")}_handleNotFound(){console.warn("Resource not found")}_handleServerError(t){console.warn(`Server error: ${t}`)}}class Qe{static _strategies=new Map;static init(){this.registerStrategy(k.SCRIPT,new nl),this.registerStrategy(k.VUE,new il),this.registerStrategy(k.PROMISE,new rl),this.registerStrategy(k.AJAX,new Yn)}static getStrategy(t){return this._strategies.get(t)}static registerStrategy(t,n){this._strategies.set(t,n)}}o("ErrorStrategyFactory",Qe);class G{static _instance;constructor(){this._initializeStrategies()}static getInstance(){return G._instance||(G._instance=new G),G._instance}static init(){G.getInstance()}static handleVueError(t,n,i){const a={type:k.VUE,message:`Vue Error: ${t.message} | Info: ${i}`,stack:t.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(a)}static reportError(t,n=k.SCRIPT){const i={type:n,message:t.message,stack:t.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(i)}_initializeStrategies(){Qe.init()}_processError(t){Qe.getStrategy(t.type)?.handle(t)}}o("ErrorHandler",G);async function jn(e){G.init(),e.config.errorHandler=(t,n,i)=>{G.handleVueError(t,n,i)},e.config.warnHandler=(t,n,i)=>{console.warn(`Vue Warning: ${t}`),i&&console.warn("Trace:",i)},window.addEventListener("error",t=>{G.reportError(new Error(t.message),k.SCRIPT)}),window.addEventListener("unhandledrejection",t=>{G.reportError(t.reason,k.PROMISE)})}var J=o("LoginSortTypeEnum",(e=>(e.SYSTEM="SYSTEM",e.THIRD_PARTY="THIRD_PARTY",e))(J||{})),I=o("LoginTypeEnum",(e=>(e.ACCOUNT="ACCOUNT",e.DOMAIN_ACCOUNT="DOMAIN_ACCOUNT",e.MOBILE="MOBILE",e.DINGDING="DINGDING",e.FEISHU="FEISHU",e.QIYEWEIXIN="QIYEWEIXIN",e))(I||{})),_=o("PlatformSettingEnum",(e=>(e.BASIC="BASE_CFG",e.WATERMARK="MARK_CFG",e.SECURITY="SECURITY_CFG",e.LOGIN="LOGIN_CFG",e.THEME="THEME_CFG",e.ORGANIZATION="ORG_CFG",e.APK="APK_CFG",e.DEPLOY="DEPLOY_CFG",e.GLOBAL="GLOBAL_CFG",e))(_||{})),al=o("PassRule",(e=>(e.NUMBER="NUMBER",e.LOWERCASE="LOWERCASE",e.UPPERCASE="UPPERCASE",e.SPECHARS="SPECHARS",e))(al||{})),sl=o("KickRuleEnum",(e=>(e.SAME_END="SAME_END",e.DIFFERENT_END="DIFFERENT_END",e))(sl||{})),qe=o("DeployModeEnum",(e=>(e.STANDARD="STANDARD",e.INDEPENDENT_APP="INDEPENDENT_APP",e))(qe||{}));const ol={[I.ACCOUNT]:{icon:"icon-a-Accountnumber",color:"#0E81EC"},[I.DOMAIN_ACCOUNT]:{icon:"icon-a-Domainaccount",color:"#FFAB06"},[I.MOBILE]:{icon:"icon-a-Cellphone",color:"#6A70FE"},[I.DINGDING]:{icon:"DingdingIcon"},[I.FEISHU]:{icon:"FeishuIcon"},[I.QIYEWEIXIN]:{icon:"QiyeweixinIcon"}},Kn=o("SYSTEM_LOGIN_KEYS",[I.ACCOUNT,I.DOMAIN_ACCOUNT,I.MOBILE]),$n=o("OTHER_LOGIN_KEYS",[I.DINGDING,I.FEISHU,I.QIYEWEIXIN]),be=o("getLoginTypeOptions",e=>e?e.map(t=>({id:t,label:t,value:t,...ol[t]})):[]),cl=o("RELATION_FIELDS",[{label:"extString0_",value:"ext0",type:1},{label:"extString1_",value:"ext1",type:1},{label:"extString2_",value:"ext2",type:1},{label:"extString3_",value:"ext3",type:1},{label:"extString4_",value:"ext4",type:1},{label:"extInt5_",value:"ext5",type:0},{label:"extInt6_",value:"ext6",type:0},{label:"extInt7_",value:"ext7",type:0},{label:"extInt8_",value:"ext8",type:0},{label:"extInt9_",value:"ext9",type:0}]),ll=o("MENU_COLLAPSED_WIDTH",46),dl=o("MENU_WIDTH_RANGE",[100,1e3]),ul=o("THEME_COLORS",["#026AC8","#0DAA9C"]),fl=o("WATERMARK_INIT_DATA",{openWatermark:!1,watermarkContent:"custom",fontSize:16,color:"#000000",verticalAlign:"middle",textAlign:"center",text:"${username}",transparent:15,width:1600,height:1080}),Se=D({copyright:'© 2016-<span class="ownInput">${当前年份}</span> 冠骋信息技术(苏州)有限公司 版权所有',description:"",icon:"",loadingImage:"",logo:"",name:"冠骋云PaaS平台",thumbnail:"",version:"暂未支持"});function hl(e=!0){const t=()=>e?_api.platform.plat.postBase(_e({...Se},"version")):_api.apaas.plat.postBase(_e({...Se},"version"));function n(i,a=!0){const{value:r}=i;if(r)try{Object.assign(Se,a?JSON.parse(r):r,{version:(void 0).version})}catch(s){console.warn(s)}}return{basicSetting:Se,setBasicSetting:n,postBasicSetting:t}}const et=D({deployMode:qe.STANDARD}),gl=U(()=>et.deployMode===qe.INDEPENDENT_APP);function El(e){const{value:t}=e;if(t)try{Object.assign(et,JSON.parse(t))}catch(n){console.warn(n)}}function ml(){return{deploySetting:et,setDeploySetting:El,isIndependentApp:gl}}const tt=y([I.ACCOUNT]),nt=y([]),it=y(be(Kn)),rt=y(be($n)),B=D({theme:"full",title:"欢迎登录冠骋云PaaS平台",subtitle:"让数字化赋能客户成功!",logo:"",banner:"",loginModeConfigs:[],openIDOAuthConfigs:[],sortJson:"",defaultAuthType:I.ACCOUNT}),re=D(new Map([[I.ACCOUNT,{address:"",authType:I.ACCOUNT,relationField:"",enabled:0}],[I.DOMAIN_ACCOUNT,{address:"",authType:I.DOMAIN_ACCOUNT,relationField:"",domainSuffix:"",relationFieldName:"",enabled:0}],[I.MOBILE,{smsServiceProvider:"",smsKey:"",smsKeySecret:"",smsTemplateCode:"",smsSignName:"",phoneNumb:"",smsSdkAppId:"",authType:I.MOBILE,enabled:0}],[I.DINGDING,{appId:"",authType:I.DINGDING,secret:"",redirectURL:"",enabled:0}],[I.FEISHU,{appId:"",authType:I.FEISHU,secret:"",redirectURL:"",enabled:0}],[I.QIYEWEIXIN,{appId:"",agentId:"",authType:I.QIYEWEIXIN,secret:"",redirectURL:"",enabled:0,certFileName:""}]]));function Tl(){return{loginSetting:B,postLoginSetting:async()=>{[...tt.value,...nt.value].forEach(i=>{const a=re.get(i);a&&(a.enabled=1)}),B.loginModeConfigs=Kn.map(i=>re.get(i)).filter(i=>i!==void 0),B.openIDOAuthConfigs=$n.map(i=>re.get(i)).filter(i=>i!==void 0),B.sortJson=JSON.stringify({[J.SYSTEM]:it.value.map(i=>i.id),[J.THIRD_PARTY]:rt.value.map(i=>i.id)}),await _api.platform.plat.postLogin(B)},setLoginSetting:n=>{if(n&&n.value){const i=JSON.parse(n.value);for(const r in i)r in B&&(B[r]=i[r]);if(ue(i,"sortJson")&&!Le(i.sortJson)){const r=JSON.parse(i.sortJson);ue(r,J.SYSTEM)&&(it.value=be(r[J.SYSTEM])),ue(r,J.THIRD_PARTY)&&(rt.value=be(r[J.THIRD_PARTY]))}B.loginModeConfigs?.forEach(r=>{re.set(r.authType,{...r,enabled:0})});const a=B.loginModeConfigs?.filter(r=>r.enabled).map(r=>r.authType)||[];a.push(I.ACCOUNT),tt.value=[...new Set(a)],B.openIDOAuthConfigs?.forEach(r=>{re.set(r.authType,{...r,enabled:0})}),nt.value=B.openIDOAuthConfigs?.filter(r=>r.enabled).map(r=>r.authType)||[]}},loginModeAuthTypes:tt,openIDOAuthAuthTypes:nt,sysLoginSort:it,openIDOAuthAuthSort:rt,loginModeConfig:re}}const x=D({initialPassword:"123456",initialSignPassword:"12345678",enableIdentifier:1,enableDeleteAccount:1,enableDeleteUser:0,requiredFields:[],supportLoginFields:["username_"],extFieldConfigs:[],orgExtFieldConfigs:[]}),at=y([...cl]),Zn=y([]);function Al(e=!0){const t=async()=>{const i=JSON.parse(JSON.stringify(x));e?await _api.platform.plat.postOrg(i):await _api.apaas.plat.postOrg(i)};function n(i){const{value:a}=i;if(a)try{const r=JSON.parse(a);for(const s in r)s=="supportLoginFields"&&(r.supportLoginFields=r.supportLoginFields.filter(c=>c!=="username_"));Object.assign(x,r),x.extFieldConfigs&&x.extFieldConfigs.length&&x.extFieldConfigs.forEach(s=>{at.value=at.value.filter(c=>(c.value==s.relationField&&Zn.value.push(c),c.value!==s.relationField))}),x.extFieldConfigs=JSON.parse(JSON.stringify(r.extFieldConfigs))}catch(r){console.warn(r)}}return{orgSetting:x,setOrgSetting:n,postOrgSetting:t,relationFields:at,relationFiledsCopy:Zn}}const Ie=D({durationHour:2,durationMinute:0,enableChangePassword:1,enableChangeSignPassword:0,enableSignPassword:0,enableKickOut:1,enablePassphrase:1,signEnablePassphrase:1,enableLockAccount:1,expiryDate:30,signExpiryDate:30,firstTimeChangePassword:0,signFirstTimeChangePassword:0,lockTimeout:0,loginKickOutMode:"SAME_END",maxErrorTimes:2,passMinLength:6,signPassMinLength:6,passRule:["NUMBER"],signPassRule:["NUMBER"],signRepeatNum:1,repeatNum:1,timeUnit:"DAYS",signTimeUnit:"DAYS",noOpRetainHour:8,noOpRetainMinute:0,earlyAlarmMinute:5,earlyAlarmSecond:0,inapplicablePerson:[],lockHourTimeout:0,lockMinTimeout:5});function Rl(e=!0){const t=async()=>{e?await _api.platform.plat.postSecurity(Ie):await _api.apaas.plat.postSecurity(Ie)};function n(i){const{value:a}=i;if(a)try{Object.assign(Ie,JSON.parse(a))}catch(r){console.warn(r)}}return{securitySetting:Ie,postSecuritySetting:t,setSecuritySetting:n}}const Ne=D({darkMode:"light",themeColor:"#026AC8",menuMode:"classic",menuWidth:232,menuCollapsible:!0,menuSearchable:!0,menuFilter:!1,showLogo:!0,showBreadcrumb:!1,showBreadcrumbIcon:!1,showTabs:!0,pageProgress:!0,pageLoading:!0,colorMode:"normal"}),st=y(!1),bl=ll,Sl=dl,Il=ul,Nl=()=>{Ne.colorMode};ae(()=>Ne.colorMode,e=>{e&&Nl()});function Ll(){const e=async()=>{};function t(i){const{value:a}=i;if(a)try{Object.assign(Ne,JSON.parse(a))}catch(r){console.warn(r)}}function n(){st.value=!st.value}return{themeSetting:Ne,setThemeSetting:t,postThemeSetting:e,menuCollapsed:st,toggleMenuCollapsed:n,menuCollapsedWidth:bl,menuWidthRange:Sl,themeColors:Il}}const ot=D({...fl});function Ol(){const e=async()=>{const n=JSON.stringify(ot);await _api.platform.plat.postWatermark({value:n})};function t(n){const{value:i}=n;if(i)try{Object.assign(ot,JSON.parse(i))}catch(a){console.warn(a)}}return{watermarkSetting:ot,postWatermarkSetting:e,setWatermarkSetting:t}}const Jn=D({});function _l(e){Object.assign(Jn,e)}function pl(){return{projectSetting:Jn,setProjectConfig:_l}}const vl=o("usePlatformConfigStore",Q("platform-config",()=>{const e=hl(),t=Tl(),n=Al(),i=Rl(),a=Ll(),r=Ol(),s=ml(),c=pl();async function u(){const l=await _api.platform.plat.getList(),d={};l&&l.length>0&&l.forEach(E=>{if(E.value)try{d[E.configEnum]=JSON.parse(E.value)}catch(m){console.warn(`${E.configEnum}配置解析失败`,m,E)}}),d[_.BASIC]&&e.setBasicSetting(d[_.BASIC]),d[_.LOGIN]&&t.setLoginSetting(d[_.LOGIN]),d[_.ORGANIZATION]&&n.setOrgSetting(d[_.ORGANIZATION]),d[_.SECURITY]&&i.setSecuritySetting(d[_.SECURITY]),d[_.THEME]&&a.setThemeSetting(d[_.THEME]),d[_.WATERMARK]&&r.setWatermarkSetting(d[_.WATERMARK]),d[_.DEPLOY]&&s.setDeploySetting(d[_.DEPLOY]),console.debug("平台配置初始化完成",d)}async function f(){const l=await _api.apaas.basicConfig.getDetail({configEnum:_.THEME});l&&a.setThemeSetting(l)}return{init:u,renderInit:f,...e,...t,...n,...i,...a,...r,...s,...c}})),ru=o("useUserStore",Q("user",{state:()=>({userInfo:{},roleList:[],sessionTimeout:!1,lastUpdateTime:0}),getters:{getUserInfo(e){return e.userInfo}},actions:{async login(e,{hasError:t}={}){try{const n=await Dl(e,t),{token:i,signWay:a}=n;return sessionStorage.setItem("signWay",a),$t(i),this.afterLoginAction()}catch(n){return Promise.reject(n)}},async getUserInfoAction(e){if(!ge&&!e)return null;const t=await _api.platform.user.getInfo({headers:{Token:e}});return this.setUserInfo(t),t},async afterLoginSingleApp(){},async afterLoginAction(){if(!ge)return null},async logout(){await Ml()},async setUserInfo(e){this.userInfo={...e,minioDomain:"/minio"},this.lastUpdateTime=new Date().getTime()},async updateUserInfo(e){const t={...this.userInfo,...e};this.setUserInfo(t)}}}));async function Dl(e,{hasError:t=!0}={}){const n=await Je();return await _api.platform.login.postSign(e,{headers:{browser:n,"Auth-Code":e.authCode,hasError:t}})}async function Ml(){const e=sessionStorage.getItem("currentPlatOrAppId"),t=_gct.env.getEnv(),n=await Je(),i={appId:e&&JSON.parse(e).appId,platform:e&&JSON.parse(e).type,env:t},a=Dn();await _api.platform.login.getSignOut(i,{headers:{browser:n,pagetag:a}})}const au=o("useTenantStore",Q("tenant",{state:()=>({tenantId:"",tenantUserInfo:{},tenantUserPermissions:{}}),actions:{setTenant(e){this.tenantId=e},async getTenantUserInfoAction(){if(!this.tenantId)return;const e=await _api.platform.tenant.getUserInfo();return this.tenantUserInfo=e,e}}})),su=o("usePermissionStore",Q("permission",{state:()=>({userPermissions:{appSuperAdmin:0,permissions:{}}}),getters:{hasAllPermissions(e){return!!e.userPermissions.appSuperAdmin||!!e.userPermissions.permissions["POINT.*"]}},actions:{getPermissionByKey(e,t){if(this.hasAllPermissions)return!0;if(!t)return this.userPermissions.permissions[e];const n=`${e}.${t}`,i=`${e}.*`;return this.userPermissions.permissions[n]||this.userPermissions.permissions[i]},async initPermission(){const e=await _api.apaas.designerCommon.getUserInfo();Object.assign(this.userPermissions,{...e,permissions:Object.fromEntries((e?.permissions??[]).map(t=>[t,!0]))})}}}));async function yl(e){e.provide(kt,e),Gn(e),Uc(e)}async function Cl(e){await jn(e),It.use(Qt),await _gct.init(),await vl().init()}function Pl(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new Bn,Object.defineProperty(window._gct,"api",{get(){return De}}),Object.defineProperty(window,"_api",{get(){return De}})}Pl()})}}));
|