super-page-runtime 2.3.34 → 2.3.35-cdnTmp1
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/es/_virtual/_plugin-vue_export-helper.mjs +8 -0
- package/dist/es/components/runtime/utils/ai-chat-util.mjs +16 -0
- package/dist/es/components/runtime/utils/anchor-util.mjs +83 -0
- package/dist/es/components/runtime/utils/api/page-expose-util.mjs +184 -0
- package/dist/es/components/runtime/utils/assemblys-config.mjs +19 -0
- package/dist/es/components/runtime/utils/barcode-util.mjs +12 -0
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +169 -0
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +38 -0
- package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +83 -0
- package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +56 -0
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +47 -0
- package/dist/es/components/runtime/utils/charts/chart-util.mjs +285 -0
- package/dist/es/components/runtime/utils/common-util.mjs +116 -0
- package/dist/es/components/runtime/utils/eventBus.mjs +5 -0
- package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +38 -0
- package/dist/es/components/runtime/utils/events/event-util.mjs +411 -0
- package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
- package/dist/es/components/runtime/utils/events/standard-event.mjs +1164 -0
- package/dist/es/components/runtime/utils/events/validator-util.mjs +308 -0
- package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
- package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
- package/dist/es/components/runtime/utils/global-refs.mjs +56 -0
- package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
- package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
- package/dist/es/components/runtime/utils/page-helper-util.mjs +377 -0
- package/dist/es/components/runtime/utils/page-init-util.mjs +260 -0
- package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
- package/dist/es/components/runtime/utils/page-store.mjs +53 -0
- package/dist/es/components/runtime/utils/store-util.mjs +13 -0
- package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
- package/dist/es/components/runtime/utils/tree-utils.mjs +58 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.mjs +29 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.mjs +21 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.mjs +41 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +20 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.mjs +53 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +52 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.mjs +46 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +408 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +33 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.mjs +252 -0
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +33 -0
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +18 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +18 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +19 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.mjs +29 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.mjs +20 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.mjs +17 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.mjs +29 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.mjs +81 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.mjs +25 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.mjs +20 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +43 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.mjs +96 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.mjs +46 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.mjs +69 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +320 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.mjs +83 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.mjs +132 -0
- package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.mjs +63 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.mjs +69 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.mjs +102 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.mjs +55 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.mjs +24 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.mjs +91 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.mjs +28 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.mjs +80 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.mjs +37 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.mjs +43 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.mjs +16 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.mjs +82 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.mjs +195 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.mjs +150 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.mjs +16 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.mjs +36 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.mjs +43 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.mjs +28 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +72 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +141 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.mjs +26 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.mjs +28 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.mjs +45 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.mjs +20 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.mjs +23 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.mjs +23 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +27 -0
- package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
- package/dist/es/components/runtime/views/home-chart.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +5 -0
- package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
- package/dist/es/components/runtime/views/super-page.vue2.mjs +289 -0
- package/dist/es/i18n/langs/{cn.js → cn.mjs} +1 -1
- package/dist/es/i18n/langs/{en.js → en.mjs} +1 -1
- package/dist/es/index.mjs +30 -0
- package/dist/es/style.css +1 -1019
- package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
- package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
- package/dist/lib/assets/file.png.cjs +1 -0
- package/dist/lib/assets/folder.png.cjs +1 -0
- package/dist/lib/components/runtime/index.d.ts +5 -0
- package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
- package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
- package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
- package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
- package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
- package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
- package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
- package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
- package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
- package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
- package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
- package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
- package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
- package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/validator-util.d.ts +24 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
- package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
- package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
- package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
- package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
- package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
- package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
- package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
- package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
- package/dist/lib/components/runtime/utils/store.cjs +1 -0
- package/dist/lib/components/runtime/utils/store.d.ts +2 -0
- package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
- package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
- package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +14 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
- package/dist/lib/components/runtime/views/home-chart.vue2.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
- package/dist/lib/components/runtime/views/super-page.vue2.cjs +1 -0
- package/dist/lib/favicon.ico +0 -0
- package/dist/lib/i18n/langs/cn.cjs +1 -0
- package/dist/lib/i18n/langs/en.cjs +1 -0
- package/dist/lib/index.cjs +1 -0
- package/dist/lib/index.d.ts +16 -0
- package/dist/lib/style.css +1 -0
- package/package.json +77 -75
- package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
- package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
- package/dist/es/components/runtime/utils/anchor-util.js +0 -92
- package/dist/es/components/runtime/utils/api/api-util.js +0 -4
- package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
- package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
- package/dist/es/components/runtime/utils/barcode-util.js +0 -12
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -166
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
- package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
- package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
- package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
- package/dist/es/components/runtime/utils/common-util.js +0 -120
- package/dist/es/components/runtime/utils/eventBus.js +0 -5
- package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
- package/dist/es/components/runtime/utils/events/event-util.js +0 -415
- package/dist/es/components/runtime/utils/events/print-label.js +0 -100
- package/dist/es/components/runtime/utils/events/standard-event.js +0 -1190
- package/dist/es/components/runtime/utils/events/validator-util.js +0 -326
- package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
- package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
- package/dist/es/components/runtime/utils/global-refs.js +0 -57
- package/dist/es/components/runtime/utils/i18n-util.js +0 -14
- package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
- package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
- package/dist/es/components/runtime/utils/page-init-util.js +0 -280
- package/dist/es/components/runtime/utils/page-store.js +0 -53
- package/dist/es/components/runtime/utils/store-util.js +0 -13
- package/dist/es/components/runtime/utils/table-utils.js +0 -89
- package/dist/es/components/runtime/utils/tree-utils.js +0 -73
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -419
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -20
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -327
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -85
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
- package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -78
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -82
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -32
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -153
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -6
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -26
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -24
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
- package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
- package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
- package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
- package/dist/es/components/runtime/views/super-page.vue.js +0 -7
- package/dist/es/components/runtime/views/super-page.vue2.js +0 -296
- package/dist/es/index.js +0 -30
- /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
- /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
- /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
import ie from "async-validator";
|
|
2
|
+
import { ElMessage as x } from "element-plus";
|
|
3
|
+
import { getComponentRefByCode as y, getComponentRef as V, getAllComponentRefs as oe } from "../global-refs.mjs";
|
|
4
|
+
import { getI18n as g, isPromise as z, parseSubTablePermissionCondition as le } from "agilebuilder-ui";
|
|
5
|
+
import { getAdditionalParamMap as K } from "./standard-event.mjs";
|
|
6
|
+
import { getListCode as Q, isWorkflowPage as j } from "../common-util.mjs";
|
|
7
|
+
function ae(e, s, t) {
|
|
8
|
+
const i = {};
|
|
9
|
+
s || (s = {});
|
|
10
|
+
let n = 0;
|
|
11
|
+
const a = e.split(".");
|
|
12
|
+
return a.forEach((r) => {
|
|
13
|
+
let u;
|
|
14
|
+
if (n === a.length - 1) u = function(l, c, d) {
|
|
15
|
+
let f;
|
|
16
|
+
for (let o = 0; o < c.length && (f = o === 0 ? l[c[o]] : f.fields[c[o]], !(o !== c.length - 1 && c[o + 1] === d)); o++) ;
|
|
17
|
+
return f;
|
|
18
|
+
}(i, a, r), u.fields[r] = t;
|
|
19
|
+
else {
|
|
20
|
+
let l;
|
|
21
|
+
n === 0 ? u = s : (l = function(c, d, f) {
|
|
22
|
+
let o;
|
|
23
|
+
for (let p = 0; p < d.length; p++) {
|
|
24
|
+
const m = d[p];
|
|
25
|
+
if (o = p === 0 ? c[m] : o.fields[d[p]], m === f) break;
|
|
26
|
+
}
|
|
27
|
+
return o;
|
|
28
|
+
}(i, a, a[n - 1]), u = l.fields), u[r] || (u[r] = { type: "object", required: !0, fields: {} }), n === 0 ? i[r] = u[r] : l.fields[r] = u[r];
|
|
29
|
+
}
|
|
30
|
+
n++;
|
|
31
|
+
}), i;
|
|
32
|
+
}
|
|
33
|
+
function ue(e, s, t, i, n, a) {
|
|
34
|
+
return Y(e, s, t, i, !0, n, a);
|
|
35
|
+
}
|
|
36
|
+
function X(e) {
|
|
37
|
+
if (e) return Object.keys(e).forEach((s) => {
|
|
38
|
+
if (s.indexOf(".") >= 0) {
|
|
39
|
+
let t = [];
|
|
40
|
+
t = s.split("."), e[t[0]] ? e[t[0]].fields[t[1]] = e[s][0] : (e[t[0]] = new Object(), e[t[0]].fields = new Object(), e[t[0]].fields[t[1]] = e[s][0], e[t[0]].type = "object"), delete e[s];
|
|
41
|
+
}
|
|
42
|
+
}), e;
|
|
43
|
+
}
|
|
44
|
+
function Y(e, s, t, i, n, a, r) {
|
|
45
|
+
let u, l = X(s);
|
|
46
|
+
return s && s !== null || !t || (l = {}), !l || Object.keys(l).length === 0 ? (e.validateErrorField = "", !0) : (new ie(l).validate(e, { first: !0 }, (c, d) => {
|
|
47
|
+
let f;
|
|
48
|
+
if (c) {
|
|
49
|
+
u = c[0].message, f = c[0].field, x({ message: u, showClose: !0, type: "warning", duration: 3e3 });
|
|
50
|
+
const o = y(r, f);
|
|
51
|
+
o && o.addRequiredClass && o.addRequiredClass();
|
|
52
|
+
} else u = !0;
|
|
53
|
+
if (f && n === !0 && /[A-Z]+/.test(f) && e[f.toLowerCase()] !== void 0) {
|
|
54
|
+
const o = JSON.parse(JSON.stringify(e));
|
|
55
|
+
o[f.toUpperCase()] = e[f.toLowerCase()], delete o[f.toLowerCase()], u = Y(o, s, t, i, !1, a, r);
|
|
56
|
+
}
|
|
57
|
+
}), u);
|
|
58
|
+
}
|
|
59
|
+
function we(e, s, t) {
|
|
60
|
+
const i = e.entity.data, n = { ...e.entity.page, ...i }, a = e.rules, r = s.props.base ? s.props.base.isEnableRequired : null;
|
|
61
|
+
return r != null && (t = r), t == null && (t = !1), function(u, l, c, d) {
|
|
62
|
+
return u ? j(d) ? function(f, o, p) {
|
|
63
|
+
return new Promise((m, E) => {
|
|
64
|
+
const P = K(o), k = o.entity.context, se = o.entity.task, ne = !0, re = o.subTablePageInfo;
|
|
65
|
+
H(f, o, p).then((C) => {
|
|
66
|
+
if (C) {
|
|
67
|
+
let q, N, L, U, O = C;
|
|
68
|
+
const D = o.workflowRules;
|
|
69
|
+
if (D) {
|
|
70
|
+
if (!function(R, M) {
|
|
71
|
+
var $, I, W;
|
|
72
|
+
if (!R.actionPermissions) return !0;
|
|
73
|
+
const J = Object.keys(R.actionPermissions);
|
|
74
|
+
for (let S = 0; S < J.length; S++) {
|
|
75
|
+
const w = J[S], T = R.actionPermissions[w];
|
|
76
|
+
if (T && T.notEmpty) {
|
|
77
|
+
let A = !1;
|
|
78
|
+
if (M[w] ? Array.isArray(M[w]) && M[w].length === 0 && (A = !0) : A = !0, A) {
|
|
79
|
+
const B = y(R, w);
|
|
80
|
+
if (!B) return !0;
|
|
81
|
+
const Z = B.getConfigure();
|
|
82
|
+
return ($ = T.notEmptyCondition) != null && $.parentCondition && le(T.notEmptyCondition.parentCondition.replaceAll("${field[", "${parent["), R.dataTypeMaps, M, {}, (I = R.entity) == null ? void 0 : I.request, (W = R.entity) == null ? void 0 : W.task, R.contextParam) === !1 ? !0 : (x({ showClose: !0, message: g().t("superPageRuntimeMessage.xxxNotEmpty", { label: Z.title ? Z.title : w }), type: "warning" }), !1);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
return !0;
|
|
87
|
+
}(o, f)) return void m(!1);
|
|
88
|
+
const b = !0, h = Object.assign({}, D);
|
|
89
|
+
h.subRules && (Object.keys(h.subRules).length > 0 ? h.totalSubRules || (h.totalSubRules = {}) : delete h.subRules);
|
|
90
|
+
const v = window.$vueApp.config.globalProperties.$formValidator(f, h, ne, P, se, k, re, b);
|
|
91
|
+
O = v.msg, q = v.field, N = v.listCode, L = v.rowIndex, U = v.pageNum;
|
|
92
|
+
} else O = !0;
|
|
93
|
+
if (O !== !0) {
|
|
94
|
+
if (x({ showClose: !0, message: O + "", type: "warning" }), N) {
|
|
95
|
+
const b = y(o, N);
|
|
96
|
+
b && b.addRequiredClass && b.addRequiredClass(q, L, U);
|
|
97
|
+
} else {
|
|
98
|
+
const b = y(o, q);
|
|
99
|
+
b && b.addRequiredClass && b.addRequiredClass();
|
|
100
|
+
}
|
|
101
|
+
m(!1);
|
|
102
|
+
} else Object.keys(f).indexOf("validateErrorField") >= 0 && delete f.validateErrorField, m(f);
|
|
103
|
+
} else E(new Error(g().t("superPageRuntimeMessage.formDataVerificationFailed")).message);
|
|
104
|
+
}).catch((C) => {
|
|
105
|
+
E(C);
|
|
106
|
+
});
|
|
107
|
+
});
|
|
108
|
+
}(l, d, c) : function(f, o, p) {
|
|
109
|
+
return new Promise((m, E) => {
|
|
110
|
+
H(f, o, p).then((P) => {
|
|
111
|
+
if (P) {
|
|
112
|
+
const k = JSON.parse(JSON.stringify(f));
|
|
113
|
+
Object.keys(k).indexOf("validateErrorField") >= 0 && delete k.validateErrorField, m(k);
|
|
114
|
+
} else m(!1);
|
|
115
|
+
}).catch((P) => {
|
|
116
|
+
E(P);
|
|
117
|
+
});
|
|
118
|
+
});
|
|
119
|
+
}(l, d, c) : new Promise((f, o) => {
|
|
120
|
+
f(!0);
|
|
121
|
+
});
|
|
122
|
+
}(t, n, a, e);
|
|
123
|
+
}
|
|
124
|
+
function G(e) {
|
|
125
|
+
return new Promise((s, t) => {
|
|
126
|
+
const i = [], n = e.customValidatorUuids;
|
|
127
|
+
n && n.forEach((a) => {
|
|
128
|
+
const r = V(e, a);
|
|
129
|
+
r && r.validator && i.push(r.validator());
|
|
130
|
+
}), i && i.length > 0 ? Promise.all(i).then((a) => {
|
|
131
|
+
a.includes(!1) ? s(!1) : s(!0);
|
|
132
|
+
}) : s(!0);
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
function H(e, s, t) {
|
|
136
|
+
return new Promise((i, n) => {
|
|
137
|
+
const a = JSON.parse(JSON.stringify(e));
|
|
138
|
+
if (t && Object.keys(t).length !== 0)
|
|
139
|
+
if (ue(a, t, null, null, !0, s) === !0)
|
|
140
|
+
if (function(u) {
|
|
141
|
+
var c;
|
|
142
|
+
if (!u || j(u)) return !0;
|
|
143
|
+
const l = u.tableUuids;
|
|
144
|
+
if (!l) return !0;
|
|
145
|
+
for (let d = 0; d < l.length; d++) {
|
|
146
|
+
const f = l[d], o = V(u, f);
|
|
147
|
+
if (o) {
|
|
148
|
+
if (o.getConfigure()) {
|
|
149
|
+
const p = o.getConfigure();
|
|
150
|
+
if ((c = p == null ? void 0 : p.verification) != null && c.notEmpty) {
|
|
151
|
+
const m = o.getTableData();
|
|
152
|
+
if (!m || !Array.isArray(m) || m.length === 0) return x({ showClose: !0, message: g().t("superPageRuntimeMessage.xxxNotEmpty", { label: p.title ? p.title : p.code }), type: "warning" }), !1;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
if (!o.validatorSunTableListData()) return !1;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
return !0;
|
|
159
|
+
}(s) === !0) {
|
|
160
|
+
const u = function(l) {
|
|
161
|
+
const c = [];
|
|
162
|
+
return l.customRuleEvents && l.customRuleEvents.length > 0 && l.customRuleEvents.forEach((d) => {
|
|
163
|
+
d.events.forEach((f) => {
|
|
164
|
+
const o = l.customEvents[f];
|
|
165
|
+
c.push(o.apply(o, [{ prop: d.prop, pageContext: l }]));
|
|
166
|
+
});
|
|
167
|
+
}), c && c.length > 0 ? new Promise((d, f) => {
|
|
168
|
+
const o = [], p = [];
|
|
169
|
+
c.forEach((m) => {
|
|
170
|
+
z(m) ? o.push(m) : p.push(m);
|
|
171
|
+
}), p.includes(!1) && d(!1), o.length > 0 ? Promise.all(o).then((m) => {
|
|
172
|
+
m.includes(!1) ? d(!1) : d(!0);
|
|
173
|
+
}).catch((m) => {
|
|
174
|
+
console.error(m), d(!1);
|
|
175
|
+
}) : d(!0);
|
|
176
|
+
}) : null;
|
|
177
|
+
}(s);
|
|
178
|
+
u && z(u) ? u.then((l) => {
|
|
179
|
+
l ? G(s).then((c) => {
|
|
180
|
+
i(c);
|
|
181
|
+
}) : i(!1);
|
|
182
|
+
}) : G(s).then((l) => {
|
|
183
|
+
i(l);
|
|
184
|
+
});
|
|
185
|
+
} else n(new Error(g().t("superPageRuntimeMessage.tableListSubTableDataVerificationFailed")).message);
|
|
186
|
+
else n(new Error(g().t("superPageRuntimeMessage.formDataVerificationFailed")).message);
|
|
187
|
+
else i(!0);
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
function _(e, s, t) {
|
|
191
|
+
if (!s) return t;
|
|
192
|
+
t || (t = {});
|
|
193
|
+
const i = j(e), n = Object.keys(s), a = s;
|
|
194
|
+
return n.forEach((r) => {
|
|
195
|
+
if (r === "__subRules") {
|
|
196
|
+
const u = a.__subRules;
|
|
197
|
+
Object.keys(u).forEach((l) => {
|
|
198
|
+
t.subRules || (t.subRules = {}), t.subRules[l] ? Object.assign(t.subRules[l], u[l]) : t.subRules[l] = u[l];
|
|
199
|
+
});
|
|
200
|
+
} else ce(a[r]), i ? (t.rules[r] = a[r], t[r] && (t[r] = a[r])) : t[r] = a[r];
|
|
201
|
+
}), X(t);
|
|
202
|
+
}
|
|
203
|
+
function ye(e) {
|
|
204
|
+
if (!e || Object.keys(e).length === 0) return;
|
|
205
|
+
const s = {}, t = Object.keys(e);
|
|
206
|
+
for (let i = 0; i < t.length; i++) {
|
|
207
|
+
const n = t[i], a = e[n];
|
|
208
|
+
fe(a), n.indexOf(".") > 0 ? ae(n, s, a) : a && a.length > 0 && (s[n] = [...a]);
|
|
209
|
+
}
|
|
210
|
+
return s;
|
|
211
|
+
}
|
|
212
|
+
function fe(e, s) {
|
|
213
|
+
e.forEach((t) => {
|
|
214
|
+
const i = t.label, n = g().t(i);
|
|
215
|
+
t.required && (t.message = g().t("superPageRuntimeMessage.required", { label: n })), t.myType && (t.message = g().t("superPageRuntimeMessage.formatMismatch", { label: n })), t.patternType && (t.message = g().t("superPageRuntimeMessage.formatMismatch", { label: n })), t.max !== void 0 && t.max !== null && (t.message = g().t("superPageRuntimeMessage.overMaxLength", { label: n, value: t.max })), t.min !== void 0 && t.min !== null && (t.message = g().t("superPageRuntimeMessage.limitMinLength", { label: n, value: t.min }));
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
function Pe(e) {
|
|
219
|
+
const s = e.entity.data, t = { ...e.entity.page, ...s }, i = K(e), n = e.entity.context, a = e.entity.task;
|
|
220
|
+
e.formPropTiltleMap && Object.keys(e.formPropTiltleMap).length > 0 && e.completeTaskParam.fieldPermissions && e.completeTaskParam.fieldPermissions.length > 0 && e.completeTaskParam.fieldPermissions.forEach((l) => {
|
|
221
|
+
l.name && e.formPropTiltleMap[l.name] && (l.label = e.formPropTiltleMap[l.name]);
|
|
222
|
+
});
|
|
223
|
+
let r = window.$vueApp.config.globalProperties.$getValidator(e.completeTaskParam.fieldPermissions, t, !0, i, a, n);
|
|
224
|
+
const u = e.customRules;
|
|
225
|
+
return r = _(e, u, r), r && (r.rules || (r.rules = {}), r.subRules || (r.subRules = {})), r;
|
|
226
|
+
}
|
|
227
|
+
function ke(e, s) {
|
|
228
|
+
if (!s) return;
|
|
229
|
+
const t = {};
|
|
230
|
+
if (s.forEach((n) => {
|
|
231
|
+
const { name: a, rules: r } = n;
|
|
232
|
+
r ? t[a] = r : n.required === !1 && (t[a] = []);
|
|
233
|
+
}), j(e)) {
|
|
234
|
+
let n = e.workflowRules ? e.workflowRules : { rules: {}, subRules: {} };
|
|
235
|
+
n = _(e, t, n), e.workflowRules = n;
|
|
236
|
+
} else {
|
|
237
|
+
let n = e.rules ? e.rules : {};
|
|
238
|
+
n = _(e, t, n), e.rules = n;
|
|
239
|
+
}
|
|
240
|
+
const i = s.filter((n) => n.name === "_all_fields");
|
|
241
|
+
i && i.length > 0 && ee(e, i[0]), s.forEach((n) => {
|
|
242
|
+
if (n.name !== "_all_fields") {
|
|
243
|
+
const a = y(e, n.name);
|
|
244
|
+
te(e, a, n);
|
|
245
|
+
}
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
function ve(e) {
|
|
249
|
+
ee(e, { disabled: !0 });
|
|
250
|
+
}
|
|
251
|
+
function ee(e, s) {
|
|
252
|
+
const t = oe(e);
|
|
253
|
+
if (t) for (const i in t) {
|
|
254
|
+
const n = t[i];
|
|
255
|
+
te(e, n && n.value, s);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
function Ee(e, s, t) {
|
|
259
|
+
var l;
|
|
260
|
+
let i, n;
|
|
261
|
+
if (t ? (i = y(e, t), n = i ? i.getTableUuid() : null) : (n = e.tableUuids && e.tableUuids.length > 0 ? e.tableUuids[0] : null, i = n ? V(e, n) : null), !i) return;
|
|
262
|
+
const a = e.code, r = e.version, u = Q(a, r, n);
|
|
263
|
+
if (e.workflowRules || (e.workflowRules = { rules: {}, subRules: {} }), e.workflowRules.subRules || (e.workflowRules.subRules = {}), e.workflowRules.subRules[t] || (e.workflowRules.subRules[t] = {}), ((l = e.workflowRules) == null ? void 0 : l.subRules) && e.workflowRules.subRules[t]) {
|
|
264
|
+
const c = e.workflowRules.subRules[t];
|
|
265
|
+
s.forEach((d) => {
|
|
266
|
+
c[d.name] = d;
|
|
267
|
+
});
|
|
268
|
+
}
|
|
269
|
+
i.dynamicControlTableEdit(e, s, u);
|
|
270
|
+
}
|
|
271
|
+
function te(e, s, t) {
|
|
272
|
+
var i, n, a;
|
|
273
|
+
if (s) {
|
|
274
|
+
const r = s.getConfigure();
|
|
275
|
+
if (t.show !== void 0 && (t.show ? s.show() : s.hide()), t.required !== void 0 && ((i = r == null ? void 0 : r.runtime) != null && i.props) && (r.runtime.props.required = t.required), t.readonly !== void 0 && ((n = r == null ? void 0 : r.runtime) != null && n.props) && (t.readonly ? r.runtime.props.state = "readonly" : r.runtime.props.state = "enabled"), t.disabled !== void 0 && r && ((a = r == null ? void 0 : r.runtime) != null && a.props && (t.disabled ? r.runtime.props.state = "disabled" : r.runtime.props.state = "enabled"), r.name === "table")) {
|
|
276
|
+
s.changeOperationAddState(!1);
|
|
277
|
+
const u = s ? s.getTableUuid() : null, l = e.code, c = e.version, d = Q(l, c, u), f = [{ name: "_all_fields", disabled: !0 }];
|
|
278
|
+
s.dynamicControlTableEdit(e, f, d);
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
function ce(e) {
|
|
283
|
+
if (!(e != null && e.type)) return;
|
|
284
|
+
const s = de[e.type];
|
|
285
|
+
s && (e.validator = s.validator);
|
|
286
|
+
}
|
|
287
|
+
const de = { boolean: { validator: function(e, s, t) {
|
|
288
|
+
return F(e, s) === !0 && (typeof s == "number" && (s === 1 || s === 0) || typeof s == "boolean" && (s === !0 || s === !1));
|
|
289
|
+
} }, date: { validator: function(e, s, t) {
|
|
290
|
+
if (F(e, s) !== !0) return !1;
|
|
291
|
+
const i = new Date(s);
|
|
292
|
+
return !isNaN(i.getTime());
|
|
293
|
+
} }, number: { validator: function(e, s, t) {
|
|
294
|
+
return F(e, s) === !0 && (typeof s != "string" || s.trim() !== "") && (typeof s == "number" || !isNaN(Number(s)));
|
|
295
|
+
} } }, F = (e, s) => s != null && s !== "" || !e.required;
|
|
296
|
+
export {
|
|
297
|
+
ve as disabledAllFields,
|
|
298
|
+
Ee as dynamicControlTableEdit,
|
|
299
|
+
Pe as getWorkflowRules,
|
|
300
|
+
fe as i18nValidatePropRulesMessage,
|
|
301
|
+
ye as i18nValidateRulesMessage,
|
|
302
|
+
_ as packageCustomRules,
|
|
303
|
+
ce as packageCustomValidator,
|
|
304
|
+
ae as setObjectPropRule,
|
|
305
|
+
ke as updateFormItemEditState,
|
|
306
|
+
we as validateDataModelFunc,
|
|
307
|
+
ue as validator
|
|
308
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
function l(n, u, s) {
|
|
2
|
+
if (!n) return;
|
|
3
|
+
const a = [];
|
|
4
|
+
if (n.includes("today") && !["week", "month", "year"].includes(u)) {
|
|
5
|
+
const e = { text: "今天", value: () => /* @__PURE__ */ new Date() };
|
|
6
|
+
s.endsWith("range") && (e.value = () => [/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()]), a.push(e);
|
|
7
|
+
}
|
|
8
|
+
if (n.includes("yesterday") && !["week", "month", "year"].includes(u)) {
|
|
9
|
+
const e = /* @__PURE__ */ new Date();
|
|
10
|
+
e.setTime(e.getTime() - 864e5);
|
|
11
|
+
const t = { text: "昨天", value: () => e };
|
|
12
|
+
s.endsWith("range") && (t.value = () => [e, /* @__PURE__ */ new Date()]), a.push(t);
|
|
13
|
+
}
|
|
14
|
+
if (n.includes("oneWeek") && !["month", "year"].includes(u)) {
|
|
15
|
+
const e = /* @__PURE__ */ new Date();
|
|
16
|
+
e.setTime(e.getTime() - 6048e5);
|
|
17
|
+
const t = { text: "一周前", value: () => e };
|
|
18
|
+
s.endsWith("range") && (t.text = "一周", t.value = () => [e, /* @__PURE__ */ new Date()]), a.push(t);
|
|
19
|
+
}
|
|
20
|
+
if (n.includes("oneMonth") && !["year"].includes(u)) {
|
|
21
|
+
const e = /* @__PURE__ */ new Date();
|
|
22
|
+
e.getMonth() > 0 ? e.setMonth(e.getMonth() - 1) : (e.setMonth(12), e.setFullYear(e.getFullYear() - 1));
|
|
23
|
+
const t = { text: "一月前", value: () => e };
|
|
24
|
+
s.endsWith("range") && (t.text = "一月", t.value = () => [e, /* @__PURE__ */ new Date()]), a.push(t);
|
|
25
|
+
}
|
|
26
|
+
if (n.includes("oneYear")) {
|
|
27
|
+
const e = /* @__PURE__ */ new Date();
|
|
28
|
+
e.setFullYear(e.getFullYear() - 1);
|
|
29
|
+
const t = { text: "一年前", value: () => e };
|
|
30
|
+
s.endsWith("range") && (t.text = "一年", t.value = () => [e, /* @__PURE__ */ new Date()]), a.push(t);
|
|
31
|
+
}
|
|
32
|
+
return a;
|
|
33
|
+
}
|
|
34
|
+
export {
|
|
35
|
+
l as getDateShortCuts
|
|
36
|
+
};
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { http } from "agilebuilder-ui";
|
|
2
|
+
import { setValueForVariableName } from "../page-helper-util.mjs";
|
|
3
|
+
function formatScanRuleSets(a) {
|
|
4
|
+
const e = {};
|
|
5
|
+
return a.forEach((n) => {
|
|
6
|
+
n.type === "group" ? n.outs.forEach((c) => {
|
|
7
|
+
e[c.ruleCode] || (e[c.ruleCode] = { outs: [], adaptations: [] }), e[c.ruleCode].outs.push(c);
|
|
8
|
+
}) : e[n.code] = { outs: n.outs, adaptations: [] };
|
|
9
|
+
}), packageScanRuleSets(e);
|
|
10
|
+
}
|
|
11
|
+
function packageScanRuleSets(a) {
|
|
12
|
+
return new Promise((e, n) => {
|
|
13
|
+
Object.keys(a).length > 0 ? http.post(window.$vueApp.config.globalProperties.baseAPI + "/dc/setting-barcode-analysis/by-codes", Object.keys(a)).then((c) => {
|
|
14
|
+
c.forEach((t) => {
|
|
15
|
+
const o = JSON.parse(t.barcodeAnalysisOuts), s = /* @__PURE__ */ new Set(), l = {};
|
|
16
|
+
a[t.code].outs.forEach((r) => {
|
|
17
|
+
s.add(r.returnedValue), l[r.returnedValue] = r.pageVariable;
|
|
18
|
+
});
|
|
19
|
+
const u = [];
|
|
20
|
+
o.forEach((r) => {
|
|
21
|
+
s.has(r.code) && (r.pageVariable = l[r.code], u.push(r));
|
|
22
|
+
}), a[t.code].outs = u, a[t.code].adaptations = JSON.parse(t.barcodeAnalysisAdaptations), e(a);
|
|
23
|
+
});
|
|
24
|
+
}) : e(null);
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
function analysisScanValue(scanValue, scanRuleSets) {
|
|
28
|
+
if (!scanValue) return null;
|
|
29
|
+
const scanSets = Object.values(scanRuleSets);
|
|
30
|
+
for (let i = 0; i < scanSets.length; i++) {
|
|
31
|
+
const scanSet = scanSets[i], adaptations = scanSet.adaptations;
|
|
32
|
+
let validStr = "";
|
|
33
|
+
for (let a = 0; a < adaptations.length; a++) {
|
|
34
|
+
const e = adaptations[a], n = _getScanIndexs(scanValue, e.startIndex, e.endIndex), c = n[0], t = n[1];
|
|
35
|
+
let o = scanValue.substring(c, t), s = e.value, l = e.operate;
|
|
36
|
+
if (l == "times" && (s = o.split(s ?? "").length - 1, o = e.times, l = "="), (isNaN(o) || isNaN(s)) && (o = "'" + o + "'", s = "'" + s + "'"), e.leftBracket && (validStr += e.leftBracket), l == "<>" ? l = "!=" : l == "=" && (l = "=="), l == "include" || l == "notinclude" ? (validStr += o + ".indexOf(" + s + ")", validStr += l == "include" ? ">-1" : "<0") : validStr += o + l + s, e.rightBracket && (validStr += e.rightBracket), e.joinStr && a + 1 < adaptations.length) {
|
|
37
|
+
const u = e.joinStr == "and" ? "&&" : "||";
|
|
38
|
+
validStr += u;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
let res = !1;
|
|
42
|
+
if (validStr) try {
|
|
43
|
+
res = eval("(" + validStr + ")");
|
|
44
|
+
} catch (a) {
|
|
45
|
+
}
|
|
46
|
+
else res = !0;
|
|
47
|
+
if (res) return executeAnalysisForScan(scanValue, scanSet);
|
|
48
|
+
}
|
|
49
|
+
return null;
|
|
50
|
+
}
|
|
51
|
+
function executeAnalysisForScan(a, e) {
|
|
52
|
+
if (!e || !a) return;
|
|
53
|
+
const n = e.outs, c = {};
|
|
54
|
+
return n.forEach((t) => {
|
|
55
|
+
const o = t.fieldName;
|
|
56
|
+
if (t.fixedValue != null) c[o] = t.fixedValue;
|
|
57
|
+
else {
|
|
58
|
+
let s = a;
|
|
59
|
+
if (t.splitChar && t.splitNum) {
|
|
60
|
+
const l = (t.splitChar, t.splitChar), u = a.split(l), r = t.splitNum < 1 ? 1 : t.splitNum;
|
|
61
|
+
s = r <= u.length ? u[r - 1] : "";
|
|
62
|
+
}
|
|
63
|
+
if (t.splitChar2 && t.splitNum2) {
|
|
64
|
+
const l = (t.splitChar2, t.splitChar2), u = s.split(l), r = t.splitNum2 < 1 ? 1 : t.splitNum2;
|
|
65
|
+
s = r <= u.length ? u[r - 1] : "";
|
|
66
|
+
}
|
|
67
|
+
if (s.length > 0) {
|
|
68
|
+
const l = _getScanIndexs(s, t.startIndex, t.endIndex), u = l[0], r = l[1];
|
|
69
|
+
s = s.substring(u, r);
|
|
70
|
+
}
|
|
71
|
+
c[o] = s;
|
|
72
|
+
}
|
|
73
|
+
}), { value: a, params: c, scanSet: e };
|
|
74
|
+
}
|
|
75
|
+
function _getScanIndexs(a, e, n) {
|
|
76
|
+
return e = (e = (e = e == null ? 0 : e - 1) < 0 ? 0 : e) > a.length - 1 ? a.length - 1 : e, (n = (n = (n = n ?? a.length) > a.length ? a.length : n) < 1 ? 1 : n) < e && (n = e), [e, n];
|
|
77
|
+
}
|
|
78
|
+
function setScanAnalysisValue(a, e, n) {
|
|
79
|
+
e && e.outs.forEach((c) => {
|
|
80
|
+
const t = c.fieldName, o = n[t];
|
|
81
|
+
setValueForVariableName(a.entity, c.pageVariable, o);
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
export {
|
|
85
|
+
analysisScanValue,
|
|
86
|
+
formatScanRuleSets,
|
|
87
|
+
setScanAnalysisValue
|
|
88
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
window.globalRefs || (window.globalRefs = {});
|
|
2
|
+
const t = window.globalRefs;
|
|
3
|
+
function c(n, e, r) {
|
|
4
|
+
if (!n) return;
|
|
5
|
+
const o = i(n.code, n.version);
|
|
6
|
+
return t[o] || (t[o] = {}), t[o][e] = r, t[o];
|
|
7
|
+
}
|
|
8
|
+
function f(n, e, r) {
|
|
9
|
+
if (!n) return;
|
|
10
|
+
const o = s(n.code, n.version);
|
|
11
|
+
return t[o] || (t[o] = {}), t[o][e] = r, t[o];
|
|
12
|
+
}
|
|
13
|
+
function u(n, e) {
|
|
14
|
+
if (!n || !e) return;
|
|
15
|
+
const r = i(n.code, n.version);
|
|
16
|
+
t[r] || (t[r] = {});
|
|
17
|
+
const o = t[r][e];
|
|
18
|
+
return o && o.value;
|
|
19
|
+
}
|
|
20
|
+
function a(n, e) {
|
|
21
|
+
if (!n) return;
|
|
22
|
+
const r = s(n.code, n.version);
|
|
23
|
+
t[r] || (t[r] = {});
|
|
24
|
+
const o = t[r][e];
|
|
25
|
+
return o && o.value;
|
|
26
|
+
}
|
|
27
|
+
function d(n) {
|
|
28
|
+
if (!n) return;
|
|
29
|
+
const e = i(n.code, n.version);
|
|
30
|
+
t[e] = {};
|
|
31
|
+
}
|
|
32
|
+
function l(n) {
|
|
33
|
+
if (!n) return;
|
|
34
|
+
const e = i(n.code, n.version);
|
|
35
|
+
t[e] = {};
|
|
36
|
+
}
|
|
37
|
+
function i(n, e) {
|
|
38
|
+
return "pageRuntimeRef-" + n + "-" + (e || 1);
|
|
39
|
+
}
|
|
40
|
+
function s(n, e) {
|
|
41
|
+
return i(n, e) + "-code";
|
|
42
|
+
}
|
|
43
|
+
function R(n) {
|
|
44
|
+
if (!n) return;
|
|
45
|
+
const e = s(n.code, n.version);
|
|
46
|
+
return t[e] || (t[e] = {}), t[e];
|
|
47
|
+
}
|
|
48
|
+
export {
|
|
49
|
+
c as addComponentRef,
|
|
50
|
+
f as addComponentRefByCode,
|
|
51
|
+
R as getAllComponentRefs,
|
|
52
|
+
u as getComponentRef,
|
|
53
|
+
a as getComponentRefByCode,
|
|
54
|
+
l as initComponentRefState,
|
|
55
|
+
d as removePageAllRef
|
|
56
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { usePageContextStore as l } from "./page-store.mjs";
|
|
2
|
+
import { i18nUtil as m } from "agilebuilder-ui";
|
|
3
|
+
import { useI18n as u } from "vue-i18n";
|
|
4
|
+
let e = null, o = null;
|
|
5
|
+
const C = (t, ...a) => {
|
|
6
|
+
o || (o = u());
|
|
7
|
+
const n = l().pageContext;
|
|
8
|
+
if (e === null && (e = !!m.getEnableI18nState(n.systemCode)), !e) return t;
|
|
9
|
+
const s = `${n.systemCode}.${t}`, r = o.t(s, a || []);
|
|
10
|
+
return r !== s ? r : t;
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
C as $t
|
|
14
|
+
};
|