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
package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs}
RENAMED
|
@@ -1,30 +1,29 @@
|
|
|
1
|
-
var
|
|
2
|
-
const
|
|
3
|
-
function
|
|
4
|
-
return
|
|
1
|
+
var c = ((o) => (o.AUTHENTICATED = "AUTHENTICATED", o.ANONYMOUS = "ANONYMOUS", o.AUTHORIZED = "AUTHORIZED", o))(c || {});
|
|
2
|
+
const a = { page: { label: "页面", functions: [{ label: "页面", path: "temp" }] }, gets: { group: "表单标准功能", label: "获取表单数据", functions: [{ funcType: "AUTHENTICATED", path: "/commons/gets$POST" }] }, workflowGets: { group: "标准流程", label: "获取表单及流程数据", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/gets$POST" }] }, save: { group: "表单标准功能", label: "暂存", functions: [{ code: "create", label: "暂存", path: "/commons$POST" }, { code: "update", label: "修改", path: "/commons$POST" }] }, submit: { group: "表单标准功能", label: "提交", functions: [{ path: "/commons/submits$POST" }] }, exportForm: { group: "表单标准功能", label: "导出报告", functions: [{ path: "/commons/export-reports$POST" }] }, exportPDF: { group: "表单标准功能", label: "导出PDF", functions: [{ path: "/commons/exportPDF$POST" }] }, agree: { group: "表单标准功能", label: "同意", functions: [{ path: "/commons/approves$POST" }] }, disagree: { group: "表单标准功能", label: "不同意", functions: [{ path: "/commons/refuses$POST" }] }, back: { group: "表单标准功能", label: "返回", functions: [] }, workflowSave: { group: "流程表单功能", label: "暂存", functions: [{ label: "暂存", code: "save", funcType: "AUTHENTICATED", path: "/workflow-commons$POST" }, { label: "修改", code: "update", funcType: "AUTHENTICATED", path: "/workflow-commons$PUT" }] }, workflowStart: { group: "流程表单功能", label: "起草", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/start$POST" }] }, submitProcess: { group: "流程表单功能", label: "提交流程", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/submit$POST" }] }, submitTask: { group: "流程表单功能", label: "提交任务", functions: [{ funcType: "AUTHENTICATED", code: "completeTask.submit", path: "/workflow-commons/complete-tasks$POST" }] }, approve: { group: "流程表单功能", label: "同意", functions: [{ funcType: "AUTHENTICATED", code: "completeTask.approve", path: "/workflow-commons/complete-tasks$POST" }] }, refuse: { group: "流程表单功能", label: "不同意", functions: [{ funcType: "AUTHENTICATED", code: "completeTask.refuse", path: "/workflow-commons/complete-tasks$POST" }] }, assign: { group: "流程表单功能", label: "指派", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/assigns$POST" }] }, drawTask: { group: "流程表单功能", label: "领取", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/draw-tasks$POST" }] }, abandonReceive: { group: "流程表单功能", label: "放弃领取", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/abandon-receives$POST" }] }, readed: { group: "流程表单功能", label: "已阅", functions: [{ funcType: "AUTHENTICATED", code: "completeTask.readed", path: "/workflow-commons/complete-tasks$POST" }] }, agreement: { group: "流程表单功能", label: "赞成", functions: [{ funcType: "AUTHENTICATED", code: "completeTask.agreement", path: "/workflow-commons/complete-tasks$POST" }] }, oppose: { group: "流程表单功能", label: "反对", functions: [{ funcType: "AUTHENTICATED", code: "completeTask.oppose", path: "/workflow-commons/complete-tasks$POST" }] }, kiken: { group: "流程表单功能", label: "弃权", functions: [{ funcType: "AUTHENTICATED", code: "completeTask.kiken", path: "/workflow-commons/complete-tasks$POST" }] }, addSigner: { group: "流程表单功能", label: "加签", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/add-signers$POST" }] }, removeSigner: { group: "流程表单功能", label: "减签", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/remove-signers$POST" }, { code: "getRemoveSigners", label: "获取可减签人员", funcType: "AUTHENTICATED", path: "/workflow-commons/get-remove-signers$POST" }] }, copyTask: { group: "流程表单功能", label: "抄送", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/copies$POST" }] }, retrieveTask: { group: "流程表单功能", label: "取回", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/retrieves$POST" }] }, returnToPreviousTask: { group: "流程表单功能", label: "驳回", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/return-to-previous-tasks$POST" }] }, returnTaskTo: { group: "流程表单功能", label: "退回", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/returnTaskTo$POST" }, { code: "returnableTaskInformation", label: "获取可退回环节信息", funcType: "AUTHENTICATED", path: "/workflow-commons/returnable-task/{taskId}$POST" }] }, endInstance: { group: "流程表单功能", label: "强制结束", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/end-instance$POST" }] }, extractWorkflow: { group: "流程表单功能", label: "抽单", functions: [{ label: "发起抽单", code: "initiateExtract", funcType: "AUTHENTICATED", path: "/workflow-commons/initiate-extract$POST" }] }, cancelExtractWorkflow: { group: "流程表单功能", label: "取消抽单", functions: [{ label: "取消抽单", code: "cancelExtract", funcType: "AUTHENTICATED", path: "/workflow-commons/cancel-extract$POST" }] }, approveExtractWorkflow: { group: "流程表单功能", label: "同意抽单", functions: [{ label: "同意抽单", code: "approveExtract", funcType: "AUTHENTICATED", path: "/workflow-commons/approve-extract$POST" }] }, refuseExtractWorkflow: { group: "流程表单功能", label: "不同意抽单", functions: [{ label: "不同意抽单", code: "refuseExtract", funcType: "AUTHENTICATED", path: "/workflow-commons/refuse-extract$POST" }] }, listData: { group: "列表功能", label: "列表数据", functions: [{ funcType: "AUTHENTICATED", path: "/commons/list$POST" }] }, listSubData: { group: "列表功能", label: "列表子级", functions: [{ funcType: "AUTHENTICATED", path: "/commons/list-subs$POST" }] }, saveList: { group: "列表功能", label: "暂存", props: { base: { type: "info", plain: !0 } }, functions: [{ code: "create", label: "暂存", path: "/commons$POST" }, { funcType: "AUTHENTICATED", code: "update", label: "修改", path: "/commons$POST" }] }, delete: { group: "列表功能", label: "删除", props: { base: { type: "danger", plain: !0 } }, functions: [{ path: "/commons/{tableName}$DELETE" }] }, submitList: { group: "列表功能", label: "提交", props: { base: { type: "primary" } }, functions: [{ path: "/commons/batch-submits$POST" }] }, agreeList: { group: "列表功能", label: "同意", props: { base: { type: "success", plain: !0 } }, functions: [{ path: "/commons/batch-approves$POST" }] }, disagreeList: { group: "列表功能", label: "不同意", props: { base: { type: "danger", plain: !0 } }, functions: [{ path: "/commons/batch-refuses$POST" }] }, import: { group: "列表功能", label: "导入", props: { base: { type: "primary", plain: !0 } }, functions: [{ path: "/commons/import-data$POST" }] }, export: { group: "列表功能", label: "导出", props: { base: { type: "success", plain: !0 } }, functions: [{ path: "/commons/export-list-data$POST" }] }, search: { group: "列表功能", label: "查询", functions: [] }, showMobileSearch: { group: "列表功能", label: "显示移动端查询区域", functions: [] }, downloadTemplate: { group: "列表功能", label: "下载导入模板", functions: [{ path: "/commons/download-files$GET" }] }, lineEditCreate: { group: "列表行编辑功能", label: "新建", props: { base: { type: "primary" } }, functions: [{ code: "create", label: "暂存", path: "/commons$POST" }] }, lineEditSave: { group: "列表行编辑功能", label: "保存", props: { base: { type: "success", text: !0 } }, functions: [{ code: "create", label: "保存", path: "/commons$POST" }, { code: "update", label: "修改", path: "/commons$POST" }] }, lineEditDelete: { group: "列表行编辑功能", label: "删除", props: { base: { type: "danger", text: !0 } }, functions: [{ code: "delete", path: "/commons/{tableName}$DELETE" }] }, lineEditUpdate: { group: "列表行编辑功能", label: "修改", props: { base: { type: "primary", text: !0 } }, functions: [{ code: "update", label: "修改", path: "/commons$POST" }] }, restoreEdit: { group: "列表行编辑功能", label: "取消", props: { base: { type: "info", text: !0 } }, functions: [] }, addTransactor: { group: "流程表单功能", label: "增加办理人", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/add-transactors$POST" }] }, removeTransactor: { group: "流程表单功能", label: "减少办理人", functions: [{ funcType: "AUTHENTICATED", path: "/workflow-commons/remove-transactors$POST" }, { code: "getRemoveTransactors", label: "获取可减少办理人员", funcType: "AUTHENTICATED", path: "/workflow-commons/get-remove-transactors$POST" }] } }, p = {};
|
|
3
|
+
function r(o) {
|
|
4
|
+
return o ? a[o] : void 0;
|
|
5
5
|
}
|
|
6
|
-
function
|
|
7
|
-
if (!
|
|
8
|
-
let
|
|
9
|
-
if (
|
|
10
|
-
for (const
|
|
11
|
-
const
|
|
12
|
-
if (
|
|
13
|
-
for (const
|
|
14
|
-
if (
|
|
15
|
-
|
|
6
|
+
function l(o) {
|
|
7
|
+
if (!o) return;
|
|
8
|
+
let e = p[o];
|
|
9
|
+
if (e == null) {
|
|
10
|
+
for (const n in a) {
|
|
11
|
+
const s = a[n].functions;
|
|
12
|
+
if (s) {
|
|
13
|
+
for (const t of s)
|
|
14
|
+
if (o === (t.code ? t.code : n)) {
|
|
15
|
+
e = t;
|
|
16
16
|
break;
|
|
17
17
|
}
|
|
18
|
-
|
|
19
|
-
if (a2) break;
|
|
18
|
+
if (e) break;
|
|
20
19
|
}
|
|
21
20
|
}
|
|
22
|
-
|
|
21
|
+
p[o] = e || "";
|
|
23
22
|
}
|
|
24
|
-
return
|
|
23
|
+
return e || void 0;
|
|
25
24
|
}
|
|
26
25
|
export {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
c as FuncType,
|
|
27
|
+
l as getFunctionInfo,
|
|
28
|
+
r as getStandPermissionInfo
|
|
30
29
|
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ref as n, nextTick as g } from "vue";
|
|
2
|
+
import { defineStore as L } from "pinia";
|
|
3
|
+
import P from "./eventBus.mjs";
|
|
4
|
+
const b = L("pageContextUtil", () => {
|
|
5
|
+
const d = n({ systemCode: "", systemVersion: -1 }), t = n(!1), i = n(!1), o = n(!1), v = n([]), l = n(0), r = n(0);
|
|
6
|
+
let a = null, s = -1, c = -1, m = 0;
|
|
7
|
+
function f() {
|
|
8
|
+
a && clearTimeout(a), a = setTimeout(() => {
|
|
9
|
+
g(() => {
|
|
10
|
+
(function() {
|
|
11
|
+
const e = l.value, u = r.value;
|
|
12
|
+
if (m++, m >= 100) return void (e > 0 && e === u && p(!0));
|
|
13
|
+
if (e > 0 && e === u) {
|
|
14
|
+
if (e === s && u === c && !t.value) return void p(!0);
|
|
15
|
+
s = e, c = u, f();
|
|
16
|
+
} else s = -1, c = -1, f();
|
|
17
|
+
})();
|
|
18
|
+
});
|
|
19
|
+
}, 30);
|
|
20
|
+
}
|
|
21
|
+
function p(e) {
|
|
22
|
+
t.value = e, C();
|
|
23
|
+
}
|
|
24
|
+
function C() {
|
|
25
|
+
!t.value || !i.value && d.value.pageType !== "list" || o.value || (P.$emit("pageLoaded"), o.value = !0);
|
|
26
|
+
}
|
|
27
|
+
return { pageContext: d, setPageContext: function(e) {
|
|
28
|
+
d.value = e;
|
|
29
|
+
}, countComponentsTotalNmber: function() {
|
|
30
|
+
l.value++, t.value = !1, o.value = !1;
|
|
31
|
+
}, countComponentsLoadedNumber: function() {
|
|
32
|
+
r.value++, f();
|
|
33
|
+
}, componentsTotalNmber: l, componentsLoadedNumber: r, setPageComponentsLoaded: p, setFormPageDataLoadState: function(e) {
|
|
34
|
+
i.value = e, C();
|
|
35
|
+
}, formPageDataLoaded: i, pageComponentsLoaded: t, restorePageLoadState: function() {
|
|
36
|
+
t.value = !1, i.value = !1, o.value = !1;
|
|
37
|
+
}, pageLoaded: o, getPageLoaded: function() {
|
|
38
|
+
return o.value;
|
|
39
|
+
}, setPageLoaded: function(e) {
|
|
40
|
+
o.value = e;
|
|
41
|
+
}, setAutoAnchorComponentConditions: function(e, u) {
|
|
42
|
+
v.value.push({ uuid: e, conditions: u });
|
|
43
|
+
}, getAutoAnchorComponentConditions: function() {
|
|
44
|
+
return v.value;
|
|
45
|
+
}, resetAutoAnchorComponentConditions: function() {
|
|
46
|
+
v.value = [];
|
|
47
|
+
}, resetComponentCounters: function() {
|
|
48
|
+
l.value = 0, r.value = 0, t.value = !1, o.value = !1, s = -1, c = -1, m = 0, a && (clearTimeout(a), a = null);
|
|
49
|
+
} };
|
|
50
|
+
});
|
|
51
|
+
export {
|
|
52
|
+
b as usePageContextStore
|
|
53
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { getBaseUrl as m } from "./common-util.mjs";
|
|
2
|
+
import { http as c } from "agilebuilder-ui";
|
|
3
|
+
import l from "./eventBus.mjs";
|
|
4
|
+
import { getPermissionCodes as f } from "./page-init-util.mjs";
|
|
5
|
+
import { getCustomFunc as d } from "./events/event-util.mjs";
|
|
6
|
+
import { $t as b } from "./i18n-util.mjs";
|
|
7
|
+
import { ExpressionEvaluator as g } from "../views/assemblys/chart/table/chart-table-util.mjs";
|
|
8
|
+
import { getFormPropName as h } from "./page-helper-util.mjs";
|
|
9
|
+
function T(s) {
|
|
10
|
+
const t = s.pageContext && s.pageContext.code;
|
|
11
|
+
l.$emit(t + "_open-dialog", s);
|
|
12
|
+
}
|
|
13
|
+
function A(s, t) {
|
|
14
|
+
const n = s.tableName;
|
|
15
|
+
if (!t && n) return n;
|
|
16
|
+
let o;
|
|
17
|
+
return s.tableRuntimes && t && s.tableRuntimes[t] && (o = JSON.parse(s.tableRuntimes[t].configure)), o && o.props && o.props.dataOrigin ? o.props.dataOrigin.tableName : null;
|
|
18
|
+
}
|
|
19
|
+
function B(s, t, n, o) {
|
|
20
|
+
const i = !(!t.props || !t.props.base) && t.props.base.showOperation, a = t.btnList;
|
|
21
|
+
t.btnList, i && a && a.forEach((e) => {
|
|
22
|
+
const p = {}, r = Object.assign({}, e.props.base);
|
|
23
|
+
if (e.name === "custom" ? r.customControl = r.name : r.elementType = "el-button", e.isPermission === void 0 || e.isPermission + "" == "true") {
|
|
24
|
+
const u = f(e, s);
|
|
25
|
+
u && (r.permission = u);
|
|
26
|
+
}
|
|
27
|
+
if (r.label = b(r.title), r.sourceButton = { uuid: e.uuid }, p.props = r, o !== void 0) {
|
|
28
|
+
const u = o(e);
|
|
29
|
+
p.onClick = (u == null ? void 0 : u.onClick) ?? u, p.eventName = u == null ? void 0 : u.eventName;
|
|
30
|
+
}
|
|
31
|
+
n.push(p);
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
function R(s, t, n, o) {
|
|
35
|
+
let i;
|
|
36
|
+
return { show: n == null ? void 0 : n.some((e) => {
|
|
37
|
+
let p = !1;
|
|
38
|
+
if (e.scopeFunc) {
|
|
39
|
+
const r = d(s, e.scopeFunc);
|
|
40
|
+
r && r.apply(r, [{ pageContext: s, configureObj: t, row: o }]) && (p = !0);
|
|
41
|
+
} else e.showCondition && e.showCondition.length > 0 ? g.evaluate(s, e.showCondition, o) && (p = !0) : p = !0;
|
|
42
|
+
if (p) return i = e, !0;
|
|
43
|
+
}), toPage: i };
|
|
44
|
+
}
|
|
45
|
+
function y(s, t) {
|
|
46
|
+
var a;
|
|
47
|
+
const n = s.tableName;
|
|
48
|
+
let o = "";
|
|
49
|
+
const i = (a = t == null ? void 0 : t.props) == null ? void 0 : a.base;
|
|
50
|
+
if (i && i.prop) {
|
|
51
|
+
const e = i.prop;
|
|
52
|
+
o = h(e);
|
|
53
|
+
}
|
|
54
|
+
return C(s, n, o);
|
|
55
|
+
}
|
|
56
|
+
function C(s, t, n) {
|
|
57
|
+
if (!n || !t) return !0;
|
|
58
|
+
const o = s.branchFieldAuth;
|
|
59
|
+
if (o) {
|
|
60
|
+
const i = o.hasAuthFields;
|
|
61
|
+
if (i && i[t] && i[t].indexOf(n) >= 0) return !0;
|
|
62
|
+
const a = o.allAuthFields;
|
|
63
|
+
if (a && a[t] && a[t].indexOf(n) >= 0) return !1;
|
|
64
|
+
}
|
|
65
|
+
return !0;
|
|
66
|
+
}
|
|
67
|
+
function E(s, t, n) {
|
|
68
|
+
const o = m(s, n);
|
|
69
|
+
return c.get(o + "/common/last-unread-file-task/" + t);
|
|
70
|
+
}
|
|
71
|
+
function U(s, t, n) {
|
|
72
|
+
const o = m(s, n);
|
|
73
|
+
return c.put(o + "/common/file-task-read/" + t);
|
|
74
|
+
}
|
|
75
|
+
export {
|
|
76
|
+
R as expressJump,
|
|
77
|
+
E as getCurrentUserFileTasks,
|
|
78
|
+
B as getOperationButtons,
|
|
79
|
+
A as getTableNameByTableUuid,
|
|
80
|
+
y as isHasFieldAuth,
|
|
81
|
+
C as isHasFieldPermissionAuth,
|
|
82
|
+
T as popupToPage,
|
|
83
|
+
U as setFileTaskRead
|
|
84
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { getBaseUrl as d, getRealRestApiPath as f } from "./common-util.mjs";
|
|
2
|
+
import { http as c } from "agilebuilder-ui";
|
|
3
|
+
import "./eventBus.mjs";
|
|
4
|
+
import { getPermissionCodes as O } from "./page-init-util.mjs";
|
|
5
|
+
import "element-plus";
|
|
6
|
+
import "./global-refs.mjs";
|
|
7
|
+
import "axios";
|
|
8
|
+
import "dayjs";
|
|
9
|
+
import "vue";
|
|
10
|
+
import "./events/print-label.mjs";
|
|
11
|
+
import "./page-store.mjs";
|
|
12
|
+
import "vue-i18n";
|
|
13
|
+
import "async-validator";
|
|
14
|
+
function L(a, e, t, s, i) {
|
|
15
|
+
return new Promise((o, m) => {
|
|
16
|
+
var n, p;
|
|
17
|
+
if (e && ((n = e.props.dataOrigin) != null && n.optionValueSetType)) if (((p = e.props.dataOrigin) == null ? void 0 : p.optionValueSetType) === "beanName") {
|
|
18
|
+
const r = a.backendUrl, g = a.systemCode, u = O(e, a);
|
|
19
|
+
let l = d(r, a.isTest) + "/dsc/commons/load-tree-node";
|
|
20
|
+
l = f(l, g, r, a.isTest);
|
|
21
|
+
const b = { pageCode: a.code, pageVersion: a.version, tableName: a.tableName, systemCode: g, functionCode: u, beanName: a.beanName };
|
|
22
|
+
e.props.dataOrigin.beanName && (b.beanName = e.props.dataOrigin.beanName), i && Object.assign(b, i), c.post(l, b).then((T) => {
|
|
23
|
+
o(T);
|
|
24
|
+
});
|
|
25
|
+
} else {
|
|
26
|
+
const r = (e.runtime ? e.runtime : {}).props;
|
|
27
|
+
r && r.staticData ? o(r.staticData) : o([]);
|
|
28
|
+
}
|
|
29
|
+
else o([]);
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
const R = (a, e, t) => new Promise((s, i) => {
|
|
33
|
+
var o;
|
|
34
|
+
if (((o = e.props.dataOrigin) == null ? void 0 : o.optionValueSetType) === "beanName") {
|
|
35
|
+
const m = t.backendUrl, n = d(m, t.isTest) + "/dsc/commons/tree-node", p = N(!1, a, e, t);
|
|
36
|
+
c.delete(n, { data: p }).then((r) => {
|
|
37
|
+
s(r);
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
}), j = (a, e, t) => new Promise((s, i) => {
|
|
41
|
+
var o;
|
|
42
|
+
if (((o = e.props.dataOrigin) == null ? void 0 : o.optionValueSetType) === "beanName") {
|
|
43
|
+
const m = t.backendUrl, n = d(m, t.isTest) + "/dsc/commons/tree-node", p = N(!0, a, e, t);
|
|
44
|
+
c.post(n, p).then((r) => {
|
|
45
|
+
s(r);
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
}), x = (a, e, t) => new Promise((s, i) => {
|
|
49
|
+
var o;
|
|
50
|
+
if (((o = e.props.dataOrigin) == null ? void 0 : o.optionValueSetType) === "beanName") {
|
|
51
|
+
const m = t.backendUrl, n = d(m, t.isTest) + "/dsc/commons/tree-node";
|
|
52
|
+
c.put(n, N(!1, a, e, t)).then((p) => {
|
|
53
|
+
s(p);
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
function N(a, e, t, s) {
|
|
58
|
+
const i = JSON.parse(JSON.stringify(e.data));
|
|
59
|
+
a && (i.nodeId = null);
|
|
60
|
+
const o = { pageCode: s.code, pageVersion: s.version, systemCode: s.systemCode, beanName: s.beanName, tableName: t.props.base.treeTableName, treeLabelProp: t.props.base.treeLabelProp, treeParentIdProp: t.props.base.treeParentIdProp, currentNode: i, parentNode: null };
|
|
61
|
+
return t.props.dataOrigin.beanName && (o.beanName = t.props.dataOrigin.beanName), e.parent && e.parent.level > 0 && (o.parentNode = e.parent.data), o;
|
|
62
|
+
}
|
|
63
|
+
export {
|
|
64
|
+
j as createTreeNode,
|
|
65
|
+
R as deleteNode,
|
|
66
|
+
L as getMenuTreeData,
|
|
67
|
+
x as updateTreeNode
|
|
68
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { defineComponent as R, ref as C, onMounted as B, nextTick as E, onUnmounted as S, resolveComponent as V, openBlock as n, createElementBlock as l, createBlock as v, unref as a, normalizeStyle as T, normalizeClass as I, withCtx as b, Fragment as i, createTextVNode as u, toDisplayString as y, createCommentVNode as o } from "vue";
|
|
2
|
+
import { SuperIcon as h } from "agilebuilder-ui";
|
|
3
|
+
import { handleAfterInitEvent as U, handleEvent as z } from "../../../../utils/events/event-util.mjs";
|
|
4
|
+
import { $t as d } from "../../../../utils/i18n-util.mjs";
|
|
5
|
+
const D = { class: "page-runtime-header-btn" }, j = R({ __name: "button-runtime", props: { pageContext: {}, configure: {} }, setup(c, { expose: _ }) {
|
|
6
|
+
const t = c, r = t.configure.runtime ? t.configure.runtime : {}, e = C(r.props ? r.props : {}), k = r.style, m = r.class;
|
|
7
|
+
function x() {
|
|
8
|
+
return e.value.state === "disabled" || g();
|
|
9
|
+
}
|
|
10
|
+
function g() {
|
|
11
|
+
return t.pageContext.canClick !== void 0 && t.pageContext.clickUuid !== void 0 && !t.pageContext.canClick && t.pageContext.clickUuid === t.configure.uuid;
|
|
12
|
+
}
|
|
13
|
+
const s = C(null);
|
|
14
|
+
return B(() => {
|
|
15
|
+
E(() => {
|
|
16
|
+
U(null, t.pageContext, t.configure, { componentRef: s.value, entity: t.pageContext.entity.data, pageData: t.pageContext.entity.page });
|
|
17
|
+
});
|
|
18
|
+
}), S(() => {
|
|
19
|
+
t.pageContext.exportNoticeInfo && t.pageContext.exportNoticeInfo.noticeInterval && clearInterval(t.pageContext.exportNoticeInfo.noticeInterval);
|
|
20
|
+
}), _({ click: function() {
|
|
21
|
+
s.value && s.value.$el.click();
|
|
22
|
+
} }), ($, p) => {
|
|
23
|
+
const N = V("el-link"), P = V("el-button");
|
|
24
|
+
return n(), l("span", D, [e.value.text ? (n(), v(N, { key: 0, ref_key: "componentRef", ref: s, disabled: x(), class: I(a(m)), style: T(a(k)), type: e.value.type, size: e.value.size, loading: g(), onClick: p[0] || (p[0] = (f) => a(z)(f, c.pageContext, c.configure, "click")) }, { default: b(() => [e.value.title && e.value.iconPosition == "right" && !e.value.isTextIcon ? (n(), l(i, { key: 0 }, [u(y(a(d)(e.value.title)) + " ", 1), e.value.iconValue ? (n(), l(i, { key: 0 }, [u(" ")], 64)) : o("", !0)], 64)) : o("", !0), e.value.iconType && e.value.iconValue ? (n(), v(a(h), { key: 1, iconType: e.value.iconType, iconValue: e.value.iconValue }, null, 8, ["iconType", "iconValue"])) : o("", !0), e.value.title && e.value.iconPosition != "right" && !e.value.isTextIcon ? (n(), l(i, { key: 2 }, [e.value.iconValue ? (n(), l(i, { key: 0 }, [u(" ")], 64)) : o("", !0), u(" " + y(a(d)(e.value.title)), 1)], 64)) : o("", !0)]), _: 1 }, 8, ["disabled", "class", "style", "type", "size", "loading"])) : (n(), v(P, { key: 1, ref_key: "componentRef", ref: s, disabled: x(), class: I(a(m)), style: T(a(k)), type: e.value.type, size: e.value.size, round: e.value.round, plain: e.value.plain, loading: g(), onClick: p[1] || (p[1] = (f) => a(z)(f, c.pageContext, c.configure, "click")) }, { default: b(() => [e.value.title && e.value.iconPosition == "right" ? (n(), l(i, { key: 0 }, [u(y(a(d)(e.value.title)) + " ", 1), e.value.iconValue ? (n(), l(i, { key: 0 }, [u(" ")], 64)) : o("", !0)], 64)) : o("", !0), e.value.iconType && e.value.iconValue ? (n(), v(a(h), { key: 1, iconType: e.value.iconType, iconValue: e.value.iconValue }, null, 8, ["iconType", "iconValue"])) : o("", !0), e.value.title && e.value.iconPosition != "right" ? (n(), l(i, { key: 2 }, [e.value.iconValue ? (n(), l(i, { key: 0 }, [u(" ")], 64)) : o("", !0), u(" " + y(a(d)(e.value.title)), 1)], 64)) : o("", !0)]), _: 1 }, 8, ["disabled", "class", "style", "type", "size", "round", "plain", "loading"]))]);
|
|
25
|
+
};
|
|
26
|
+
} });
|
|
27
|
+
export {
|
|
28
|
+
j as default
|
|
29
|
+
};
|
package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime2.vue.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { defineComponent as g, computed as m, ref as f, onMounted as C, nextTick as x, resolveComponent as d, openBlock as a, createBlock as p, normalizeStyle as y, normalizeClass as k, unref as b, withCtx as v, createElementBlock as _, Fragment as B, renderList as h } from "vue";
|
|
2
|
+
import z from "../../object-render.vue.mjs";
|
|
3
|
+
import { handleAfterInitEvent as E } from "../../../../utils/events/event-util.mjs";
|
|
4
|
+
const F = g({ __name: "buttongroup-runtime", props: { pageContext: {}, configure: {} }, setup(t) {
|
|
5
|
+
const e = t, r = e.configure.runtime ? e.configure.runtime : {}, l = r.class, i = m(() => {
|
|
6
|
+
var o;
|
|
7
|
+
const { gap: n } = ((o = e.configure) == null ? void 0 : o.props) ?? {};
|
|
8
|
+
return { ...n ? { gap: `${n}px` } : {}, ...r.style ?? {} };
|
|
9
|
+
}), s = f(null);
|
|
10
|
+
return C(() => {
|
|
11
|
+
x(() => {
|
|
12
|
+
E(null, e.pageContext, e.configure, { componentRef: s.value, entity: e.pageContext.entity.data, pageData: e.pageContext.entity.page });
|
|
13
|
+
});
|
|
14
|
+
}), (n, o) => {
|
|
15
|
+
const c = d("el-button-group");
|
|
16
|
+
return a(), p(c, { ref_key: "componentRef", ref: s, class: k(["amb-button-group-main", b(l)]), style: y(i.value) }, { default: v(() => [(a(!0), _(B, null, h(t.configure.items, (u, R) => (a(), p(z, { key: u.uuid, pageContext: t.pageContext, configure: u }, null, 8, ["pageContext", "configure"]))), 128))]), _: 1 }, 8, ["class", "style"]);
|
|
17
|
+
};
|
|
18
|
+
} });
|
|
19
|
+
export {
|
|
20
|
+
F as default
|
|
21
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { defineComponent as D, ref as g, computed as F, onMounted as O, nextTick as R, resolveComponent as u, openBlock as r, createBlock as c, normalizeStyle as I, unref as l, normalizeClass as N, withCtx as s, createElementBlock as v, Fragment as h, createTextVNode as y, toDisplayString as d, createVNode as b, renderList as j } from "vue";
|
|
2
|
+
import { ArrowDown as H } from "@element-plus/icons-vue";
|
|
3
|
+
import { formatVariableValue as L } from "../../../../utils/page-helper-util.mjs";
|
|
4
|
+
import { handleAfterInitEvent as M, handleEvent as $, handleFormEvent as q } from "../../../../utils/events/event-util.mjs";
|
|
5
|
+
import { $t as C } from "../../../../utils/i18n-util.mjs";
|
|
6
|
+
const G = { key: 1 }, X = D({ __name: "dropdown-runtime", props: { pageContext: {}, configure: {} }, setup(m) {
|
|
7
|
+
const t = m, p = t.configure.runtime ? t.configure.runtime : {}, _ = p.style, w = p.class, e = g(p.props ? p.props : {});
|
|
8
|
+
let k = null;
|
|
9
|
+
const z = (t.configure.props && t.configure.props.dataOrigin ? t.configure.props.dataOrigin : {}).optionValueSetType;
|
|
10
|
+
function V(n) {
|
|
11
|
+
q(n, t.pageContext, t.configure, n ? "menuShow" : "menuHidden");
|
|
12
|
+
}
|
|
13
|
+
k = z == "variable" ? F(() => {
|
|
14
|
+
let n;
|
|
15
|
+
const i = L(t.pageContext, e.value.menuField);
|
|
16
|
+
if (i && Array.isArray(i)) {
|
|
17
|
+
n = i;
|
|
18
|
+
for (let a = 0; a < n.length; a++) {
|
|
19
|
+
const o = n[a];
|
|
20
|
+
o.label || (o.label = a + 1);
|
|
21
|
+
}
|
|
22
|
+
} else {
|
|
23
|
+
const a = (i ? i + "" : "").trim().split(",");
|
|
24
|
+
n = [];
|
|
25
|
+
for (let o of a) n.push({ value: o, label: o });
|
|
26
|
+
}
|
|
27
|
+
return n;
|
|
28
|
+
}) : g(e.value.options ? e.value.options : []);
|
|
29
|
+
const x = g(null);
|
|
30
|
+
return O(() => {
|
|
31
|
+
R(() => {
|
|
32
|
+
M(null, t.pageContext, t.configure, { componentRef: x.value, entity: t.pageContext.entity.data, pageData: t.pageContext.entity.page });
|
|
33
|
+
});
|
|
34
|
+
}), (n, i) => {
|
|
35
|
+
const a = u("el-button"), o = u("el-icon"), B = u("el-text"), T = u("el-dropdown-item"), A = u("el-dropdown-menu"), E = u("el-dropdown");
|
|
36
|
+
return r(), c(E, { ref_key: "componentRef", ref: x, class: N(l(w)), style: I(l(_)), placement: e.value.placement, "split-button": e.value.splitButton, disabled: e.value.state === "disabled", type: e.value.buttonType, size: e.value.size, trigger: e.value.trigger, onVisibleChange: V }, { dropdown: s(() => [b(A, null, { default: s(() => [(r(!0), v(h, null, j(l(k), (f, J) => (r(), c(T, { key: f, onClick: (S) => l($)(S, m.pageContext, m.configure, "click", { menuItem: f }) }, { default: s(() => [y(d(l(C)(f.label)), 1)]), _: 2 }, 1032, ["onClick"]))), 128))]), _: 1 })]), default: s(() => [e.value.triggerElement === "button" ? (r(), v(h, { key: 0 }, [e.value.splitButton ? (r(), v("span", G, d(e.value.title), 1)) : (r(), c(a, { key: 0, size: e.value.size, type: e.value.buttonType }, { default: s(() => [y(d(l(C)(e.value.title)), 1)]), _: 1 }, 8, ["size", "type"]))], 64)) : (r(), c(B, { key: 1 }, { default: s(() => [y(d(l(C)(e.value.title)) + " ", 1), b(o, null, { default: s(() => [b(l(H))]), _: 1 })]), _: 1 }))]), _: 1 }, 8, ["class", "style", "placement", "split-button", "disabled", "type", "size", "trigger"]);
|
|
37
|
+
};
|
|
38
|
+
} });
|
|
39
|
+
export {
|
|
40
|
+
X as default
|
|
41
|
+
};
|
package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime2.vue.mjs
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { defineComponent as o, openBlock as t, createBlock as n } from "vue";
|
|
2
|
+
import r from "../button/button-runtime2.vue.mjs";
|
|
3
|
+
const c = o({ __name: "exportpdf-runtime", props: { pageContext: {}, configure: {} }, setup: (e) => (p, a) => (t(), n(r, { configure: e.configure, pageContext: e.pageContext }, null, 8, ["configure", "pageContext"])) });
|
|
4
|
+
export {
|
|
5
|
+
c as default
|
|
6
|
+
};
|
package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime2.vue.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { defineComponent as R, ref as g, onMounted as I, nextTick as N, resolveComponent as n, openBlock as t, createBlock as s, normalizeStyle as S, unref as a, normalizeClass as V, withCtx as o, createElementBlock as d, Fragment as C, createTextVNode as f, toDisplayString as p, createVNode as v, renderList as j } from "vue";
|
|
2
|
+
import "agilebuilder-ui";
|
|
3
|
+
import { handleAfterInitEvent as F, handleEvent as x } from "../../../../utils/events/event-util.mjs";
|
|
4
|
+
import L from "../button/button-runtime2.vue.mjs";
|
|
5
|
+
import { $t as c } from "../../../../utils/i18n-util.mjs";
|
|
6
|
+
const M = { key: 1 }, P = R({ __name: "printlabel-runtime", props: { pageContext: {}, configure: {} }, setup(l) {
|
|
7
|
+
const u = l, i = u.configure.runtime ? u.configure.runtime : {}, e = g(i.props ? i.props : {}), m = g(!1);
|
|
8
|
+
e.value.template && e.value.template.length > 1 && (m.value = !0);
|
|
9
|
+
const b = i.style, _ = i.class, y = g(null);
|
|
10
|
+
return I(() => {
|
|
11
|
+
N(() => {
|
|
12
|
+
m.value && F(null, u.pageContext, u.configure, { componentRef: y.value, entity: u.pageContext.entity.data, pageData: u.pageContext.entity.page });
|
|
13
|
+
});
|
|
14
|
+
}), ($, k) => {
|
|
15
|
+
const w = n("el-button"), z = n("ArrowDown"), B = n("el-icon"), h = n("el-text"), T = n("el-dropdown-item"), D = n("el-dropdown-menu"), E = n("el-dropdown");
|
|
16
|
+
return m.value ? (t(), s(E, { key: 1, ref_key: "componentRef", ref: y, class: V(a(_)), style: S(a(b)), placement: e.value.placement, "split-button": e.value.splitButton, disabled: e.value.state === "disabled", type: e.value.buttonType, size: e.value.size, trigger: e.value.trigger }, { dropdown: o(() => [v(D, null, { default: o(() => [(t(!0), d(C, null, j(e.value.template, (r, q) => (t(), s(T, { key: r, onClick: (A) => a(x)(A, l.pageContext, l.configure, "click", { menuItem: r }) }, { default: o(() => [f(p(a(c)(r.label)), 1)]), _: 2 }, 1032, ["onClick"]))), 128))]), _: 1 })]), default: o(() => [e.value.triggerElement === "button" ? (t(), d(C, { key: 0 }, [e.value.splitButton ? (t(), d("span", M, p(a(c)(e.value.title)), 1)) : (t(), s(w, { key: 0, size: e.value.size, type: e.value.buttonType, onClick: k[0] || (k[0] = (r) => a(x)(r, l.pageContext, l.configure, "menuClick")) }, { default: o(() => [f(p(a(c)(e.value.title)), 1)]), _: 1 }, 8, ["size", "type"]))], 64)) : (t(), s(h, { key: 1 }, { default: o(() => [f(p(a(c)(e.value.title)) + " ", 1), v(B, null, { default: o(() => [v(z)]), _: 1 })]), _: 1 }))]), _: 1 }, 8, ["class", "style", "placement", "split-button", "disabled", "type", "size", "trigger"])) : (t(), s(L, { key: 0, configure: l.configure, pageContext: l.pageContext }, null, 8, ["configure", "pageContext"]));
|
|
17
|
+
};
|
|
18
|
+
} });
|
|
19
|
+
export {
|
|
20
|
+
P as default
|
|
21
|
+
};
|
package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime2.vue.mjs
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { defineComponent as E, ref as g, onMounted as S, watch as _, openBlock as j, createElementBlock as z, normalizeClass as B, unref as l, normalizeStyle as F, withDirectives as N, createVNode as I, vShow as A } from "vue";
|
|
2
|
+
import { getCustomTheme as H, initChartOption as L, monitorChartClickToVariable as U, clearChartSelected as G, exportCommonChart as J } from "../../../../utils/charts/chart-util.mjs";
|
|
3
|
+
import { getChartDatasFromPage as M, updateChartDatasources as Z, monitorFieldChange as q } from "../../../../utils/page-helper-util.mjs";
|
|
4
|
+
import { updateChartOption as K } from "../../../../utils/charts/chart-columnline-util.mjs";
|
|
5
|
+
import { doClickJumpPageEvent as Q } from "../../../../utils/events/event-util.mjs";
|
|
6
|
+
import W from "../common/common-chart-header.vue.mjs";
|
|
7
|
+
import { use as X } from "echarts/core";
|
|
8
|
+
import { CanvasRenderer as Y } from "echarts/renderers";
|
|
9
|
+
import { LineChart as $, BarChart as ee } from "echarts/charts";
|
|
10
|
+
import { GridComponent as oe, LegendComponent as re, TitleComponent as ae, TooltipComponent as te, ToolboxComponent as ne, DataZoomComponent as se } from "echarts/components";
|
|
11
|
+
import ie from "vue-echarts";
|
|
12
|
+
const ve = E({ __name: "column-line-runtime", props: { pageContext: {}, configure: {} }, setup(c, { expose: y }) {
|
|
13
|
+
X([Y, $, oe, re, ae, te, ee, ne, se]);
|
|
14
|
+
const o = c, D = g(null), a = g(), s = g(null), f = o.configure.props ? o.configure.props.enableDrill : null, h = o.configure.props ? o.configure.props.drillEndTrigger : null, d = o.configure.props ? o.configure.props.linkPage : null, m = {};
|
|
15
|
+
if (o.configure.items) for (const e of o.configure.items) e.props && e.props.linkPage && e.props.linkPage.jumpPageUrl ? m[e.uuid] = e : d && d.jumpPageUrl && (m[e.uuid] = o.configure);
|
|
16
|
+
const p = o.configure.runtime ? o.configure.runtime : {}, R = p.style, b = p.class, t = p.dataConfig, r = p.headerInfo ? p.headerInfo : {}, i = p.chartOption, T = o.configure.props ? o.configure.props : {}, V = H(T.customTheme);
|
|
17
|
+
function P(e) {
|
|
18
|
+
h == "clearDrill" ? s.value && s.value.closeDrill && s.value.closeDrill(0) : h === "clickEvent" && C(e);
|
|
19
|
+
}
|
|
20
|
+
function C(e) {
|
|
21
|
+
if (e.seriesIndex >= i.series.length) return;
|
|
22
|
+
const n = i.series[e.seriesIndex].uuid, k = m[n];
|
|
23
|
+
if (!k) return;
|
|
24
|
+
const O = { data: e.data, dataIndex: e.dataIndex, name: e.name, seriesId: e.seriesId, seriesIndex: e.seriesIndex, seriesName: e.seriesName, seriesType: e.seriesType, value: e.value };
|
|
25
|
+
Q(o.pageContext, k, O);
|
|
26
|
+
}
|
|
27
|
+
L(o.configure, i), S(() => {
|
|
28
|
+
const e = M(o.pageContext, o.configure);
|
|
29
|
+
e && v(e), !f && o.configure.clickSet && a.value && U(o.pageContext, o.configure, a.value.chart), a.value && (f || Object.keys(m).length > 0) && a.value.chart.on("click", function(n) {
|
|
30
|
+
f ? s.value && s.value.drill && s.value.drill(n, o.configure.cacheDatas) : C(n);
|
|
31
|
+
});
|
|
32
|
+
});
|
|
33
|
+
let u = r.groupValue;
|
|
34
|
+
function x(e) {
|
|
35
|
+
t && (e !== !0 && (t.autoRefresh = !0), Z(o.pageContext, [t], r.drillParams));
|
|
36
|
+
}
|
|
37
|
+
_(r, () => {
|
|
38
|
+
u != r.groupValue && (u = r.groupValue, t && (t.services[0].groupValue = r.groupValue), x(!1));
|
|
39
|
+
});
|
|
40
|
+
const w = r.monitorFields;
|
|
41
|
+
function v(e) {
|
|
42
|
+
var n;
|
|
43
|
+
e || (e = []), Array.isArray(e) && (e = e.length > 0 ? e[0] : {}), e || (e = {}), e.hasRender ? e.hasRender = !0 : (e.hasRender = !0, t.autoRefresh || (u = e.groupValue, u && r.groupComponent !== "checkbox" && (u = u.join(",")), r.groupValue = u), t.autoRefresh && f || G(o.pageContext, o.configure, (n = a.value) == null ? void 0 : n.chart), t.autoRefresh = !1, K(o.pageContext, o.configure, i, e), a.value && a.value.setOption(i, !0));
|
|
44
|
+
}
|
|
45
|
+
return q(o.pageContext, w, () => {
|
|
46
|
+
x(!0);
|
|
47
|
+
}), y({ updateChartDatas: v, exportChart: function() {
|
|
48
|
+
return J(a.value, r);
|
|
49
|
+
}, chartOption: i }), (e, n) => (j(), z("div", { style: F(l(R)), class: B([l(b), "amb-widget-chart amb-widget-flex amb-chart-container"]), ref_key: "thisRef", ref: D }, [N(I(W, { ref_key: "headerRef", ref: s, headerInfo: l(r), configure: c.configure, pageContext: c.pageContext, onDrillEnd: P, class: "amb-chart-header" }, null, 8, ["headerInfo", "configure", "pageContext"]), [[A, l(r).showHeader || c.pageContext.showHomepageSearch]]), I(l(ie), { ref_key: "chartRef", ref: a, class: "amb-chart-content", theme: l(V), option: l(i), autoresize: "" }, null, 8, ["theme", "option"])], 6));
|
|
50
|
+
} });
|
|
51
|
+
export {
|
|
52
|
+
ve as default
|
|
53
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { defineComponent as p, resolveComponent as t, openBlock as e, createBlock as a, unref as d, withCtx as o, createElementBlock as u, Fragment as f, renderList as b, createTextVNode as h, toDisplayString as g } from "vue";
|
|
2
|
+
import { ArrowRight as y } from "@element-plus/icons-vue";
|
|
3
|
+
const w = p({ __name: "common-chart-header-breadcrumb", props: { headerInfo: { type: Object, required: !0 } }, emits: ["close-drill"], setup(s, { emit: l }) {
|
|
4
|
+
const n = l;
|
|
5
|
+
return (C, k) => {
|
|
6
|
+
const c = t("el-tag"), i = t("el-breadcrumb");
|
|
7
|
+
return e(), a(i, { "separator-icon": d(y) }, { default: o(() => [(e(!0), u(f, null, b(s.headerInfo.drillOptions, (r, m) => (e(), a(c, { key: r.name, closable: "", type: "success", style: { "margin-left": "4px" }, onClose: (x) => {
|
|
8
|
+
n("close-drill", m);
|
|
9
|
+
} }, { default: o(() => [h(g(r.label), 1)]), _: 2 }, 1032, ["onClose"]))), 128))]), _: 1 }, 8, ["separator-icon"]);
|
|
10
|
+
};
|
|
11
|
+
} });
|
|
12
|
+
export {
|
|
13
|
+
w as default
|
|
14
|
+
};
|
package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { defineComponent as I, watch as g, resolveComponent as u, openBlock as l, createBlock as r, withCtx as h, createElementBlock as n, Fragment as d, renderList as t } from "vue";
|
|
2
|
+
const k = I({ __name: "common-chart-header-group", props: { headerInfo: { type: Object, required: !0 } }, setup(e) {
|
|
3
|
+
const p = e;
|
|
4
|
+
return g(p.headerInfo, () => {
|
|
5
|
+
p.headerInfo;
|
|
6
|
+
}), (i, o) => {
|
|
7
|
+
const m = u("el-checkbox"), f = u("el-checkbox-group"), s = u("el-radio"), c = u("el-radio-button"), V = u("el-radio-group");
|
|
8
|
+
return e.headerInfo.groupComponent == "checkbox" ? (l(), r(f, { key: 0, modelValue: e.headerInfo.groupValue, "onUpdate:modelValue": o[0] || (o[0] = (a) => e.headerInfo.groupValue = a) }, { default: h(() => [(l(!0), n(d, null, t(e.headerInfo.options, (a) => (l(), r(m, { label: a.label, value: a.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"])) : e.headerInfo.groupComponent == "radio" ? (l(!0), n(d, { key: 1 }, t(e.headerInfo.options, (a) => (l(), r(s, { modelValue: e.headerInfo.groupValue, "onUpdate:modelValue": o[1] || (o[1] = (b) => e.headerInfo.groupValue = b), value: a.value, label: a.label }, null, 8, ["modelValue", "value", "label"]))), 256)) : (l(), r(V, { key: 2, modelValue: e.headerInfo.groupValue, "onUpdate:modelValue": o[2] || (o[2] = (a) => e.headerInfo.groupValue = a) }, { default: h(() => [(l(!0), n(d, null, t(e.headerInfo.options, (a) => (l(), r(c, { label: a.label, value: a.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"]));
|
|
9
|
+
};
|
|
10
|
+
} });
|
|
11
|
+
export {
|
|
12
|
+
k as default
|
|
13
|
+
};
|