super-page-runtime 2.3.39 → 2.3.40-cdnTmp1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/_virtual/_plugin-vue_export-helper.mjs +8 -0
- package/dist/es/components/runtime/utils/ai-chat-util.mjs +16 -0
- package/dist/es/components/runtime/utils/anchor-util.mjs +83 -0
- package/dist/es/components/runtime/utils/api/api-util.d.ts +1 -1
- package/dist/es/components/runtime/utils/api/api-util.mjs +9 -0
- package/dist/es/components/runtime/utils/api/page-expose-util.mjs +184 -0
- package/dist/es/components/runtime/utils/assemblys-config.mjs +19 -0
- package/dist/es/components/runtime/utils/barcode-util.mjs +12 -0
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +169 -0
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +38 -0
- package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +83 -0
- package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +56 -0
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +47 -0
- package/dist/es/components/runtime/utils/charts/chart-util.mjs +285 -0
- package/dist/es/components/runtime/utils/common-util.mjs +116 -0
- package/dist/es/components/runtime/utils/eventBus.mjs +8 -0
- package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +38 -0
- package/dist/es/components/runtime/utils/events/event-util.mjs +413 -0
- package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
- package/dist/es/components/runtime/utils/events/standard-event.d.ts +8 -1
- package/dist/es/components/runtime/utils/events/standard-event.mjs +1188 -0
- package/dist/es/components/runtime/utils/events/validator-util.mjs +403 -0
- package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
- package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
- package/dist/es/components/runtime/utils/global-refs.mjs +57 -0
- package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
- package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
- package/dist/es/components/runtime/utils/page-helper-util.d.ts +7 -0
- package/dist/es/components/runtime/utils/page-helper-util.mjs +381 -0
- package/dist/es/components/runtime/utils/page-init-util.mjs +261 -0
- package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
- package/dist/es/components/runtime/utils/page-store.mjs +53 -0
- package/dist/es/components/runtime/utils/store-util.mjs +13 -0
- package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
- package/dist/es/components/runtime/utils/tree-utils.mjs +68 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime2.vue.mjs +29 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime2.vue.mjs +21 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime2.vue.mjs +41 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime2.vue.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime2.vue.mjs +21 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime2.vue.mjs +53 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search2.vue.mjs +59 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.mjs +93 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime2.vue.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime2.vue.mjs +46 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime2.vue.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime2.vue.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +416 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +42 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime2.vue.mjs +252 -0
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
- package/dist/es/components/runtime/views/assemblys/common/event-call-component2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +34 -0
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +27 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +17 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +18 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime2.vue.mjs +36 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime2.vue.mjs +21 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime2.vue.mjs +18 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox2.vue.mjs +29 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix2.vue.mjs +81 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime2.vue.mjs +25 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime2.vue.mjs +25 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime2.vue.mjs +43 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime2.vue.mjs +96 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime2.vue.mjs +47 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime2.vue.mjs +69 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +323 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime2.vue.mjs +88 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime2.vue.mjs +132 -0
- package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
- package/dist/es/components/runtime/views/assemblys/error-render2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime2.vue.mjs +65 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime2.vue.mjs +69 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime2.vue.mjs +102 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime2.vue.mjs +55 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime2.vue.mjs +24 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime2.vue.mjs +91 -0
- package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime2.vue.mjs +88 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime2.vue.mjs +28 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime2.vue.mjs +79 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime2.vue.mjs +37 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime2.vue.mjs +42 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime2.vue.mjs +16 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime2.vue.mjs +84 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime2.vue.mjs +196 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime2.vue.mjs +150 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime2.vue.mjs +16 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime2.vue.mjs +36 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime2.vue.mjs +43 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime2.vue.mjs +28 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +83 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +162 -0
- package/dist/es/components/runtime/views/assemblys/object-render2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +9 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box2.vue.mjs +55 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog2.vue.mjs +28 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime2.vue.mjs +45 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime2.vue.mjs +20 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime2.vue.mjs +23 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime2.vue.mjs +30 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime2.vue.mjs +27 -0
- package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
- package/dist/es/components/runtime/views/home-chart2.vue.mjs +4 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
- package/dist/es/components/runtime/views/super-page-dialog3.vue.mjs +5 -0
- package/dist/es/components/runtime/views/super-page.vue.d.ts +2 -2
- package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
- package/dist/es/components/runtime/views/super-page2.vue.mjs +309 -0
- package/dist/es/index.mjs +32 -0
- package/dist/es/style.css +1 -1033
- package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
- package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
- package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
- package/dist/lib/assets/file.png.cjs +1 -0
- package/dist/lib/assets/folder.png.cjs +1 -0
- package/dist/lib/components/runtime/index.d.ts +6 -0
- package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
- package/dist/lib/components/runtime/utils/api/api-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
- package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
- package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
- package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
- package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
- package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
- package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
- package/dist/lib/components/runtime/utils/eventBus.d.ts +8 -0
- package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
- package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
- package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
- package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/standard-event.d.ts +106 -0
- package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/events/validator-util.d.ts +31 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
- package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
- package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
- package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
- package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-helper-util.d.ts +181 -0
- package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
- package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
- package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
- package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
- package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
- package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
- package/dist/lib/components/runtime/utils/store.cjs +1 -0
- package/dist/lib/components/runtime/utils/store.d.ts +2 -0
- package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
- package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
- package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.d.ts +36 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
- package/dist/lib/components/runtime/views/assemblys/error-render2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/image-upload/imageupload-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/object-render2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +19 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
- package/dist/lib/components/runtime/views/home-chart2.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
- package/dist/lib/components/runtime/views/super-page-dialog3.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
- package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
- package/dist/lib/components/runtime/views/super-page2.vue.cjs +1 -0
- package/dist/lib/favicon.ico +0 -0
- package/dist/lib/i18n/langs/cn.cjs +1 -0
- package/dist/lib/i18n/langs/en.cjs +1 -0
- package/dist/lib/index.cjs +1 -0
- package/dist/lib/index.d.ts +16 -0
- package/dist/lib/style.css +1 -0
- package/package.json +13 -11
- package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
- package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
- package/dist/es/components/runtime/utils/anchor-util.js +0 -84
- package/dist/es/components/runtime/utils/api/api-util.js +0 -4
- package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
- package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
- package/dist/es/components/runtime/utils/barcode-util.js +0 -12
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -168
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
- package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
- package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
- package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
- package/dist/es/components/runtime/utils/common-util.js +0 -120
- package/dist/es/components/runtime/utils/eventBus.js +0 -8
- package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
- package/dist/es/components/runtime/utils/events/event-util.js +0 -425
- package/dist/es/components/runtime/utils/events/print-label.js +0 -100
- package/dist/es/components/runtime/utils/events/standard-event.js +0 -1237
- package/dist/es/components/runtime/utils/events/validator-util.js +0 -420
- package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
- package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
- package/dist/es/components/runtime/utils/global-refs.js +0 -57
- package/dist/es/components/runtime/utils/i18n-util.js +0 -14
- package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
- package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
- package/dist/es/components/runtime/utils/page-init-util.js +0 -280
- package/dist/es/components/runtime/utils/page-store.js +0 -53
- package/dist/es/components/runtime/utils/store-util.js +0 -13
- package/dist/es/components/runtime/utils/table-utils.js +0 -89
- package/dist/es/components/runtime/utils/tree-utils.js +0 -73
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
- package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.js +0 -94
- package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -421
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -25
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -330
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -88
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
- package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -94
- package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue2.js +0 -91
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -81
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -43
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -165
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -9
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -55
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -32
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
- package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
- package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
- package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
- package/dist/es/components/runtime/views/super-page.vue.js +0 -7
- package/dist/es/components/runtime/views/super-page.vue2.js +0 -311
- package/dist/es/index.js +0 -32
- /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
- /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
- /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
- /package/dist/es/i18n/langs/{cn.js → cn.mjs} +0 -0
- /package/dist/es/i18n/langs/{en.js → en.mjs} +0 -0
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
import { defineComponent as Ye, ref as n, getCurrentInstance as Ze, onMounted as ea, onUpdated as aa, nextTick as Fe, onUnmounted as ta, resolveDirective as oa, withDirectives as la, openBlock as k, createElementBlock as de, normalizeStyle as qe, unref as L, normalizeClass as je, Fragment as na, renderList as ua, createBlock as M, createVNode as Ie, createCommentVNode as F, createElementVNode as sa, watch as ia } from "vue";
|
|
2
|
+
import ra from "./assemblys/object-render.vue.mjs";
|
|
3
|
+
import { updateOptionDatasources as va, updateChartDatasources as pa } from "../utils/page-helper-util.mjs";
|
|
4
|
+
import { queryPageDesignWhenPreview as ca, queryPageDesignByCode as ma, convertToPageContext as ga, packageAdditionalMapWithLocationSearch as da, packageAdditionalMapWithRoute as fa, packageAdditionalMapWithPageRequest as ya } from "../utils/page-init-util.mjs";
|
|
5
|
+
import { addComponentRef as Ca, removePageAllRef as ha, initComponentRefState as Pa } from "../utils/global-refs.mjs";
|
|
6
|
+
import { removeCustomFuncFromWindow as ka, handleEvent as ae, initPageEvents as ba, getCustomFunc as xa } from "../utils/events/event-util.mjs";
|
|
7
|
+
import Ta from "./assemblys/common/export-form-report-dialog.vue.mjs";
|
|
8
|
+
import Sa from "./assemblys/common/task-informition-dialog.vue.mjs";
|
|
9
|
+
import $a from "./assemblys/common/remove-signer-dialog.vue.mjs";
|
|
10
|
+
import Da from "./assemblys/common/remove-transactor-dialog.vue.mjs";
|
|
11
|
+
import u from "../utils/eventBus.mjs";
|
|
12
|
+
import { doFileTaskFunc as Oe, getTaskInformitions as Ra, getRemoveSigner as wa, getRemoveTransactor as Na, getFormData as Ma, exportFormReport as Fa, doImportFinally as qa, doAddSigner as ja, doCreateCopyTask as Ia, doAssign as Oa, doAddTransactor as _a, doReturnTaskTo as Aa, doRemoveSigners as Ea, doRemoveTransactors as Wa, updateValuesWhenCloseDialog as Va, refreshFormOrListPage as Ba, saveChartConditionBase as Ua, getAdditionalParamMap as La } from "../utils/events/standard-event.mjs";
|
|
13
|
+
import { initPageApiUtil as Ja } from "../utils/api/api-util.mjs";
|
|
14
|
+
import { ElMessage as fe } from "element-plus";
|
|
15
|
+
import { useI18n as za } from "vue-i18n";
|
|
16
|
+
import { isMobileBrowser as Ha, setSessionCache as Qa, DepartmentUserTree as Ga, jumpToPage as Ka, getUsername as Xa, store as Ya } from "agilebuilder-ui";
|
|
17
|
+
import { i18nValidateRulesMessage as Za } from "../utils/events/validator-util.mjs";
|
|
18
|
+
import et from "./super-page-dialog.vue.mjs";
|
|
19
|
+
/* empty css */
|
|
20
|
+
import { useRoute as at, useRouter as tt } from "vue-router";
|
|
21
|
+
import { deepCopy as te, refreshMobileDialogType as ot } from "../utils/common-util.mjs";
|
|
22
|
+
import { usePageContextStore as lt } from "../utils/page-store.mjs";
|
|
23
|
+
import nt from "./assemblys/common/save-chart-condition-dialog.vue.mjs";
|
|
24
|
+
import _e from "../utils/ai-chat-util.mjs";
|
|
25
|
+
import ut from "./assemblys/page-bottom.vue.mjs";
|
|
26
|
+
import st from "./assemblys/common/event-call-component.vue.mjs";
|
|
27
|
+
import { scrollIntoViewWithContainer as it } from "../utils/anchor-util.mjs";
|
|
28
|
+
const _t = Ye({ __name: "super-page", props: { pageCode: { type: String, required: !1 }, pageVersion: { type: Number, required: !1 }, pageId: { type: Number, required: !1 }, dataId: { type: Number, required: !1 }, pageDesign: { type: Object, required: !1 }, isTest: { type: Boolean, required: !1 }, dimensions: { type: String, required: !1 }, publishVersion: { type: Number, required: !1 }, taskId: { type: Number, required: !1 }, pageRequest: { type: Object, required: !1 }, contentHeight: { type: [String, Number], default: null }, isDialog: { type: Boolean, required: !1 }, isPreview: { type: Boolean, required: !1 } }, emits: ["open", "opened", "close", "closed"], setup(Ae, { expose: Ee, emit: rt }) {
|
|
29
|
+
const J = lt(), { t: oe } = za();
|
|
30
|
+
Ja();
|
|
31
|
+
const f = Ae, S = n(!1), ye = n(""), We = { list: "list-page-container", form: "form-page-container" }, O = n(null), Ce = n([]), he = n(""), Pe = n({}), z = n(null), r = n(null), H = n(!1), Q = n(!1), G = n(!1), K = n(!1), X = n(!1), A = n(!1), i = n(null), E = n(!1), le = n([]), ne = n([]), ue = n([]), W = n(!1), V = n(!1), Y = n(null), se = n(!1), Z = n(!1), $ = n(null), m = n(null), R = n(null), b = n(null);
|
|
32
|
+
let t = n(null);
|
|
33
|
+
const ie = n(null), re = n(null), B = at(), ke = n(0), w = Ha();
|
|
34
|
+
let ve, pe;
|
|
35
|
+
const ee = n(!1), be = n(null), ce = n(!1), xe = n(null);
|
|
36
|
+
let me = "";
|
|
37
|
+
me = navigator.userAgent.indexOf("Html5Plus") > 0 ? "app" : "browser";
|
|
38
|
+
const Ve = !(!w || !me || me !== "app"), ge = n(!1);
|
|
39
|
+
function Te(e) {
|
|
40
|
+
const o = ga(e);
|
|
41
|
+
return o.isTest = f.isTest, o.isTest && f.dimensions && (o.dimensions = f.dimensions), f.isDialog || (da(o.entity.request), fa(B, o.entity.request)), ya(f.pageRequest, o.entity.request), o;
|
|
42
|
+
}
|
|
43
|
+
function Se(e) {
|
|
44
|
+
var g;
|
|
45
|
+
const o = Te(e);
|
|
46
|
+
if (t.value = o, t.value == null) return;
|
|
47
|
+
t.value.isDialog = f.isDialog === !0, ye.value = We[t.value.pageType] ?? "", ve = setTimeout(() => {
|
|
48
|
+
(function(a, s) {
|
|
49
|
+
if (!s || s.length == 0) return;
|
|
50
|
+
const y = s.filter((D) => D.filterType != "remote");
|
|
51
|
+
y && y.length > 0 && va(a, y, void 0);
|
|
52
|
+
})(t.value, e.initOptionConfigs);
|
|
53
|
+
}, 0), pe = setTimeout(() => {
|
|
54
|
+
e.initChartServiceConfigs, function(a, s) {
|
|
55
|
+
if (!(!s || s.length == 0) && (a.initChartData = {}, a.initChartData.data = te(a.entity.data), a.initChartData.page = te(a.entity.page), s && s.length > 0)) {
|
|
56
|
+
const y = s.filter((D) => D.initializationQuery !== !1);
|
|
57
|
+
pa(a, y, null, !0);
|
|
58
|
+
}
|
|
59
|
+
}(t.value, e.initChartServiceConfigs);
|
|
60
|
+
}, 200), t.value.initDataSources = [], Pa(t.value), Ce.value = t.value.items ? t.value.items : [];
|
|
61
|
+
const l = t.value.runtime ? t.value.runtime : {};
|
|
62
|
+
he.value = l.class, Pe.value = l.style, ba(e, t.value), Za(t.value.rules), ae(null, t.value, e, "beforeload");
|
|
63
|
+
const C = t.value.code;
|
|
64
|
+
return J.setPageContext(t.value), i.value = C + "_", u.$on(i.value + "export-form-report", (a) => {
|
|
65
|
+
r.value = a, ie.value = a.configureObj, re.value = a.pageContext, ce.value = !1, H.value = !0;
|
|
66
|
+
}), u.$on(i.value + "export-pdf-report", (a) => {
|
|
67
|
+
r.value = a, ie.value = a.configureObj, re.value = a.pageContext, ce.value = !0, H.value = !0;
|
|
68
|
+
}), u.$on(i.value + "import-file", (a) => {
|
|
69
|
+
r.value = a, q.value.click();
|
|
70
|
+
}), u.$on(i.value + "assign-task", (a) => {
|
|
71
|
+
r.value = a, X.value = !0, A.value = !1;
|
|
72
|
+
}), u.$on(i.value + "copy-task", (a) => {
|
|
73
|
+
r.value = a, K.value = !0, A.value = !0;
|
|
74
|
+
}), u.$on(i.value + "add-signer", (a) => {
|
|
75
|
+
r.value = a, Q.value = !0, A.value = !0;
|
|
76
|
+
}), u.$on(i.value + "choose-return-node", (a) => {
|
|
77
|
+
r.value = a, Ra(a).then((s) => {
|
|
78
|
+
le.value = s, E.value = !0;
|
|
79
|
+
}).catch((s) => {
|
|
80
|
+
E.value = !1;
|
|
81
|
+
});
|
|
82
|
+
}), u.$on(i.value + "remove-signer", (a) => {
|
|
83
|
+
r.value = a, wa(a).then((s) => {
|
|
84
|
+
Y.value = a.pageContext.completeTaskParam.taskId, ne.value = s, W.value = !0;
|
|
85
|
+
}).catch((s) => {
|
|
86
|
+
W.value = !1;
|
|
87
|
+
});
|
|
88
|
+
}), u.$on(i.value + "add-transactor", (a) => {
|
|
89
|
+
r.value = a, G.value = !0, A.value = !0;
|
|
90
|
+
}), u.$on(i.value + "remove-transactor", (a) => {
|
|
91
|
+
r.value = a, Na(a).then((s) => {
|
|
92
|
+
Y.value = a.pageContext.completeTaskParam.taskId, ue.value = s, V.value = !0;
|
|
93
|
+
}).catch((s) => {
|
|
94
|
+
V.value = !1;
|
|
95
|
+
});
|
|
96
|
+
}), u.$on(i.value + "prohibit-edit", (a) => {
|
|
97
|
+
}), u.$on(i.value + "open-dialog", (a) => {
|
|
98
|
+
var s, y, D;
|
|
99
|
+
m.value = a.pageContext, R.value = a.configureObj, b.value = a.eventParams, s = R.value, y = b.value, D = a.jumpPageSetting, function(x, d, N) {
|
|
100
|
+
return new Promise((p, c) => {
|
|
101
|
+
var T;
|
|
102
|
+
if (N) p(N);
|
|
103
|
+
else {
|
|
104
|
+
const v = x && x.props && x.props.linkPage ? x.props.linkPage : null;
|
|
105
|
+
if (v && v.jumpPageUrl) {
|
|
106
|
+
v.isNewPage !== !1 && v.isNewPage !== !0 && (v.isNewPage = !0);
|
|
107
|
+
const P = La(t), h = !!((T = R.value.props.linkPage) != null && T.isNeedId);
|
|
108
|
+
R.value;
|
|
109
|
+
let j = h && d ? d.id : null, Ne = h && d ? d.ids : null, I = d ? d.selections : [], _ = d ? d.row : null;
|
|
110
|
+
if (!_) if (_ = {}, I && I.length > 0) _ = I.length > 1 ? I : I[0];
|
|
111
|
+
else {
|
|
112
|
+
const U = m.value.entity.data, Me = m.value.entity.page;
|
|
113
|
+
Me && Object.assign(_, Me), U && Object.assign(_, U);
|
|
114
|
+
}
|
|
115
|
+
const Xe = te(m.value.entity.page);
|
|
116
|
+
v._pageData = Xe, Ka(v, null, j, _, P, Ne).then((U) => {
|
|
117
|
+
U.isNeedId = h, p(U);
|
|
118
|
+
});
|
|
119
|
+
} else p(!1);
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
}(s, y, D).then((x) => {
|
|
123
|
+
if (x) {
|
|
124
|
+
let d = {};
|
|
125
|
+
const N = s && s.props && s.props.linkPage ? s.props.linkPage : null;
|
|
126
|
+
N && Object.assign(d, te(N)), Object.assign(d, x), ot(d, w);
|
|
127
|
+
const p = d.jumpMode, c = d;
|
|
128
|
+
if (b.value || (b.value = {}), b.value.paramStoreId = d.paramStoreId, c.parentPageCode = m.value.code, c.parentPageVersion = m.value.version, c.isNewPage = !0, p === "popup" || p === "refresh") {
|
|
129
|
+
const T = c.linkType;
|
|
130
|
+
(function(v, P) {
|
|
131
|
+
const h = Xa();
|
|
132
|
+
return new Promise((j, Ne) => {
|
|
133
|
+
if (h) if (P !== "popup" && !w || m.value.systemCode === v.customSystem) j(!0);
|
|
134
|
+
else if (v.customSystem) {
|
|
135
|
+
const I = v.customSystem;
|
|
136
|
+
Ya.dispatch("getCurrentUserPermissions", { loginName: h, systemCode: I }).then(() => {
|
|
137
|
+
j(!0);
|
|
138
|
+
}).catch(() => {
|
|
139
|
+
j(!0);
|
|
140
|
+
});
|
|
141
|
+
} else fe({ showClose: !0, type: "error", message: oe("superPageRuntimeMessage.popMsg") }), console.error("弹框参数缺少customSystem参数,parentPageContext.value.systemCode={}", m.value.systemCode), j(!1);
|
|
142
|
+
else j(!0);
|
|
143
|
+
});
|
|
144
|
+
})(c, p).then((v) => {
|
|
145
|
+
if (v) if (w && (m.value.systemCode !== c.customSystem || T && T === "url")) if (Ve) {
|
|
146
|
+
ge.value = !0;
|
|
147
|
+
const P = c._path;
|
|
148
|
+
location.href = P;
|
|
149
|
+
} else c._isIframe = !0, p === "refresh" && (c.dialogType = "drawer", c.jumpPageWidth = "100%"), $.value = c, Z.value = !0;
|
|
150
|
+
else c._isIframe = !1, p === "popup" ? ($.value = c, Z.value = !0) : p === "refresh" && Re.push({ path: "/dsc/page", query: c });
|
|
151
|
+
}), u.$on(i.value + "close-dialog", (v) => {
|
|
152
|
+
(function(P) {
|
|
153
|
+
const h = P.jumpMode;
|
|
154
|
+
h && h === "popup" ? we(P) : (w && u.$off(i.value + "close-dialog"), Re.go(-1));
|
|
155
|
+
})(v);
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
} else console.error("页面配置信息不存在");
|
|
159
|
+
});
|
|
160
|
+
}), u.$on(i.value + "save-chart-condition", (a) => {
|
|
161
|
+
ee.value = !0;
|
|
162
|
+
}), u.$on("pageLoaded", () => {
|
|
163
|
+
const a = { runtime: { events: t.value.events }, systemCode: "", systemVersion: 0, code: "", version: 0, workflowCode: "", workflowVersion: 0, name: "", uuid: "", label: "" };
|
|
164
|
+
t.value.canClick = !0, S.value = !1, ae(null, t.value, a, "load"), it(J.getAutoAnchorComponentConditions(), t.value);
|
|
165
|
+
}), u.$on(i.value + "event-call-component", (a) => {
|
|
166
|
+
var s;
|
|
167
|
+
(s = xe.value) == null || s.renderComponent(a.componentName, a.componentProps);
|
|
168
|
+
}), ia(() => t.value.isRefresh, (a) => {
|
|
169
|
+
a && (S.value = !0, t.value.canClick = !1, t.value.clickUuid = null, setTimeout(() => {
|
|
170
|
+
S.value = !1, t.value.canClick = !0;
|
|
171
|
+
}, 3e3), ke.value++, t.value.isRefresh = !1);
|
|
172
|
+
}), Ma(t.value, null, (g = f.pageRequest) == null ? void 0 : g.isNeedId);
|
|
173
|
+
}
|
|
174
|
+
const Be = Ze();
|
|
175
|
+
function $e() {
|
|
176
|
+
Fe(() => {
|
|
177
|
+
var o, l;
|
|
178
|
+
const e = O.value.parentNode ? O.value.parentNode : O.value;
|
|
179
|
+
if (t.value && (t.value.pageRuntimeStyle || (t.value.pageRuntimeStyle = {}), !w)) {
|
|
180
|
+
let C = f.contentHeight;
|
|
181
|
+
Number(C) && (C += "px");
|
|
182
|
+
const g = C ?? ((l = (o = e == null ? void 0 : e.getBoundingClientRect) == null ? void 0 : o.call(e)) == null ? void 0 : l.height) ?? 0;
|
|
183
|
+
g && (t.value.pageRuntimeStyle.height = g);
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
}
|
|
187
|
+
function De() {
|
|
188
|
+
const e = t.value.entity.data, o = e.ID == null ? e.id : e.ID;
|
|
189
|
+
B && B.query && B.query._t_ && o && Qa(B.query._t_ + "_id", o);
|
|
190
|
+
}
|
|
191
|
+
function Ue() {
|
|
192
|
+
H.value = !1, r.value = null;
|
|
193
|
+
}
|
|
194
|
+
function Le(e, o) {
|
|
195
|
+
Fa(r.value.pageContext, r.value.configureObj, o, ce.value);
|
|
196
|
+
}
|
|
197
|
+
ea(() => {
|
|
198
|
+
(function() {
|
|
199
|
+
if (J.resetComponentCounters(), J.resetAutoAnchorComponentConditions(), f.isPreview && f.pageDesign) {
|
|
200
|
+
S.value = !0;
|
|
201
|
+
let e = f.pageDesign;
|
|
202
|
+
const o = Te(e);
|
|
203
|
+
ca(e, o).then((l) => {
|
|
204
|
+
e.contextParam = l.contextParam, e.branchFieldAuth = l.branchFieldAuth, e.systemParam = l.systemParam, e.isWorkflowEntity = l.isWorkflowEntity, e.dataTypeMaps = l.dataTypeMaps, z.value = e, Se(e).then(() => {
|
|
205
|
+
De(), se.value = !0, w || Oe(t.value), $e();
|
|
206
|
+
});
|
|
207
|
+
}).finally(() => {
|
|
208
|
+
S.value = !1;
|
|
209
|
+
});
|
|
210
|
+
} else f.pageCode && (S.value = !0, ma(f.pageCode).then((e) => {
|
|
211
|
+
if (e && e.designJson) {
|
|
212
|
+
const o = e.designJson, l = JSON.parse(o);
|
|
213
|
+
l.contextParam = e.contextParam, l.branchFieldAuth = e.branchFieldAuth, l.systemParam = e.systemParam, l.isWorkflowEntity = e.isWorkflowEntity, l.dataTypeMaps = e.dataTypeMaps, z.value = l, Se(l).then(() => {
|
|
214
|
+
De(), se.value = !0, w || Oe(t.value), $e();
|
|
215
|
+
});
|
|
216
|
+
}
|
|
217
|
+
}).catch((e) => {
|
|
218
|
+
S.value = !1;
|
|
219
|
+
}).finally(() => {
|
|
220
|
+
S.value = !1, t.value.pageType === "form" && _e.setPageToChatStore(Be, t.value);
|
|
221
|
+
}));
|
|
222
|
+
})();
|
|
223
|
+
}), aa(() => {
|
|
224
|
+
Fe(() => {
|
|
225
|
+
t.value && O.value && Ca(t.value, "-1", O);
|
|
226
|
+
});
|
|
227
|
+
}), ta(() => {
|
|
228
|
+
ha(t.value), z.value && ka(z.value), u.$off(i.value + "export-form-report"), u.$off(i.value + "export-pdf-report"), u.$off(i.value + "import-file"), u.$off(i.value + "assign-task"), u.$off(i.value + "copy-task"), u.$off(i.value + "add-signer"), u.$off(i.value + "choose-return-node"), u.$off(i.value + "remove-signer"), u.$off(i.value + "prohibit-edit"), u.$off(i.value + "open-dialog"), u.$off(i.value + "save-chart-condition"), u.$off("pageLoaded"), t.value && ae(null, t.value, t.value, "onUnmounted"), ve && clearTimeout(ve), pe && clearTimeout(pe);
|
|
229
|
+
});
|
|
230
|
+
const q = n(null);
|
|
231
|
+
function Je(e) {
|
|
232
|
+
Q.value === !0 && (Q.value = !1, ja(r.value, e)), K.value === !0 && (K.value = !1, Ia(r.value, e)), X.value === !0 && (X.value = !1, Oa(r.value, e)), G.value === !0 && (G.value = !1, _a(r.value, e));
|
|
233
|
+
}
|
|
234
|
+
function ze(e) {
|
|
235
|
+
le.value = [], E.value = !1, Aa(r.value, e);
|
|
236
|
+
}
|
|
237
|
+
function He(e) {
|
|
238
|
+
ne.value = [], W.value = !1, Ea(r.value, e);
|
|
239
|
+
}
|
|
240
|
+
function Qe(e) {
|
|
241
|
+
ue.value = [], V.value = !1, Wa(r.value, e);
|
|
242
|
+
}
|
|
243
|
+
const Re = tt();
|
|
244
|
+
function we(e) {
|
|
245
|
+
var D, x, d, N;
|
|
246
|
+
if (ge.value) return ge.value = !1, void window.history.go(-1);
|
|
247
|
+
const o = (D = $.value) == null ? void 0 : D.closeEvent, l = (x = $.value) == null ? void 0 : x.isRefreshWhenClosePopup;
|
|
248
|
+
let C, g;
|
|
249
|
+
const a = m.value.tableName;
|
|
250
|
+
let s;
|
|
251
|
+
const y = b.value.columnProp ? b.value.columnProp : null;
|
|
252
|
+
if (y) {
|
|
253
|
+
const p = (N = (d = R.value) == null ? void 0 : d.items) == null ? void 0 : N.filter((c) => {
|
|
254
|
+
var T, v, P, h;
|
|
255
|
+
return ((v = (T = c.props) == null ? void 0 : T.base) == null ? void 0 : v.prop) && ((h = (P = c.props) == null ? void 0 : P.base) == null ? void 0 : h.prop) === y;
|
|
256
|
+
});
|
|
257
|
+
s = p && p.length > 0 ? p[0] : null;
|
|
258
|
+
} else s = R.value;
|
|
259
|
+
if (e) {
|
|
260
|
+
const p = e.isNeedValueMapping;
|
|
261
|
+
C = e.dataModel, g = e.sourceTableName, p && Va({ parentPageContext: m.value, parentEventParams: b.value, parentConfigureObj: s, sourceModel: C, sourceTableName: g, valueMappings: $.value ? $.value.valueMappings : null });
|
|
262
|
+
}
|
|
263
|
+
if (ae(null, m.value, s, "closePopup", { sourceModel: C, sourceTableName: g, jumpPageSetting: $.value, entity: m.value.entity.data, targetTableName: a, pageContext: t.value, parentPageContext: m.value, parentConfigureObj: s, columnProp: y }), typeof o == "function") {
|
|
264
|
+
const p = e != null && e.dataModel ? [{ dataModel: e.dataModel }] : [];
|
|
265
|
+
o.apply(o, p);
|
|
266
|
+
} else (function(p, c, T) {
|
|
267
|
+
if (p) {
|
|
268
|
+
const v = xa(m.value, p);
|
|
269
|
+
v && v.apply(v, [{ pageContext: t.value, parentPageContext: m.value, parentConfigureObj: T, jumpPageSetting: $.value, columnProp: c }]);
|
|
270
|
+
}
|
|
271
|
+
})(o, y, s);
|
|
272
|
+
Ba(m.value, R.value, l, l !== void 0 && l === !1 ? "noOperation" : null), m.value = null, R.value = null, b.value = null, u.$off(i.value + "close-dialog"), Z.value = !1;
|
|
273
|
+
}
|
|
274
|
+
function Ge(e) {
|
|
275
|
+
Ua(t.value, e).then((o) => {
|
|
276
|
+
fe({ showClose: !0, type: "success", message: oe("superPageRuntimeMessage.successfulSave") }), be.value.refreshConditionList();
|
|
277
|
+
});
|
|
278
|
+
}
|
|
279
|
+
function Ke(e) {
|
|
280
|
+
const o = e.queryCondition;
|
|
281
|
+
let l = {};
|
|
282
|
+
o && (l = JSON.parse(o)), l && l.data && Object.assign(t.value.entity.data, l.data), l && l.page && Object.assign(t.value.entity.page, l.page), ee.value = !1;
|
|
283
|
+
}
|
|
284
|
+
return Ee({ pickFileDone: function(e) {
|
|
285
|
+
let o = e.componentId, l = e.listCode;
|
|
286
|
+
(o || l) && (l ? u.$emit(l + "-pickFileDone", e) : u.$emit(o + "-pickFileDone", e));
|
|
287
|
+
}, uploadFileDone: function(e) {
|
|
288
|
+
let o = e.componentId, l = e.listCode;
|
|
289
|
+
(o || l) && (l ? u.$emit(l + "-uploadFileDone", e) : u.$emit(o + "-uploadFileDone", e));
|
|
290
|
+
}, scanDone: function(e) {
|
|
291
|
+
let o = e.componentId, l = e.listCode;
|
|
292
|
+
(o || l) && (l ? u.$emit(l + "-scanDone", e) : u.$emit(o + "-scanDone", e));
|
|
293
|
+
}, getFormFormatData: function() {
|
|
294
|
+
return _e.getFormFormatDataUtil(t.value);
|
|
295
|
+
} }), (e, o) => {
|
|
296
|
+
var C;
|
|
297
|
+
const l = oa("loading");
|
|
298
|
+
return la((k(), de("div", { class: je(["app-container runtime-page-container", [ye.value]]), style: qe((C = L(t)) == null ? void 0 : C.pageRuntimeStyle), "element-loading-text": "拼命加载中" }, [se.value ? (k(), de("div", { ref_key: "thisRef", ref: O, key: ke.value, class: je(["runtime-page-container-view", he.value]), style: qe(Pe.value) }, [(k(!0), de(na, null, ua(Ce.value, (g, a) => (k(), M(ra, { key: g.uuid, configure: g, pageContext: L(t) }, null, 8, ["configure", "pageContext"]))), 128)), Ie(ut, { pageContext: L(t) }, null, 8, ["pageContext"]), H.value ? (k(), M(Ta, { key: 0, configure: ie.value, pageContext: re.value, onClose: Ue, onExport: Le }, null, 8, ["configure", "pageContext"])) : F("", !0), sa("input", { ref_key: "_selectFile_", ref: q, type: "file", name: "_selectFile_", style: { display: "none" }, onChange: o[0] || (o[0] = (g) => function() {
|
|
299
|
+
if (r.value) {
|
|
300
|
+
if (!q.value || q.value.value === "" || q.value.value === null) return;
|
|
301
|
+
const a = q.value.files[0];
|
|
302
|
+
a ? (q.value.value = null, qa(r.value, a)) : fe({ showClose: !0, type: "warning", message: oe("superPageRuntimeMessage.noFileSelected") });
|
|
303
|
+
}
|
|
304
|
+
}()) }, null, 544), Q.value || K.value || X.value || G.value ? (k(), M(L(Ga), { key: 1, width: "60%", multiple: A.value, onClose: Je }, null, 8, ["multiple"])) : F("", !0), E.value ? (k(), M(Sa, { key: 2, "task-informitions": le.value, onClose: o[1] || (o[1] = (g) => E.value = !1), onResult: ze }, null, 8, ["task-informitions"])) : F("", !0), W.value ? (k(), M($a, { key: 3, "task-id": Y.value, "active-tasks": ne.value, onClose: o[2] || (o[2] = (g) => W.value = !1), onResult: He }, null, 8, ["task-id", "active-tasks"])) : F("", !0), V.value ? (k(), M(Da, { key: 4, "task-id": Y.value, "transactor-info": ue.value, onClose: o[3] || (o[3] = (g) => V.value = !1), onResult: Qe }, null, 8, ["task-id", "transactor-info"])) : F("", !0), Z.value ? (k(), M(et, { key: 5, parentPageContext: m.value, parentPageEventParams: b.value, jumpPageSetting: $.value, onClose: o[4] || (o[4] = (g) => we()) }, null, 8, ["parentPageContext", "parentPageEventParams", "jumpPageSetting"])) : F("", !0), ee.value ? (k(), M(nt, { key: 6, ref_key: "chartCondtionRef", ref: be, pageContext: L(t), onClose: o[5] || (o[5] = (g) => ee.value = !1), onSave: Ge, onConfirm: Ke }, null, 8, ["pageContext"])) : F("", !0), Ie(st, { ref_key: "eventCallComponentRef", ref: xe }, null, 512)], 6)) : F("", !0)], 6)), [[l, S.value]]);
|
|
305
|
+
};
|
|
306
|
+
} });
|
|
307
|
+
export {
|
|
308
|
+
_t as default
|
|
309
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { default as r } from "./components/runtime/views/super-page.vue.mjs";
|
|
2
|
+
import { default as m } from "./components/runtime/views/super-page-dialog.vue.mjs";
|
|
3
|
+
/* empty css */
|
|
4
|
+
import { default as n } from "./components/runtime/views/home-chart.vue.mjs";
|
|
5
|
+
import { default as s } from "./components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.mjs";
|
|
6
|
+
import { getComponentOptionConfigs as g, getComponentOptionConfigsBase as i } from "./components/runtime/utils/page-helper-util.mjs";
|
|
7
|
+
import { FuncType as C, getFunctionInfo as d, getStandPermissionInfo as l } from "./components/runtime/utils/page-permission-util.mjs";
|
|
8
|
+
import { getCustomTheme as F, getCustomThemeOptions as N, getNumFormatter as S } from "./components/runtime/utils/charts/chart-util.mjs";
|
|
9
|
+
import { default as O } from "./i18n/langs/cn.mjs";
|
|
10
|
+
import { default as T } from "./i18n/langs/en.mjs";
|
|
11
|
+
import { getDateShortCuts as D } from "./components/runtime/utils/form/date-shortcuts.mjs";
|
|
12
|
+
import { getListCode as I } from "./components/runtime/utils/common-util.mjs";
|
|
13
|
+
import { default as A } from "./components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs";
|
|
14
|
+
export {
|
|
15
|
+
C as FuncType,
|
|
16
|
+
n as HomeChart,
|
|
17
|
+
s as HomeChartConditionRender,
|
|
18
|
+
m as SuperPageDialogNew,
|
|
19
|
+
r as SuperPageNew,
|
|
20
|
+
A as YxAffix,
|
|
21
|
+
O as cn,
|
|
22
|
+
T as en,
|
|
23
|
+
g as getComponentOptionConfigs,
|
|
24
|
+
i as getComponentOptionConfigsBase,
|
|
25
|
+
F as getCustomTheme,
|
|
26
|
+
N as getCustomThemeOptions,
|
|
27
|
+
D as getDateShortCuts,
|
|
28
|
+
d as getFunctionInfo,
|
|
29
|
+
I as getListCode,
|
|
30
|
+
S as getNumFormatterForChart,
|
|
31
|
+
l as getStandPermissionInfo
|
|
32
|
+
};
|