super-page-runtime 2.3.36-cdnTmp1 → 2.3.36-sit2
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.js +8 -0
- package/dist/es/components/runtime/utils/ai-chat-util.js +16 -0
- package/dist/es/components/runtime/utils/anchor-util.js +84 -0
- package/dist/es/components/runtime/utils/api/api-util.js +4 -0
- package/dist/es/components/runtime/utils/api/page-expose-util.js +190 -0
- package/dist/es/components/runtime/utils/assemblys-config.js +20 -0
- package/dist/es/components/runtime/utils/barcode-util.js +12 -0
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +168 -0
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +38 -0
- package/dist/es/components/runtime/utils/charts/chart-pie-util.js +82 -0
- package/dist/es/components/runtime/utils/charts/chart-radar-util.js +56 -0
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +47 -0
- package/dist/es/components/runtime/utils/charts/chart-util.js +288 -0
- package/dist/es/components/runtime/utils/common-util.js +120 -0
- package/dist/es/components/runtime/utils/eventBus.js +5 -0
- package/dist/es/components/runtime/utils/events/data-backfill-util.js +39 -0
- package/dist/es/components/runtime/utils/events/event-util.js +427 -0
- package/dist/es/components/runtime/utils/events/print-label.js +99 -0
- package/dist/es/components/runtime/utils/events/standard-event.js +1221 -0
- package/dist/es/components/runtime/utils/events/validator-util.js +326 -0
- package/dist/es/components/runtime/utils/form/date-shortcuts.js +36 -0
- package/dist/es/components/runtime/utils/form/scan-util.js +93 -0
- package/dist/es/components/runtime/utils/global-refs.js +57 -0
- package/dist/es/components/runtime/utils/i18n-util.js +14 -0
- package/dist/es/components/runtime/utils/interfaces/page-design-types.js +4 -0
- package/dist/es/components/runtime/utils/page-helper-util.js +387 -0
- package/dist/es/components/runtime/utils/page-init-util.js +278 -0
- package/dist/es/components/runtime/utils/{page-permission-util.mjs → page-permission-util.js} +21 -20
- package/dist/es/components/runtime/utils/page-store.js +53 -0
- package/dist/es/components/runtime/utils/store-util.js +13 -0
- package/dist/es/components/runtime/utils/table-utils.js +89 -0
- package/dist/es/components/runtime/utils/tree-utils.js +73 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +29 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +21 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +41 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +6 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +21 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +53 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +14 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +9 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +58 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +64 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +46 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +414 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +6 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +10 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +46 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +15 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +258 -0
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +20 -0
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +34 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +35 -0
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +32 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +17 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +23 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +18 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +35 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +19 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +29 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +21 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +18 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +29 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +79 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +25 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +20 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +46 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +96 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +47 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +67 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +382 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +327 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +85 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +134 -0
- package/dist/es/components/runtime/views/assemblys/error-render.vue.js +5 -0
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +64 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +38 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +69 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +102 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +55 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +24 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +93 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +28 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +81 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +36 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +41 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +16 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +82 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +8 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +199 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +155 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +16 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +36 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +44 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +28 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +83 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue.js +151 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +6 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +26 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +28 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +45 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +20 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +23 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +24 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +27 -0
- package/dist/es/components/runtime/views/home-chart.vue.js +47 -0
- package/dist/es/components/runtime/views/home-chart.vue2.js +4 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +25 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue3.js +5 -0
- package/dist/es/components/runtime/views/super-page.vue.js +7 -0
- package/dist/es/components/runtime/views/super-page.vue2.js +295 -0
- package/dist/es/i18n/langs/{cn.mjs → cn.js} +1 -1
- package/dist/es/i18n/langs/{en.mjs → en.js} +1 -1
- package/dist/es/index.js +30 -0
- package/dist/es/style.css +1025 -1
- package/package.json +75 -77
- package/dist/es/_virtual/_plugin-vue_export-helper.mjs +0 -8
- package/dist/es/components/runtime/utils/ai-chat-util.mjs +0 -16
- package/dist/es/components/runtime/utils/anchor-util.mjs +0 -83
- package/dist/es/components/runtime/utils/api/page-expose-util.mjs +0 -184
- package/dist/es/components/runtime/utils/assemblys-config.mjs +0 -19
- package/dist/es/components/runtime/utils/barcode-util.mjs +0 -12
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +0 -169
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +0 -38
- package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +0 -83
- package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +0 -56
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +0 -47
- package/dist/es/components/runtime/utils/charts/chart-util.mjs +0 -285
- package/dist/es/components/runtime/utils/common-util.mjs +0 -116
- package/dist/es/components/runtime/utils/eventBus.mjs +0 -5
- package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +0 -38
- package/dist/es/components/runtime/utils/events/event-util.mjs +0 -411
- package/dist/es/components/runtime/utils/events/print-label.mjs +0 -100
- package/dist/es/components/runtime/utils/events/standard-event.mjs +0 -1164
- package/dist/es/components/runtime/utils/events/validator-util.mjs +0 -308
- package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +0 -36
- package/dist/es/components/runtime/utils/form/scan-util.mjs +0 -88
- package/dist/es/components/runtime/utils/global-refs.mjs +0 -56
- package/dist/es/components/runtime/utils/i18n-util.mjs +0 -14
- package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +0 -4
- package/dist/es/components/runtime/utils/page-helper-util.mjs +0 -377
- package/dist/es/components/runtime/utils/page-init-util.mjs +0 -260
- package/dist/es/components/runtime/utils/page-store.mjs +0 -53
- package/dist/es/components/runtime/utils/store-util.mjs +0 -13
- package/dist/es/components/runtime/utils/table-utils.mjs +0 -84
- package/dist/es/components/runtime/utils/tree-utils.mjs +0 -58
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.mjs +0 -29
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.mjs +0 -21
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.mjs +0 -41
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +0 -6
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +0 -20
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.mjs +0 -53
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +0 -14
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +0 -13
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +0 -59
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +0 -52
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.mjs +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.mjs +0 -46
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.mjs +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.mjs +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +0 -408
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +0 -6
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +0 -10
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +0 -33
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +0 -15
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.mjs +0 -252
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +0 -20
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +0 -35
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +0 -33
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +0 -18
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +0 -18
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +0 -22
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +0 -19
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +0 -35
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +0 -19
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.mjs +0 -29
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.mjs +0 -20
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.mjs +0 -17
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.mjs +0 -29
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.mjs +0 -81
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.mjs +0 -25
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.mjs +0 -20
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +0 -43
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.mjs +0 -96
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.mjs +0 -46
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.mjs +0 -69
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +0 -361
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +0 -320
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.mjs +0 -83
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.mjs +0 -132
- package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +0 -5
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.mjs +0 -63
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +0 -36
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.mjs +0 -69
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.mjs +0 -102
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.mjs +0 -55
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.mjs +0 -24
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.mjs +0 -91
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.mjs +0 -28
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.mjs +0 -80
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.mjs +0 -37
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.mjs +0 -42
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.mjs +0 -16
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.mjs +0 -82
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +0 -8
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.mjs +0 -195
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.mjs +0 -150
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.mjs +0 -16
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.mjs +0 -36
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.mjs +0 -43
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.mjs +0 -28
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +0 -72
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +0 -141
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +0 -6
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.mjs +0 -26
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.mjs +0 -28
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.mjs +0 -45
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.mjs +0 -20
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.mjs +0 -23
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.mjs +0 -23
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +0 -27
- package/dist/es/components/runtime/views/home-chart.vue.mjs +0 -46
- package/dist/es/components/runtime/views/home-chart.vue2.mjs +0 -4
- package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +0 -26
- package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +0 -5
- package/dist/es/components/runtime/views/super-page.vue.mjs +0 -7
- package/dist/es/components/runtime/views/super-page.vue2.mjs +0 -289
- package/dist/es/index.mjs +0 -30
- package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +0 -1
- package/dist/lib/assets/chart-themes/bar-theme.cjs +0 -1
- package/dist/lib/assets/chart-themes/bar-theme.d.ts +0 -6
- package/dist/lib/assets/chart-themes/gauge-theme.cjs +0 -1
- package/dist/lib/assets/chart-themes/gauge-theme.d.ts +0 -6
- package/dist/lib/assets/chart-themes/pie-theme.cjs +0 -1
- package/dist/lib/assets/chart-themes/pie-theme.d.ts +0 -6
- package/dist/lib/assets/chart-themes/radar-theme.cjs +0 -1
- package/dist/lib/assets/chart-themes/radar-theme.d.ts +0 -6
- package/dist/lib/assets/chart-themes/scatter-theme.cjs +0 -1
- package/dist/lib/assets/chart-themes/scatter-theme.d.ts +0 -6
- package/dist/lib/assets/file.png.cjs +0 -1
- package/dist/lib/assets/folder.png.cjs +0 -1
- package/dist/lib/components/runtime/index.d.ts +0 -5
- package/dist/lib/components/runtime/utils/ai-chat-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/anchor-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/anchor-util.d.ts +0 -13
- package/dist/lib/components/runtime/utils/api/api-util.d.ts +0 -1
- package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +0 -1
- package/dist/lib/components/runtime/utils/assemblys-config.cjs +0 -1
- package/dist/lib/components/runtime/utils/barcode-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/barcode-util.d.ts +0 -8
- package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +0 -2
- package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +0 -2
- package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/charts/chart-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +0 -115
- package/dist/lib/components/runtime/utils/common-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/common-util.d.ts +0 -33
- package/dist/lib/components/runtime/utils/eventBus.cjs +0 -1
- package/dist/lib/components/runtime/utils/eventBus.d.ts +0 -7
- package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +0 -27
- package/dist/lib/components/runtime/utils/events/event-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/events/event-util.d.ts +0 -93
- package/dist/lib/components/runtime/utils/events/print-label.cjs +0 -1
- package/dist/lib/components/runtime/utils/events/print-label.d.ts +0 -5
- package/dist/lib/components/runtime/utils/events/standard-event.cjs +0 -1
- package/dist/lib/components/runtime/utils/events/standard-event.d.ts +0 -99
- package/dist/lib/components/runtime/utils/events/validator-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/events/validator-util.d.ts +0 -24
- package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +0 -1
- package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +0 -7
- package/dist/lib/components/runtime/utils/form/scan-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/global-refs.cjs +0 -1
- package/dist/lib/components/runtime/utils/global-refs.d.ts +0 -65
- package/dist/lib/components/runtime/utils/i18n-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/i18n-util.d.ts +0 -1
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +0 -1
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +0 -259
- package/dist/lib/components/runtime/utils/page-helper-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/page-helper-util.d.ts +0 -174
- package/dist/lib/components/runtime/utils/page-init-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/page-init-util.d.ts +0 -49
- package/dist/lib/components/runtime/utils/page-permission-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/page-permission-util.d.ts +0 -26
- package/dist/lib/components/runtime/utils/page-store.cjs +0 -1
- package/dist/lib/components/runtime/utils/page-store.d.ts +0 -58
- package/dist/lib/components/runtime/utils/store-util.cjs +0 -1
- package/dist/lib/components/runtime/utils/store-util.d.ts +0 -15
- package/dist/lib/components/runtime/utils/store.cjs +0 -1
- package/dist/lib/components/runtime/utils/store.d.ts +0 -2
- package/dist/lib/components/runtime/utils/table-utils.cjs +0 -1
- package/dist/lib/components/runtime/utils/table-utils.d.ts +0 -36
- package/dist/lib/components/runtime/utils/tree-utils.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +0 -121
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +0 -5
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +0 -28
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +0 -27
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +0 -59
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +0 -35
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +0 -26
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +0 -35
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +0 -31
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +0 -26
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +0 -94
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +0 -22
- package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +0 -17
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +0 -17
- package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +0 -14
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +0 -14
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/home-chart.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/home-chart.vue.d.ts +0 -23
- package/dist/lib/components/runtime/views/home-chart.vue2.cjs +0 -1
- package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +0 -40
- package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +0 -1
- package/dist/lib/components/runtime/views/super-page.vue.cjs +0 -1
- package/dist/lib/components/runtime/views/super-page.vue.d.ts +0 -135
- package/dist/lib/components/runtime/views/super-page.vue2.cjs +0 -1
- package/dist/lib/favicon.ico +0 -0
- package/dist/lib/i18n/langs/cn.cjs +0 -1
- package/dist/lib/i18n/langs/en.cjs +0 -1
- package/dist/lib/index.cjs +0 -1
- package/dist/lib/index.d.ts +0 -16
- package/dist/lib/style.css +0 -1
- /package/dist/es/assets/chart-themes/{bar-theme.mjs → bar-theme.js} +0 -0
- /package/dist/es/assets/chart-themes/{gauge-theme.mjs → gauge-theme.js} +0 -0
- /package/dist/es/assets/chart-themes/{pie-theme.mjs → pie-theme.js} +0 -0
- /package/dist/es/assets/chart-themes/{radar-theme.mjs → radar-theme.js} +0 -0
- /package/dist/es/assets/chart-themes/{scatter-theme.mjs → scatter-theme.js} +0 -0
- /package/dist/es/assets/{file.png.mjs → file.png.js} +0 -0
- /package/dist/es/assets/{folder.png.mjs → folder.png.js} +0 -0
- /package/dist/es/components/runtime/utils/{store.mjs → store.js} +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { setActiveMenuToChatAiStore as e, setPageInfoToChatStore as t } from "agilebuilder-ui/src/utils/chat-ai-util.ts";
|
|
2
|
+
import { functions as o } from "./api/page-expose-util.js";
|
|
3
|
+
function a(e2) {
|
|
4
|
+
const t2 = o.getFormViewData(e2), a2 = e2.propTitleMap, r2 = {};
|
|
5
|
+
for (const e3 in t2) Array.isArray(t2[e3]) || a2 && a2[e3] && (r2[a2[e3]] = t2[e3]);
|
|
6
|
+
return r2;
|
|
7
|
+
}
|
|
8
|
+
function r(o2, a2) {
|
|
9
|
+
o2 && (e({ menuCode: a2.menuCode, menuName: a2.label }), t(a2, { instance: o2, exposeProxy: o2.exposeProxy, pageType: a2.pageType }));
|
|
10
|
+
}
|
|
11
|
+
const i = { getFormFormatDataUtil: a, setPageToChatStore: r };
|
|
12
|
+
export {
|
|
13
|
+
i as default,
|
|
14
|
+
a as getFormFormatDataUtil,
|
|
15
|
+
r as setPageToChatStore
|
|
16
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { caculateShowCondition as e } from "./page-helper-util.js";
|
|
2
|
+
import { getComponentRefByCode as t, getComponentRef as n } from "./global-refs.js";
|
|
3
|
+
import { nextTick as o } from "vue";
|
|
4
|
+
function c(e2, t2) {
|
|
5
|
+
const c2 = n(e2, t2);
|
|
6
|
+
c2 && o(() => {
|
|
7
|
+
m(c2);
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
function l(e2, n2) {
|
|
11
|
+
const c2 = t(e2, n2);
|
|
12
|
+
c2 && o(() => {
|
|
13
|
+
m(c2);
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
function i(t2, o2) {
|
|
17
|
+
if (t2 && 0 !== t2.length) for (let c2 = 0; c2 < t2.length; c2++) {
|
|
18
|
+
const { uuid: l2, conditions: i2 } = t2[c2];
|
|
19
|
+
if (e(o2, i2)) {
|
|
20
|
+
r(() => {
|
|
21
|
+
const e2 = n(o2, l2);
|
|
22
|
+
e2 && m(e2);
|
|
23
|
+
});
|
|
24
|
+
break;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
function r(e2, t2 = {}) {
|
|
29
|
+
const { checkInterval: n2 = 50, stableCount: c2 = 10, maxWaitTime: l2 = 3e3 } = t2;
|
|
30
|
+
let i2 = -1, r2 = 0, m2 = 0;
|
|
31
|
+
const u2 = () => {
|
|
32
|
+
const t3 = document.documentElement.scrollHeight || document.body.scrollHeight;
|
|
33
|
+
if (t3 === i2) {
|
|
34
|
+
if (r2++, r2 >= c2) return void o(() => {
|
|
35
|
+
e2();
|
|
36
|
+
});
|
|
37
|
+
} else i2 = t3, r2 = 0;
|
|
38
|
+
m2 += n2, m2 >= l2 ? o(() => {
|
|
39
|
+
e2();
|
|
40
|
+
}) : setTimeout(u2, n2);
|
|
41
|
+
};
|
|
42
|
+
o(() => {
|
|
43
|
+
u2();
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
function m(e2) {
|
|
47
|
+
const t2 = function(e3) {
|
|
48
|
+
let t3 = null;
|
|
49
|
+
return e3 && e3.$el ? t3 = e3.$el : e3 instanceof HTMLElement && (t3 = e3), t3 && t3.nodeType !== Node.ELEMENT_NODE && (t3 = t3.nextElementSibling || t3.parentElement), t3 instanceof HTMLElement ? t3 : null;
|
|
50
|
+
}(e2);
|
|
51
|
+
if (!t2) return;
|
|
52
|
+
const n2 = t2.getBoundingClientRect(), o2 = function(e3) {
|
|
53
|
+
const t3 = [];
|
|
54
|
+
let n3 = e3.parentElement;
|
|
55
|
+
for (; n3; ) {
|
|
56
|
+
const e4 = window.getComputedStyle(n3).overflowY;
|
|
57
|
+
("auto" === e4 || "scroll" === e4) && n3.scrollHeight > n3.clientHeight && t3.push(n3), n3 = n3.parentElement;
|
|
58
|
+
}
|
|
59
|
+
document.documentElement.scrollHeight > document.documentElement.clientHeight && t3.push(document.documentElement);
|
|
60
|
+
return t3;
|
|
61
|
+
}(t2);
|
|
62
|
+
for (const e3 of o2) if (e3 === document.documentElement || e3 === document.body) {
|
|
63
|
+
const t3 = window.pageYOffset || document.documentElement.scrollTop;
|
|
64
|
+
u(e3, Math.max(0, n2.top + t3 - 100));
|
|
65
|
+
} else {
|
|
66
|
+
const t3 = e3.getBoundingClientRect(), o3 = n2.top - t3.top + e3.scrollTop;
|
|
67
|
+
u(e3, Math.max(0, o3 - 100));
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
function u(e2, t2) {
|
|
71
|
+
if ("scrollBehavior" in document.documentElement.style) return void e2.scrollTo({ top: t2, behavior: "smooth" });
|
|
72
|
+
const n2 = e2.scrollTop, o2 = t2 - n2;
|
|
73
|
+
if (Math.abs(o2) < 1) return;
|
|
74
|
+
const c2 = performance.now ? performance.now() : Date.now();
|
|
75
|
+
requestAnimationFrame(function t3() {
|
|
76
|
+
const l2 = (performance.now ? performance.now() : Date.now()) - c2, i2 = Math.min(l2 / 300, 1), r2 = i2 < 0.5 ? 4 * i2 * i2 * i2 : 1 - Math.pow(-2 * i2 + 2, 3) / 2;
|
|
77
|
+
e2.scrollTop = n2 + o2 * r2, i2 < 1 && requestAnimationFrame(t3);
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
export {
|
|
81
|
+
l as scrollIntoComponentWithCode,
|
|
82
|
+
c as scrollIntoComponentWithUuid,
|
|
83
|
+
i as scrollIntoViewWithContainer
|
|
84
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ElMessage as e, ElMessageBox as s } from "element-plus";
|
|
2
|
+
import { functions as o } from "./page-expose-util.js";
|
|
3
|
+
import { standardEvents as t } from "../events/standard-event.js";
|
|
4
|
+
o.standardEvents = t, window.$PageUtil = o, window.$message = e, window.$messageBox = s;
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
import { getOptionDatasSourceMap as t, getComponentOptionDatasFromPage as e, getVariableValue as n, setVariableValue as i, setValueForVariableName as o } from "../page-helper-util.js";
|
|
2
|
+
import { getComponentRef as a, getComponentRefByCode as r } from "../global-refs.js";
|
|
3
|
+
import s from "../eventBus.js";
|
|
4
|
+
import l from "agilebuilder-ui/src/utils/request";
|
|
5
|
+
import { getFormData as c, getAdditionalParamMap as u, refreshPage as m } from "../events/standard-event.js";
|
|
6
|
+
import { dynamicControlTableEdit as f, disabledAllFields as p, updateFormItemEditState as d } from "../events/validator-util.js";
|
|
7
|
+
import { deepCopy as g, getBaseUrl as y } from "../common-util.js";
|
|
8
|
+
import { replacePrefix as b, isMobileBrowser as h } from "agilebuilder-ui/src/utils/common-util";
|
|
9
|
+
import { getFormModelFields as E, getModelFields as C } from "../page-init-util.js";
|
|
10
|
+
import { getCustomFunc as P } from "../events/event-util.js";
|
|
11
|
+
import { isHasFieldPermissionAuth as T } from "../table-utils.js";
|
|
12
|
+
import { scrollIntoComponentWithCode as k, scrollIntoComponentWithUuid as v } from "../anchor-util.js";
|
|
13
|
+
const V = { showElement: function(t2, e2, n2) {
|
|
14
|
+
n2 ? O(t2, "showElement", e2) : e2.forEach((e3) => {
|
|
15
|
+
const n3 = r(t2, e3);
|
|
16
|
+
n3 && n3.show();
|
|
17
|
+
});
|
|
18
|
+
}, hideElement: function(t2, e2, n2) {
|
|
19
|
+
n2 ? O(t2, "hideElement", e2) : e2.forEach((e3) => {
|
|
20
|
+
const n3 = r(t2, e3);
|
|
21
|
+
n3 && n3.hide();
|
|
22
|
+
});
|
|
23
|
+
}, enableElement: function(t2, e2, n2) {
|
|
24
|
+
n2 ? O(t2, "enableElement", e2) : e2.forEach((e3) => {
|
|
25
|
+
const n3 = r(t2, e3);
|
|
26
|
+
if (n3) {
|
|
27
|
+
const t3 = n3.getConfigure();
|
|
28
|
+
t3 && t3.runtime.props && (t3.runtime.props.state = "enabled");
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
}, disableElement: function(t2, e2, n2) {
|
|
32
|
+
n2 ? O(t2, "disableElement", e2) : e2.forEach((e3) => {
|
|
33
|
+
const n3 = r(t2, e3);
|
|
34
|
+
if (n3) {
|
|
35
|
+
const t3 = n3.getConfigure();
|
|
36
|
+
t3 && t3.runtime.props && (t3.runtime.props.state = "disabled");
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
}, setEntityDataValue: function(t2, e2) {
|
|
40
|
+
Object.keys(e2).forEach((n2) => {
|
|
41
|
+
o(t2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", e2[n2]);
|
|
42
|
+
});
|
|
43
|
+
}, setEntityPageValue: function(t2, e2) {
|
|
44
|
+
Object.keys(e2).forEach((n2) => {
|
|
45
|
+
o(t2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", e2[n2]);
|
|
46
|
+
});
|
|
47
|
+
}, setEntityValueByType: function(t2, e2, n2) {
|
|
48
|
+
Object.keys(n2).forEach((i2) => {
|
|
49
|
+
o(t2.entity, i2.startsWith("${") ? i2 : "${" + e2 + "." + i2 + "}", n2[i2]);
|
|
50
|
+
});
|
|
51
|
+
}, dynamicControlFormEdit: function(t2, e2, n2) {
|
|
52
|
+
n2 ? O(t2, "dynamicControlFormEdit", e2) : d(t2, e2);
|
|
53
|
+
}, disabledAllFields(t2) {
|
|
54
|
+
p(t2);
|
|
55
|
+
}, dynamicControlTableEdit(t2, e2, n2) {
|
|
56
|
+
f(t2, e2, n2);
|
|
57
|
+
}, executeServiceFlow: function(t2, e2, n2) {
|
|
58
|
+
const i2 = t2.code;
|
|
59
|
+
n2 || (n2 = { entity: t2.entity.data, serviceVariables: {}, requestParams: u(t2), taskParamMap: t2.entity.task, dynamicDimensionValue: [], dynamicSortValue: "" }), n2.entity || (n2.entity = t2.entity.data), n2.requestParams || (n2.requestParams = u(t2)), n2.taskParamMap || (n2.taskParamMap = t2.entity.task);
|
|
60
|
+
const o2 = t2.backendUrl, a2 = y(o2, t2.isTest);
|
|
61
|
+
return l.post(`${a2}/dsc/service-flow/execute/${i2}/${e2}`, n2);
|
|
62
|
+
}, openPage: function(t2, e2) {
|
|
63
|
+
s.$emit(t2.code + "_open-dialog", { pageContext: t2, eventParams: e2.eventParams, configureObj: { props: { linkPage: e2 } } });
|
|
64
|
+
}, refreshPage: function(t2, e2) {
|
|
65
|
+
m(t2, e2);
|
|
66
|
+
}, refreshSubTableHandle: function(t2, e2) {
|
|
67
|
+
let n2;
|
|
68
|
+
const i2 = r(t2, e2);
|
|
69
|
+
if (i2) {
|
|
70
|
+
const t3 = i2.getConfigure();
|
|
71
|
+
t3 && t3.uuid && t3.name && "table" === t3.name && (n2 = t3.uuid);
|
|
72
|
+
}
|
|
73
|
+
n2 && s.$emit("_refreshSubTableHandle_" + n2);
|
|
74
|
+
}, refreshChildData(t2, e2, n2) {
|
|
75
|
+
let i2;
|
|
76
|
+
const o2 = r(t2, e2);
|
|
77
|
+
if (o2) {
|
|
78
|
+
const t3 = o2.getConfigure();
|
|
79
|
+
t3 && t3.uuid && t3.name && "table" === t3.name && (i2 = t3.uuid);
|
|
80
|
+
}
|
|
81
|
+
i2 && s.$emit("_refreshChildData_" + i2, n2);
|
|
82
|
+
}, getServerConfigValue: (t2) => window.$vueApp.config.globalProperties[t2], getBackendUrl: (t2) => y(t2.backendUrl, false), getPlateBackendUrl: () => window.$vueApp.config.globalProperties.baseAPI, getEntity: (t2) => t2.entity.data, getEntityValue: (t2, e2) => t2.entity.data ? t2.entity.data[e2] : null, getPageData: (t2) => t2.entity.page, getPageDataValue: (t2, e2) => t2.entity.page ? t2.entity.page[e2] : null, getTaskDataValue: (t2, e2) => t2.entity.task ? t2.entity.task[e2] : null, getValueByType: (t2, e2, n2) => t2.entity[e2] ? t2.entity[e2][n2] : null, getAdditionalParams: (t2) => u(t2), getAdditionalParamValue(t2, e2) {
|
|
83
|
+
const n2 = u(t2);
|
|
84
|
+
return n2 ? n2[e2] : null;
|
|
85
|
+
}, isMobile: () => h(), getComponentRefByProp: (t2, e2) => r(t2, e2), getComponentRefByCode: (t2, e2) => a(t2, e2), getFormViewData(o2) {
|
|
86
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
87
|
+
const r2 = o2.entity ? o2.entity : {}, s2 = g(r2), l2 = t(o2);
|
|
88
|
+
for (const t2 in l2) {
|
|
89
|
+
const r3 = e(o2, t2), l3 = a(o2, t2);
|
|
90
|
+
if (l3) {
|
|
91
|
+
const t3 = l3.getConfigure();
|
|
92
|
+
if (t3) if (!((_b = (_a = t3.props) == null ? void 0 : _a.dataOrigin) == null ? void 0 : _b.optionValueSetType) || "static" !== ((_d = (_c = t3.props) == null ? void 0 : _c.dataOrigin) == null ? void 0 : _d.optionValueSetType) && "optionGroup" !== ((_f = (_e = t3.props) == null ? void 0 : _e.dataOrigin) == null ? void 0 : _f.optionValueSetType)) {
|
|
93
|
+
if ("dynamicData" === ((_h = (_g = t3 == null ? void 0 : t3.props) == null ? void 0 : _g.dataOrigin) == null ? void 0 : _h.optionValueSetType) && ("select" === (t3 == null ? void 0 : t3.name) || "checkbox" === (t3 == null ? void 0 : t3.name) || "radio" === (t3 == null ? void 0 : t3.name))) {
|
|
94
|
+
const e2 = E(o2, t3), a2 = l3.getSelectItemsTitle(), r4 = a2 && a2.length > 0 ? a2 : n(s2, e2);
|
|
95
|
+
i(s2, e2, r4);
|
|
96
|
+
}
|
|
97
|
+
} else if (t3.name && ("select" === t3.name && ((_j = (_i = t3.props) == null ? void 0 : _i.base) == null ? void 0 : _j.multiple) || "checkbox" === t3.name)) {
|
|
98
|
+
const e2 = E(o2, t3), a2 = n(s2, e2);
|
|
99
|
+
if (a2) {
|
|
100
|
+
const t4 = A(a2.split(","), r3);
|
|
101
|
+
i(s2, e2, t4);
|
|
102
|
+
}
|
|
103
|
+
} else {
|
|
104
|
+
const e2 = E(o2, t3), a2 = A(n(s2, e2), r3);
|
|
105
|
+
i(s2, e2, a2);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
const c2 = o2.listCodesMap;
|
|
110
|
+
for (const t2 in c2) {
|
|
111
|
+
let e2;
|
|
112
|
+
if (t2.indexOf("__") > 0 && (e2 = t2.substring(t2.lastIndexOf("__") + 2)), e2) {
|
|
113
|
+
const i2 = a(o2, e2);
|
|
114
|
+
if (i2) {
|
|
115
|
+
const e3 = i2.getConfigure(), o3 = e3.code ? e3.code : t2, a2 = C(e3, o3), r3 = n(s2, a2), l3 = i2.getTableSelectOptions(t2), c3 = i2.getColumns(), u2 = {}, m2 = {};
|
|
116
|
+
c3 && c3.length > 0 && c3.forEach((t3) => {
|
|
117
|
+
"DATE" !== t3.dataType && "TIME" !== t3.dataType || (m2[t3.prop] = t3);
|
|
118
|
+
}), u2.formatDateColumns = m2, j(l3, r3, u2, i2);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
return s2.data;
|
|
123
|
+
}, getFormData: (t2, e2) => c(t2, e2), getCustomFunc: (t2, e2) => P(t2, e2), replaceUrlPrefix: (t2) => b(t2), isHasFieldAuthPermission: (t2) => {
|
|
124
|
+
var _a, _b, _c, _d;
|
|
125
|
+
return !(void 0 !== ((_b = (_a = t2 == null ? void 0 : t2.props) == null ? void 0 : _a.base) == null ? void 0 : _b.isHasFieldAuthPermission) && !((_d = (_c = t2 == null ? void 0 : t2.props) == null ? void 0 : _c.base) == null ? void 0 : _d.isHasFieldAuthPermission));
|
|
126
|
+
}, isHasFieldAuth(t2, e2) {
|
|
127
|
+
T(t2, null, e2);
|
|
128
|
+
}, isHasFieldAuthWithTable(t2, e2, n2) {
|
|
129
|
+
T(t2, e2, n2);
|
|
130
|
+
}, scrollIntoComponentWithUuid(t2, e2) {
|
|
131
|
+
v(t2, e2);
|
|
132
|
+
}, scrollIntoComponentWithCode(t2, e2) {
|
|
133
|
+
k(t2, e2);
|
|
134
|
+
}, isSignerTaskTransactor(t2, e2) {
|
|
135
|
+
if (!e2) return true;
|
|
136
|
+
const n2 = t2.entity.task;
|
|
137
|
+
if (n2) {
|
|
138
|
+
if (n2.sourceTrustor) return e2 === n2.sourceTrustor;
|
|
139
|
+
if (n2.sourceAssigner) return e2 === n2.sourceAssigner || !(!n2.transactor || e2 !== n2.transactor);
|
|
140
|
+
if (n2.transactor && e2 === n2.transactor) return true;
|
|
141
|
+
}
|
|
142
|
+
return false;
|
|
143
|
+
} };
|
|
144
|
+
function j(t2, e2, n2, i2) {
|
|
145
|
+
if (t2 && e2) {
|
|
146
|
+
const o2 = i2.getSuperGridRef();
|
|
147
|
+
e2.forEach((e3) => {
|
|
148
|
+
if (n2 == null ? void 0 : n2.formatDateColumns) {
|
|
149
|
+
const t3 = n2.formatDateColumns;
|
|
150
|
+
Object.keys(t3).forEach((n3) => {
|
|
151
|
+
const i3 = t3[n3];
|
|
152
|
+
e3[n3] && (e3[n3] = o2.rowDoFormat(i3, e3[n3]));
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
Object.keys(t2).forEach((n3) => {
|
|
156
|
+
const i3 = e3[n3], o3 = t2[n3], a2 = o3.options, r2 = o3.column;
|
|
157
|
+
let s2;
|
|
158
|
+
if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
|
|
159
|
+
if (i3) {
|
|
160
|
+
s2 = A(i3.split(","), a2);
|
|
161
|
+
}
|
|
162
|
+
} else s2 = A(i3, a2);
|
|
163
|
+
e3[n3] = s2;
|
|
164
|
+
});
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
function A(t2, e2) {
|
|
169
|
+
let n2;
|
|
170
|
+
return null != t2 && e2 && (Array.isArray(t2) ? (n2 = "", t2.forEach((i2) => {
|
|
171
|
+
n2 = n2 + D(t2, e2) + ",";
|
|
172
|
+
}), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = t2, n2 = D(t2, e2))), n2;
|
|
173
|
+
}
|
|
174
|
+
function D(t2, e2) {
|
|
175
|
+
let n2 = t2;
|
|
176
|
+
if (null != t2 && e2) for (let i2 = 0; i2 < e2.length; i2++) {
|
|
177
|
+
const o2 = e2[i2].value, a2 = e2[i2].label ? e2[i2].label : e2[i2].name;
|
|
178
|
+
if (t2 + "" == o2 + "" && null != a2) {
|
|
179
|
+
n2 = a2;
|
|
180
|
+
break;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
return n2;
|
|
184
|
+
}
|
|
185
|
+
function O(t2, e2, n2) {
|
|
186
|
+
t2.initInfo || (t2.initInfo = {}), t2.initInfo[e2] = n2;
|
|
187
|
+
}
|
|
188
|
+
export {
|
|
189
|
+
V as functions
|
|
190
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { defineAsyncComponent as e } from "vue";
|
|
2
|
+
import { usePageContextStore as t } from "./page-store.js";
|
|
3
|
+
const m = [{ name: "container", label: "容器", icon: "assets/images/group-container.png", items: [{ name: "form", label: "表单", runtimeComponent: e(() => import("../views/assemblys/container/form/form-runtime.vue.js")) }, { name: "card", label: "卡片", runtimeComponent: e(() => import("../views/assemblys/container/card/card-runtime.vue.js")) }, { name: "collapse", label: "折叠面板", runtimeComponent: e(() => import("../views/assemblys/container/collapse/collapse-runtime.vue.js")) }, { name: "layout", label: "Flex", runtimeComponent: e(() => import("../views/assemblys/container/flex/flex-runtime.vue.js")) }, { name: "tabs", label: "Tabs", runtimeComponent: e(() => import("../views/assemblys/container/tabs/tabs-runtime.vue.js")) }, { name: "tools", label: "工具栏", runtimeComponent: e(() => import("../views/assemblys/container/tools/tools-runtime.vue.js")) }, { name: "iframe", label: "Iframe", runtimeComponent: e(() => import("../views/assemblys/container/iframe/iframe-runtime.vue.js")) }, { name: "container", label: "布局", runtimeComponent: e(() => import("../views/assemblys/container/container/container-runtime.vue.js")) }] }, { name: "form", label: "表单", items: [{ name: "input-text", label: "文本框", runtimeComponent: e(() => import("../views/assemblys/form/input-text/inputtext-runtime.vue.js")) }, { name: "select", label: "下拉框", runtimeComponent: e(() => import("../views/assemblys/form/select/select-runtime.vue.js")) }, { name: "radio", label: "单选框", runtimeComponent: e(() => import("../views/assemblys/form/radio/radio-runtime.vue.js")) }, { name: "checkbox", label: "复选框", runtimeComponent: e(() => import("../views/assemblys/form/checkbox/checkbox-runtime.vue.js")) }, { name: "textarea", label: "文本域", runtimeComponent: e(() => import("../views/assemblys/form/textarea/textarea-runtime.vue.js")) }, { name: "datePicker", label: "日期/时间", runtimeComponent: e(() => import("../views/assemblys/form/date-picker/datepicker-runtime.vue.js")) }, { name: "switch", label: "开关", runtimeComponent: e(() => import("../views/assemblys/form/switch/switch-runtime.vue.js")) }, { name: "inputNumber", label: "计数器", runtimeComponent: e(() => import("../views/assemblys/form/input-number/input-number-runtime.vue.js")) }, { name: "tag", label: "标签", runtimeComponent: e(() => import("../views/assemblys/form/tag/tag-runtime.vue.js")) }, { name: "richText", label: "富文本", runtimeComponent: e(() => import("../views/assemblys/form/rich-text/richtext-runtime.vue.js")) }, { name: "divider", label: "分割线", runtimeComponent: e(() => import("../views/assemblys/form/divider/divider-runtime.vue.js")) }, { name: "separatelabel", label: "分割标签", runtimeComponent: e(() => import("../views/assemblys/form/separatelabel/separatelabel-runtime.vue.js")) }, { name: "placeholder", label: "占位符", runtimeComponent: e(() => import("../views/assemblys/form/placeholder/placeholder-runtime.vue.js")) }, { name: "link", label: "链接", runtimeComponent: e(() => import("../views/assemblys/form/link/link-runtime.vue.js")) }, { name: "label", label: "Label组件", runtimeComponent: e(() => import("../views/assemblys/form/label/label-runtime.vue.js")) }, { name: "dept-tree", label: "组织树", runtimeComponent: e(() => import("../views/assemblys/form/dept-tree/depttree-runtime.vue.js")) }, { name: "file-upload", label: "文件上传", runtimeComponent: e(() => import("../views/assemblys/form/file-upload/fileupload-runtime.vue.js")) }] }, { name: "button", label: "按钮", items: [{ name: "button-detail", label: "按钮", runtimeComponent: e(() => import("../views/assemblys/button/button/button-runtime.vue.js")) }, { name: "button-group", label: "按钮组", runtimeComponent: e(() => import("../views/assemblys/button/button-group/buttongroup-runtime.vue.js")) }, { name: "dropdown", label: "下拉菜单", runtimeComponent: e(() => import("../views/assemblys/button/dropdown/dropdown-runtime.vue.js")) }, { name: "print-label", label: "打印标签", runtimeComponent: e(() => import("../views/assemblys/button/print-label/printlabel-runtime.vue.js")) }, { name: "export-pdf", label: "打印标签", runtimeComponent: e(() => import("../views/assemblys/button/export-pdf/exportpdf-runtime.vue.js")) }] }, { name: "workflow", label: "工作流", items: [{ name: "workflow-button", label: "工作流按钮", runtimeComponent: e(() => import("../views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js")) }, { name: "picture-flow", label: "图形历史", runtimeComponent: e(() => import("../views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js")) }, { name: "text-flow", label: "文本历史", runtimeComponent: e(() => import("../views/assemblys/workflow/text-history/textflow-runtime.vue.js")) }, { name: "workflow-node", label: "流程环节", runtimeComponent: e(() => import("../views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js")) }, { name: "extract-workflow", label: "抽单", runtimeComponent: e(() => import("../views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js")) }, { name: "extract-workflow-dialog", label: "抽单Dialog", runtimeComponent: e(() => import("../views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js")) }] }, { name: "chart", label: "统计图", items: [{ name: "chart-column-line", label: "柱/折图", runtimeComponent: e(() => import("../views/assemblys/chart/column-line/column-line-runtime.vue.js")) }, { name: "chart-pie", label: "饼图", runtimeComponent: e(() => import("../views/assemblys/chart/pie/pie-runtime.vue.js")) }, { name: "chart-gauge", label: "仪表盘", runtimeComponent: e(() => import("../views/assemblys/chart/gauge/gauge-runtime.vue.js")) }, { name: "chart-radar", label: "雷达图", runtimeComponent: e(() => import("../views/assemblys/chart/radar/radar-runtime.vue.js")) }, { name: "chart-scatter", label: "散点图", runtimeComponent: e(() => import("../views/assemblys/chart/scatter/scatter-runtime.vue.js")) }, { name: "statistical-table", label: "统计表格", runtimeComponent: e(() => import("../views/assemblys/chart/table/table-runtime.vue.js")) }] }, { name: "data", label: "数据", items: [{ name: "table", label: "表格", runtimeComponent: e(() => import("../views/assemblys/data/table/table-runtime.vue.js")) }, { name: "tree", label: "树控件", runtimeComponent: e(() => import("../views/assemblys/data/tree/tree-runtime.vue.js")) }, { name: "bar-code", label: "条码", runtimeComponent: e(() => import("../views/assemblys/data/bar-code/barcode-runtime.vue.js")) }] }, { name: "other", label: "其他", items: [{ name: "custom", label: "自定义", runtimeComponent: e(() => import("../views/assemblys/form/custom/custom-runtime.vue.js")) }] }];
|
|
4
|
+
function n(e2) {
|
|
5
|
+
if (!e2) return null;
|
|
6
|
+
for (let n2 = 0; n2 < m.length; n2++) {
|
|
7
|
+
let o = m[n2].items;
|
|
8
|
+
for (let m2 = 0; m2 < o.length; m2++) {
|
|
9
|
+
let n3 = o[m2];
|
|
10
|
+
if (n3.name == e2) {
|
|
11
|
+
return t().countComponentsTotalNmber(), n3.runtimeComponent;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
return null;
|
|
16
|
+
}
|
|
17
|
+
export {
|
|
18
|
+
m as assemblyGroups,
|
|
19
|
+
n as getRuntimeComponentByName
|
|
20
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function e(e2, t) {
|
|
2
|
+
let n = true, r = "";
|
|
3
|
+
return e2.forEach((e3) => {
|
|
4
|
+
if ("-1" !== e3.propDbName && -1 !== e3.propDbName) {
|
|
5
|
+
const a = t[e3.propDbName];
|
|
6
|
+
e3.supplementaryCharacters && e3.length ? a ? a.length > e3.length ? r += a.substring(0, e3.length) : r += a.padEnd(e3.length, e3.supplementaryCharacters) : r += "".padEnd(e3.length, e3.supplementaryCharacters) : a ? r += a : n = false;
|
|
7
|
+
} else r += e3.fixedValue;
|
|
8
|
+
}), n ? r : null;
|
|
9
|
+
}
|
|
10
|
+
export {
|
|
11
|
+
e as generateCodeByRule
|
|
12
|
+
};
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { getValueFromSource as e, formatVariableValue as t, setValueForVariableName as i } from "../page-helper-util.js";
|
|
2
|
+
import { deepCopy as o } from "../common-util.js";
|
|
3
|
+
import { setDefaultGrid as s, CommonName as a, caculateFormulaValue as l, executeChartFormula as r, sortDatas as n, limitDatas as u, formatToolboxI18n as d } from "./chart-util.js";
|
|
4
|
+
import { handleChartEvent as f } from "../events/event-util.js";
|
|
5
|
+
function c(c2, m, h, y) {
|
|
6
|
+
if (!y || !y.result) return;
|
|
7
|
+
s(h), h.tooltip || (h.tooltip = {}), f(c2, m, "beforeUpdateChart", h, { resultData: y });
|
|
8
|
+
const g = y && y.result ? y.result : {};
|
|
9
|
+
let v = y && y.groupValue ? y.groupValue : void 0;
|
|
10
|
+
const F = m.serviceDataField;
|
|
11
|
+
let S = null;
|
|
12
|
+
F ? S = g[F] : g && (S = Array.isArray(g) ? g : [g]), S || (S = []), m.runtime.dataConfig.runtimeData = S;
|
|
13
|
+
let D = m.props ? m.props.groups : null;
|
|
14
|
+
if (D || (D = []), !v || 0 === v.length) {
|
|
15
|
+
v = [];
|
|
16
|
+
for (const e2 of D) v.push(e2.group);
|
|
17
|
+
}
|
|
18
|
+
const _ = {}, x = [], A = [];
|
|
19
|
+
for (const e2 of D) _[e2.group] = e2.target, e2.target && !x.includes(e2.target) && (x.push(e2.target), v.includes(e2.group) && A.push(e2.target));
|
|
20
|
+
let N = m.props ? m.props.mulGroupShow : "";
|
|
21
|
+
N = "break" == N ? "\r\n" : " ";
|
|
22
|
+
for (const t2 of S) {
|
|
23
|
+
if (!t2) continue;
|
|
24
|
+
const i2 = [];
|
|
25
|
+
for (const o3 of v) {
|
|
26
|
+
const s2 = _[o3], a2 = e(t2, s2, void 0);
|
|
27
|
+
a2 && i2.push(a2);
|
|
28
|
+
}
|
|
29
|
+
const o2 = i2.join(N);
|
|
30
|
+
t2[a.X_FIELD_NAME] = o2;
|
|
31
|
+
}
|
|
32
|
+
const E = m.items ? m.items : [], C = [], b = {}, w = [], I = {}, X = [], L = [], M = /* @__PURE__ */ new Set(), j = l(E, S, M);
|
|
33
|
+
for (const e2 of M) X.push(e2);
|
|
34
|
+
for (const e2 of E) {
|
|
35
|
+
const t2 = e2.props ? e2.props : {}, i2 = t2.yaxisSource, o2 = t2.yaxisField, s2 = t2.isCumulative;
|
|
36
|
+
let a2 = null;
|
|
37
|
+
if (!o2 || i2 && "variable" != i2) if ("formula" == i2) {
|
|
38
|
+
let i3 = t2.formula ? t2.formula : "";
|
|
39
|
+
for (const e3 in j) i3 = i3.replace(new RegExp(e3.replace("$", "\\$"), "g"), j[e3]);
|
|
40
|
+
a2 = { uuid: e2.uuid, type: "formula", formula: i3, isFormulaCalculateAfterSort: t2.isFormulaCalculateAfterSort, data: [], dynamicDatas: [] };
|
|
41
|
+
} else a2 = { uuid: e2.uuid, type: "fixed", field: t2.yaxisFix, data: [], dynamicDatas: [] };
|
|
42
|
+
else a2 = { uuid: e2.uuid, type: "variable", field: o2, isCumulative: s2, data: [], dynamicDatas: [] }, o2 && !X.includes(o2) && X.push(o2), o2 && !L.includes(o2) && L.push(o2), s2 && !M.has(o2) && M.add(o2);
|
|
43
|
+
null != a2 && (C.push(a2), b[e2.uuid] = a2), t2.dynamicSeriesField && !w.includes(t2.dynamicSeriesField) && a2 && (a2.dynamicField = t2.dynamicSeriesField, a2.dynamicSeriesTitle = t2.dynamicSeriesTitle, a2.dynamicShowStack = t2.dynamicShowStack, w.push(t2.dynamicSeriesField), I[t2.dynamicSeriesField] = o2), t2.dynamicSeriesDataField && t2.dynamicSeriesDataField.forEach((e3) => {
|
|
44
|
+
X.includes(e3) || X.push(e3);
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
const k = {};
|
|
48
|
+
if (w.length > 0) {
|
|
49
|
+
const t2 = [], i2 = {};
|
|
50
|
+
for (const o2 of S) if (o2) for (const s2 of X) {
|
|
51
|
+
const l2 = o2[a.X_FIELD_NAME];
|
|
52
|
+
let r2 = i2[l2];
|
|
53
|
+
if (!r2) {
|
|
54
|
+
r2 = {};
|
|
55
|
+
for (const e2 of x) r2[e2] = o2[e2];
|
|
56
|
+
r2[a.X_FIELD_NAME] = o2[a.X_FIELD_NAME], i2[l2] = r2, t2.push(r2);
|
|
57
|
+
}
|
|
58
|
+
let n2 = e(o2, s2, void 0);
|
|
59
|
+
if (!isNaN(n2)) {
|
|
60
|
+
const e2 = r2[s2];
|
|
61
|
+
isNaN(e2) || (n2 += e2), r2[s2] = n2;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
for (const t3 of w) {
|
|
65
|
+
const o2 = [];
|
|
66
|
+
for (const s2 of S) {
|
|
67
|
+
if (!s2) continue;
|
|
68
|
+
const l2 = i2[s2[a.X_FIELD_NAME]];
|
|
69
|
+
if (!l2) continue;
|
|
70
|
+
let r2 = e(s2, t3, void 0);
|
|
71
|
+
r2 = null == r2 || null == r2 ? "" : r2, o2.includes(r2) || (o2.push(r2), L.push(r2), M.add(r2));
|
|
72
|
+
const n2 = I[t3];
|
|
73
|
+
if (void 0 !== n2) {
|
|
74
|
+
const t4 = e(s2, n2, void 0);
|
|
75
|
+
let i3 = l2[r2];
|
|
76
|
+
void 0 === i3 ? i3 = t4 : isNaN(t4) || (i3 += t4), l2[r2] = i3;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
k[t3] = o2;
|
|
80
|
+
}
|
|
81
|
+
S = t2;
|
|
82
|
+
}
|
|
83
|
+
let T = {};
|
|
84
|
+
const V = /* @__PURE__ */ new Set(), $ = m.props ? m.props.orderByTarget : "";
|
|
85
|
+
for (const e2 of C) "formula" === e2.type && e2.isFormulaCalculateAfterSort && $ !== e2.uuid && V.add(e2.uuid + "_field");
|
|
86
|
+
for (const e2 of S) if (e2) {
|
|
87
|
+
p(e2, M, T);
|
|
88
|
+
for (const t2 of C) if ("formula" === t2.type && !t2.isFormulaCalculateAfterSort) {
|
|
89
|
+
const i2 = r(t2.formula, T, e2, c2);
|
|
90
|
+
e2[t2.uuid + "_field"] = i2;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
if (n(c2, m, S), V.size > 0) {
|
|
94
|
+
const e2 = {};
|
|
95
|
+
for (const t2 of S) {
|
|
96
|
+
p(t2, M, e2);
|
|
97
|
+
for (const i2 of C) if ("formula" === i2.type && V.has(i2.uuid + "_field")) {
|
|
98
|
+
const o2 = r(i2.formula, e2, t2, c2);
|
|
99
|
+
t2[i2.uuid + "_field"] = o2;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
S = u(c2, m, S, x, L);
|
|
104
|
+
const B = [];
|
|
105
|
+
T = {};
|
|
106
|
+
for (const t2 of S) if (t2) {
|
|
107
|
+
for (const i2 of M) {
|
|
108
|
+
const o2 = e(t2, i2, void 0);
|
|
109
|
+
let s2 = T[i2];
|
|
110
|
+
void 0 === o2 || isNaN(o2) || (void 0 === s2 ? s2 = o2 : s2 += o2), T[i2] = s2;
|
|
111
|
+
}
|
|
112
|
+
B.push(t2[a.X_FIELD_NAME]);
|
|
113
|
+
for (const i2 of C) {
|
|
114
|
+
let o2 = i2.data;
|
|
115
|
+
const s2 = i2.dynamicDatas;
|
|
116
|
+
if (i2.dynamicField) {
|
|
117
|
+
let a2 = k[i2.dynamicField];
|
|
118
|
+
a2 = a2 || [];
|
|
119
|
+
for (let l2 = 0; l2 < a2.length; l2++) {
|
|
120
|
+
l2 >= s2.length && s2.push([]), o2 = s2[l2];
|
|
121
|
+
const r2 = a2[l2];
|
|
122
|
+
let n2 = e(t2, r2, void 0);
|
|
123
|
+
i2.isCumulative && (n2 = T[r2]), o2.push(n2);
|
|
124
|
+
}
|
|
125
|
+
} else if ("fixed" === i2.type) o2.push(i2.field);
|
|
126
|
+
else if ("variable" === i2.type) {
|
|
127
|
+
let s3 = e(t2, i2.field, void 0);
|
|
128
|
+
i2.isCumulative && (s3 = T[i2.field]), o2.push(s3);
|
|
129
|
+
} else "formula" === i2.type ? o2.push(t2[i2.uuid + "_field"]) : o2.push(void 0);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
const G = m.defaultSeries, R = o(null == G ? [] : G), U = [];
|
|
133
|
+
for (const e2 of R) {
|
|
134
|
+
const i2 = b[e2.uuid];
|
|
135
|
+
if (i2.dynamicField) {
|
|
136
|
+
let s2 = k[i2.dynamicField];
|
|
137
|
+
s2 = s2 || [];
|
|
138
|
+
const a2 = i2.dynamicDatas ? i2.dynamicDatas : [];
|
|
139
|
+
for (let l2 = 0; l2 < s2.length; l2++) {
|
|
140
|
+
const r2 = s2[l2], n2 = o(e2);
|
|
141
|
+
if (i2.dynamicSeriesTitle) {
|
|
142
|
+
const e3 = i2.dynamicSeriesTitle.replace("${name}", r2);
|
|
143
|
+
n2.name = t(c2, e3);
|
|
144
|
+
} else n2.name = r2;
|
|
145
|
+
n2.data = l2 < a2.length ? a2[l2] : [], "bar" == e2.type && i2.dynamicShowStack && (n2.stack = e2.uuid), U.push(n2);
|
|
146
|
+
}
|
|
147
|
+
} else e2.data = i2 ? i2.data : [], U.push(e2);
|
|
148
|
+
}
|
|
149
|
+
h.series = U;
|
|
150
|
+
const z = m.defaultXaxis, Y = m.defaultYaxis;
|
|
151
|
+
if (h.isBar) {
|
|
152
|
+
if (Y) for (const e2 of Y) e2.data = B;
|
|
153
|
+
h.xAxis = z, h.yAxis = Y;
|
|
154
|
+
} else z && z.length > 0 && (z[0].data = B), h.xAxis = z, h.yAxis = Y;
|
|
155
|
+
d(h);
|
|
156
|
+
const q = m.props ? m.props.selGroupVariable : null;
|
|
157
|
+
!(m.props ? m.props.enableDrill : null) && q && (m.highlightInfos = [], i(c2.entity, q, null)), f(c2, m, "afterUpdateChart", h, { resultData: y }), m.groupFields = A, m.cacheDatas = S, m.rawResult = y;
|
|
158
|
+
}
|
|
159
|
+
function p(t2, i2, o2) {
|
|
160
|
+
for (const s2 of i2) {
|
|
161
|
+
const i3 = e(t2, s2, void 0);
|
|
162
|
+
let a2 = o2[s2];
|
|
163
|
+
void 0 === i3 || isNaN(i3) || (void 0 === a2 ? a2 = i3 : a2 += i3), o2[s2] = a2;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
export {
|
|
167
|
+
c as updateChartOption
|
|
168
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { formatVariableValue as e, getValueFromSource as t } from "../page-helper-util.js";
|
|
2
|
+
import { deepCopy as o } from "../common-util.js";
|
|
3
|
+
import { setDefaultGrid as r, formatToolboxI18n as s } from "./chart-util.js";
|
|
4
|
+
import { handleChartEvent as l } from "../events/event-util.js";
|
|
5
|
+
function i(i2, p, a, n) {
|
|
6
|
+
if (!n || !n.result) return;
|
|
7
|
+
l(i2, p, "beforeUpdateChart", a, { resultData: n }), r(a);
|
|
8
|
+
const u = n && n.result ? n.result : {}, c = p.serviceDataField;
|
|
9
|
+
let m = null;
|
|
10
|
+
c ? m = u[c] : u && (m = [u]), m || (m = []);
|
|
11
|
+
const d = p.props ? p.props.nameSource : void 0, f = p.props ? p.props.nameField : void 0, h = p.props ? p.props.nameFixed : void 0, v = p.props ? p.props.yaxisField : void 0, g = [f], F = [], j = [];
|
|
12
|
+
for (const o2 of m) {
|
|
13
|
+
if (!o2) continue;
|
|
14
|
+
let r2 = null;
|
|
15
|
+
r2 = "fixed" == d ? e(i2, h) : t(o2, f, void 0), F.push(r2);
|
|
16
|
+
const s2 = t(o2, v, void 0);
|
|
17
|
+
j.push(s2);
|
|
18
|
+
}
|
|
19
|
+
const x = p.defaultSeries;
|
|
20
|
+
let C = x[0].pieColors;
|
|
21
|
+
C = C || [];
|
|
22
|
+
let D = x[0].pieColorMap;
|
|
23
|
+
D = D || {};
|
|
24
|
+
const S = [];
|
|
25
|
+
for (let e2 = 0; e2 < F.length && e2 < j.length; e2++) {
|
|
26
|
+
const t2 = { value: j[e2], name: F[e2] };
|
|
27
|
+
if (e2 < C.length || D[t2.name]) {
|
|
28
|
+
let o2 = D[t2.name];
|
|
29
|
+
o2 || (o2 = C[e2]), o2 && (t2.itemStyle = { color: o2 });
|
|
30
|
+
}
|
|
31
|
+
S.push(t2);
|
|
32
|
+
}
|
|
33
|
+
const y = o(x);
|
|
34
|
+
y[0].data = S, a.series = [y[0]], s(a), l(i2, p, "afterUpdateChart", a, { resultData: n }), p.groupFields = g, p.cacheDatas = m, p.rawResult = n;
|
|
35
|
+
}
|
|
36
|
+
export {
|
|
37
|
+
i as updateChartOption
|
|
38
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { getValueFromSource as o, setValueForVariableName as t } from "../page-helper-util.js";
|
|
2
|
+
import { deepCopy as e } from "../common-util.js";
|
|
3
|
+
import { setDefaultGrid as r, CommonName as s, caculateFormulaValue as l, executeChartFormula as n, sortDatas as p, limitDatas as i, formatToolboxI18n as a } from "./chart-util.js";
|
|
4
|
+
import { handleChartEvent as u } from "../events/event-util.js";
|
|
5
|
+
function c(c2, f, g, m) {
|
|
6
|
+
if (!m || !m.result) return;
|
|
7
|
+
u(c2, f, "beforeUpdateChart", g, { resultData: m }), r(g);
|
|
8
|
+
const h = m && m.result ? m.result : {};
|
|
9
|
+
let d = m && m.groupValue ? m.groupValue : void 0;
|
|
10
|
+
const y = f.serviceDataField;
|
|
11
|
+
let v = null;
|
|
12
|
+
y ? v = h[y] : h && (v = Array.isArray(h) ? h : [h]), v || (v = []);
|
|
13
|
+
let x = f.props ? f.props.groups : null;
|
|
14
|
+
if (x || (x = []), !d || 0 === d.length) {
|
|
15
|
+
d = [];
|
|
16
|
+
for (const o2 of x) d.push(o2.group);
|
|
17
|
+
}
|
|
18
|
+
const D = {}, E = [], F = [];
|
|
19
|
+
for (const o2 of x) D[o2.group] = o2.target, o2.target && !E.includes(o2.target) && (E.push(o2.target), d.includes(o2.group) && F.push(o2.target));
|
|
20
|
+
let S = f.props ? f.props.mulGroupShow : "";
|
|
21
|
+
S = "break" == S ? "\r\n" : " ";
|
|
22
|
+
for (const t2 of v) {
|
|
23
|
+
if (!t2) continue;
|
|
24
|
+
const e2 = [];
|
|
25
|
+
for (const r3 of d) {
|
|
26
|
+
const s2 = D[r3], l2 = o(t2, s2, void 0);
|
|
27
|
+
l2 && e2.push(l2);
|
|
28
|
+
}
|
|
29
|
+
const r2 = e2.join(S);
|
|
30
|
+
t2[s.X_FIELD_NAME] = r2;
|
|
31
|
+
}
|
|
32
|
+
const _ = f.items ? f.items : [];
|
|
33
|
+
if (0 == _.length) return;
|
|
34
|
+
const j = f.props ? f.props : {};
|
|
35
|
+
let A = j.yaxisField;
|
|
36
|
+
if (_[0].props.yaxisField = A, _[0].props.yaxisSource = j.yaxisSource, _[0].props.formula = j.formula, "formula" === j.yaxisSource) {
|
|
37
|
+
const t2 = [], e2 = l(_, v, t2);
|
|
38
|
+
let r2 = j.formula ? j.formula : "";
|
|
39
|
+
for (const o2 in e2) r2 = r2.replace(new RegExp(o2.replace("$", "\\$"), "g"), e2[o2]);
|
|
40
|
+
A = s.Y_TEMP_NAME;
|
|
41
|
+
const p2 = {};
|
|
42
|
+
for (const e3 of v) {
|
|
43
|
+
if (!e3) continue;
|
|
44
|
+
for (const r3 of t2) {
|
|
45
|
+
const t3 = o(e3, r3, void 0);
|
|
46
|
+
let s3 = p2[r3];
|
|
47
|
+
void 0 === t3 || isNaN(t3) || (void 0 === s3 ? s3 = t3 : s3 += t3), p2[r3] = s3;
|
|
48
|
+
}
|
|
49
|
+
const s2 = n(r2, p2, e3, c2);
|
|
50
|
+
e3[A] = s2;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
_[0].props.yaxisField = A, _[0].props.yaxisSource = "", p(c2, f, v), v = i(c2, f, v, E, [A]);
|
|
54
|
+
const M = [], N = [];
|
|
55
|
+
for (const t2 of v) {
|
|
56
|
+
if (!t2) continue;
|
|
57
|
+
M.push(t2[s.X_FIELD_NAME]);
|
|
58
|
+
const e2 = o(t2, A, void 0);
|
|
59
|
+
N.push(e2);
|
|
60
|
+
}
|
|
61
|
+
const b = f.defaultSeries;
|
|
62
|
+
let C = b[0].pieColors;
|
|
63
|
+
C = C || [];
|
|
64
|
+
let w = b[0].pieColorMap;
|
|
65
|
+
w = w || {};
|
|
66
|
+
const I = [];
|
|
67
|
+
for (let o2 = 0; o2 < M.length && o2 < N.length; o2++) {
|
|
68
|
+
const t2 = { value: N[o2], name: M[o2] };
|
|
69
|
+
if (o2 < C.length || w[t2.name]) {
|
|
70
|
+
let e2 = w[t2.name];
|
|
71
|
+
e2 || (e2 = C[o2]), e2 && (t2.itemStyle = { color: e2 });
|
|
72
|
+
}
|
|
73
|
+
I.push(t2);
|
|
74
|
+
}
|
|
75
|
+
const V = e(b);
|
|
76
|
+
V[0].data = I, g.series = [V[0]], a(g);
|
|
77
|
+
const G = f.props ? f.props.selGroupVariable : null;
|
|
78
|
+
!(f.props ? f.props.enableDrill : null) && G && (f.highlightInfos = [], t(c2.entity, G, null)), u(c2, f, "afterUpdateChart", g, { resultData: m }), f.groupFields = F, f.cacheDatas = v, f.rawResult = m;
|
|
79
|
+
}
|
|
80
|
+
export {
|
|
81
|
+
c as updateChartOption
|
|
82
|
+
};
|