super-page-runtime 2.3.21 → 2.3.22-tmp2
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/components/runtime/utils/ai-chat-util.mjs +16 -0
- package/dist/es/components/runtime/utils/{anchor-util.js → anchor-util.mjs} +5 -5
- package/dist/es/components/runtime/utils/api/api-util.mjs +4 -0
- package/dist/es/components/runtime/utils/api/{page-expose-util.js → page-expose-util.mjs} +26 -27
- package/dist/es/components/runtime/utils/assemblys-config.mjs +20 -0
- package/dist/es/components/runtime/utils/charts/{chart-columnline-util.js → chart-columnline-util.mjs} +4 -4
- package/dist/es/components/runtime/utils/charts/{chart-gauge-util.js → chart-gauge-util.mjs} +9 -9
- package/dist/es/components/runtime/utils/charts/{chart-pie-util.js → chart-pie-util.mjs} +11 -11
- package/dist/es/components/runtime/utils/charts/{chart-radar-util.js → chart-radar-util.mjs} +4 -4
- package/dist/es/components/runtime/utils/charts/{chart-scatter-util.js → chart-scatter-util.mjs} +12 -12
- package/dist/es/components/runtime/utils/charts/{chart-util.js → chart-util.mjs} +13 -13
- package/dist/es/components/runtime/utils/{common-util.js → common-util.mjs} +13 -14
- package/dist/es/components/runtime/utils/events/{event-util.js → event-util.mjs} +94 -95
- package/dist/es/components/runtime/utils/events/{print-label.js → print-label.mjs} +2 -2
- package/dist/es/components/runtime/utils/events/standard-event.mjs +1166 -0
- package/dist/es/components/runtime/utils/events/{validator-util.js → validator-util.mjs} +35 -37
- package/dist/es/components/runtime/utils/form/scan-util.mjs +93 -0
- package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
- package/dist/es/components/runtime/utils/page-helper-util.mjs +386 -0
- package/dist/es/components/runtime/utils/{page-init-util.js → page-init-util.mjs} +102 -104
- package/dist/es/components/runtime/utils/{page-store.js → page-store.mjs} +7 -7
- package/dist/es/components/runtime/utils/{store-util.js → store-util.mjs} +1 -1
- package/dist/es/components/runtime/utils/{table-utils.js → table-utils.mjs} +16 -16
- 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-runtime.vue2.js → button-runtime.vue2.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/button/button-group/{buttongroup-runtime.vue.js → buttongroup-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/button/button-group/{buttongroup-runtime.vue2.js → buttongroup-runtime.vue2.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/{dropdown-runtime.vue2.js → dropdown-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +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-runtime.vue2.js → column-line-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/{common-chart-header.vue.js → common-chart-header.vue.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +59 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/{gauge-runtime.vue.js → gauge-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/gauge/{gauge-runtime.vue2.js → gauge-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/pie/{pie-runtime.vue.js → pie-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/pie/{pie-runtime.vue2.js → pie-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/chart/radar/{radar-runtime.vue.js → radar-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/radar/{radar-runtime.vue2.js → radar-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/scatter/{scatter-runtime.vue.js → scatter-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/scatter/{scatter-runtime.vue2.js → scatter-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/table/{chart-table-util.js → chart-table-util.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/table/{group-column-item.vue.js → group-column-item.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/{group-column.vue.js → group-column.vue.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/{normal-column.vue.js → normal-column.vue.mjs} +13 -17
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/{table-runtime.vue2.js → table-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/common/{event-call-component.vue.js → event-call-component.vue.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{export-form-report-dialog.vue.js → export-form-report-dialog.vue.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{file-task-notice.vue.js → file-task-notice.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +27 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{remove-signer-dialog.vue.js → remove-signer-dialog.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{remove-transactor-dialog.vue.js → remove-transactor-dialog.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{save-chart-condition-dialog.vue.js → save-chart-condition-dialog.vue.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/card/{card-runtime.vue.js → card-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/card/{card-runtime.vue2.js → card-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/{collapse-runtime.vue2.js → collapse-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/container/{container-runtime.vue2.js → container-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/container/fixed/{FixedBox.vue.js → FixedBox.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/fixed/{YxAffix.vue.js → YxAffix.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/{flex-runtime.vue2.js → flex-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/form/{form-runtime.vue2.js → form-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +14 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/{tabs-runtime.vue.js → tabs-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/tabs/{tabs-runtime.vue2.js → tabs-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/container/tools/{tools-runtime.vue.js → tools-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/tools/{tools-runtime.vue2.js → tools-runtime.vue2.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/{barcode-runtime.vue2.js → barcode-runtime.vue2.mjs} +19 -19
- package/dist/es/components/runtime/views/assemblys/data/table/{main-table-runtime.vue.js → main-table-runtime.vue.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/{sub-table-runtime.vue.js → sub-table-runtime.vue.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/{table-runtime.vue2.js → table-runtime.vue2.mjs} +31 -31
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/{tree-runtime.vue2.js → tree-runtime.vue2.mjs} +31 -31
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/{checkbox-runtime.vue2.js → checkbox-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/form/common/{title-suffix-element.vue.js → title-suffix-element.vue.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/{custom-runtime.vue2.js → custom-runtime.vue2.mjs} +14 -14
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/{datepicker-runtime.vue2.js → datepicker-runtime.vue2.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/{depttree-runtime.vue2.js → depttree-runtime.vue2.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/{divider-runtime.vue2.js → divider-runtime.vue2.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/{fileupload-runtime.vue2.js → fileupload-runtime.vue2.mjs} +20 -22
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/{input-number-runtime.vue2.js → input-number-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/{inputtext-runtime.vue2.js → inputtext-runtime.vue2.mjs} +33 -34
- package/dist/es/components/runtime/views/assemblys/form/label/{label-runtime.vue.js → label-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/form/label/{label-runtime.vue2.js → label-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/link/{link-runtime.vue2.js → link-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/form/placeholder/{placeholder-runtime.vue.js → placeholder-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/form/placeholder/{placeholder-runtime.vue2.js → placeholder-runtime.vue2.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/{radio-runtime.vue2.js → radio-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/{richtext-runtime.vue2.js → richtext-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/select/{select-runtime.vue2.js → select-runtime.vue2.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/{separatelabel-runtime.vue2.js → separatelabel-runtime.vue2.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/{switch-runtime.vue2.js → switch-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/{tag-runtime.vue2.js → tag-runtime.vue2.mjs} +15 -15
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/{textarea-runtime.vue2.js → textarea-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/{home-chart-render.vue.js → home-chart-render.vue.mjs} +11 -11
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/{object-render.vue.js → object-render.vue.mjs} +15 -15
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/{workflow-opinion-box.vue.js → workflow-opinion-box.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/component/{workflow-opinion-box.vue2.js → workflow-opinion-box.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime-dialog.vue.js → extract-workflow-runtime-dialog.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime-dialog.vue2.js → extract-workflow-runtime-dialog.vue2.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime.vue.js → extract-workflow-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime.vue2.js → extract-workflow-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/{pictureflow-runtime.vue2.js → pictureflow-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/{textflow-runtime.vue2.js → textflow-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/{workflowbutton-runtime.vue.js → workflowbutton-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/{workflowbutton-runtime.vue2.js → workflowbutton-runtime.vue2.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +18 -0
- package/dist/es/components/runtime/views/{home-chart.vue.js → home-chart.vue.mjs} +8 -8
- package/dist/es/components/runtime/views/home-chart.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/{super-page-dialog.vue.js → super-page-dialog.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +5 -0
- package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
- package/dist/es/components/runtime/views/{super-page.vue2.js → super-page.vue2.mjs} +90 -94
- package/dist/es/{index.js → index.mjs} +12 -12
- package/dist/es/style.css +136 -136
- package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +6 -0
- package/dist/lib/assets/chart-themes/bar-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/gauge-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/pie-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/radar-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/scatter-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
- package/dist/lib/assets/file.png.cjs +2 -0
- package/dist/lib/assets/folder.png.cjs +2 -0
- package/dist/lib/components/runtime/index.d.ts +5 -0
- package/dist/lib/components/runtime/utils/ai-chat-util.cjs +13 -0
- package/dist/lib/components/runtime/utils/anchor-util.cjs +62 -0
- package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
- package/dist/lib/components/runtime/utils/api/api-util.cjs +3 -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 +169 -0
- package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/assemblys-config.cjs +16 -0
- package/dist/lib/components/runtime/utils/barcode-util.cjs +10 -0
- package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
- package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +137 -0
- package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +34 -0
- package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +78 -0
- package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +52 -0
- package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +43 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.cjs +244 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
- package/dist/lib/components/runtime/utils/common-util.cjs +91 -0
- package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
- package/dist/lib/components/runtime/utils/eventBus.cjs +3 -0
- package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
- package/dist/lib/components/runtime/utils/events/event-util.cjs +345 -0
- package/dist/lib/components/runtime/utils/events/event-util.d.ts +92 -0
- package/dist/lib/components/runtime/utils/events/print-label.cjs +97 -0
- package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
- package/dist/lib/components/runtime/utils/events/standard-event.cjs +1101 -0
- package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
- package/dist/lib/components/runtime/utils/events/validator-util.cjs +296 -0
- package/dist/lib/components/runtime/utils/events/validator-util.d.ts +25 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +34 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
- package/dist/{es/components/runtime/utils/form/scan-util.js → lib/components/runtime/utils/form/scan-util.cjs} +6 -9
- package/dist/lib/components/runtime/utils/global-refs.cjs +42 -0
- package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
- package/dist/lib/components/runtime/utils/i18n-util.cjs +11 -0
- package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +4 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +247 -0
- package/dist/lib/components/runtime/utils/page-helper-util.cjs +354 -0
- package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
- package/dist/lib/components/runtime/utils/page-init-util.cjs +244 -0
- package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
- package/dist/lib/components/runtime/utils/page-permission-util.cjs +26 -0
- package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
- package/dist/lib/components/runtime/utils/page-store.cjs +50 -0
- package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
- package/dist/lib/components/runtime/utils/store-util.cjs +11 -0
- package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
- package/dist/lib/components/runtime/utils/store.cjs +3 -0
- package/dist/lib/components/runtime/utils/store.d.ts +2 -0
- package/dist/lib/components/runtime/utils/table-utils.cjs +68 -0
- package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
- package/dist/lib/components/runtime/utils/tree-utils.cjs +54 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +35 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +41 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +11 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +11 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +53 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +48 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +34 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +402 -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 +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +6 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +36 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +13 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +249 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +16 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +32 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +32 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +19 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +12 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +21 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +13 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +30 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +15 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +21 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +15 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +27 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +79 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +15 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +12 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +88 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +43 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +59 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +382 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +322 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +81 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +124 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +57 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +35 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +57 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +91 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +47 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +65 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +70 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +31 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +26 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +13 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +75 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +188 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +130 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +11 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +29 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +38 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +73 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +132 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +14 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +23 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +23 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +34 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +19 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +14 -0
- package/dist/lib/components/runtime/views/home-chart.vue.cjs +38 -0
- package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
- package/dist/lib/components/runtime/views/home-chart.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +23 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +3 -0
- package/dist/lib/components/runtime/views/super-page.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
- package/dist/lib/components/runtime/views/super-page.vue2.cjs +264 -0
- package/dist/lib/favicon.ico +0 -0
- package/dist/lib/i18n/langs/cn.cjs +2 -0
- package/dist/lib/i18n/langs/en.cjs +2 -0
- package/dist/lib/index.cjs +6 -0
- package/dist/lib/index.d.ts +16 -0
- package/dist/lib/style.css +996 -0
- package/dist/umd/favicon.ico +0 -0
- package/dist/umd/index.full.min.js +7429 -0
- package/dist/umd/style.css +996 -0
- package/package.json +5 -4
- package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
- package/dist/es/components/runtime/utils/api/api-util.js +0 -4
- package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
- package/dist/es/components/runtime/utils/events/standard-event.js +0 -1169
- package/dist/es/components/runtime/utils/i18n-util.js +0 -14
- package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
- 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/dropdown/dropdown-runtime.vue.js +0 -4
- 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/common/common-chart-header-breadcrumb.vue2.js +0 -4
- 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.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/table/group-column-item.vue2.js +0 -4
- 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.vue2.js +0 -4
- 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/common/event-call-component.vue2.js +0 -4
- 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.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.vue2.js +0 -4
- 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.vue2.js +0 -4
- 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.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
- 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 -14
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
- 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.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/tree/tree-runtime.vue.js +0 -7
- 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/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/date-picker/datepicker-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
- 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-text/inputtext-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -6
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
- 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 -18
- package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
- 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.zip +0 -0
- /package/dist/es/_virtual/{_plugin-vue_export-helper.js → _plugin-vue_export-helper.mjs} +0 -0
- /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/{barcode-util.js → barcode-util.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{eventBus.js → eventBus.mjs} +0 -0
- /package/dist/es/components/runtime/utils/form/{date-shortcuts.js → date-shortcuts.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{global-refs.js → global-refs.mjs} +0 -0
- /package/dist/es/components/runtime/utils/interfaces/{page-design-types.js → page-design-types.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/chart/common/{common-chart-header-breadcrumb.vue.js → common-chart-header-breadcrumb.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/chart/common/{common-chart-header-group.vue.js → common-chart-header-group.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/chart/table/{table-pageination.vue.js → table-pageination.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/common/{remove-signer-table.vue.js → remove-signer-table.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/common/{task-informition-dialog.vue.js → task-informition-dialog.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/container/fixed/{FixedBox.vue2.js → FixedBox.vue2.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/container/fixed/{YxAffix.vue2.js → YxAffix.vue2.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/{error-render.vue.js → error-render.vue.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/style.css
CHANGED
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
min-height: 60px;
|
|
101
101
|
resize: vertical;
|
|
102
102
|
}
|
|
103
|
-
.runtime-page-container[data-v-
|
|
103
|
+
.runtime-page-container[data-v-ac38da23] {
|
|
104
104
|
overflow: hidden;
|
|
105
105
|
max-height: 100vh;
|
|
106
106
|
padding: var(--app-main-padding, 15px);
|
|
@@ -108,269 +108,269 @@
|
|
|
108
108
|
height: calc(100vh - var(--dec-page-main-padding, 15px) * 2);
|
|
109
109
|
}
|
|
110
110
|
@media (max-width: 768px) {
|
|
111
|
-
.runtime-page-container[data-v-
|
|
111
|
+
.runtime-page-container[data-v-ac38da23] .el-col-1 {
|
|
112
112
|
flex: 0 0 100%;
|
|
113
113
|
max-width: 100%;
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
|
-
.runtime-page-container[data-v-
|
|
116
|
+
.runtime-page-container[data-v-ac38da23] .el-col-1 > .el-form-item:only-child {
|
|
117
117
|
margin-bottom: 0;
|
|
118
118
|
}
|
|
119
|
-
.runtime-page-container[data-v-
|
|
119
|
+
.runtime-page-container[data-v-ac38da23] .el-col-2 {
|
|
120
120
|
flex: 0 0 calc(2 / 24 * (100% - (24 / 2 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
121
121
|
max-width: calc(2 / 24 * (100% - (24 / 2 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
122
122
|
}
|
|
123
123
|
@media (max-width: 768px) {
|
|
124
|
-
.runtime-page-container[data-v-
|
|
124
|
+
.runtime-page-container[data-v-ac38da23] .el-col-2 {
|
|
125
125
|
flex: 0 0 100%;
|
|
126
126
|
max-width: 100%;
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
|
-
.runtime-page-container[data-v-
|
|
129
|
+
.runtime-page-container[data-v-ac38da23] .el-col-2 > .el-form-item:only-child {
|
|
130
130
|
margin-bottom: 0;
|
|
131
131
|
}
|
|
132
132
|
@media (max-width: 768px) {
|
|
133
|
-
.runtime-page-container[data-v-
|
|
133
|
+
.runtime-page-container[data-v-ac38da23] .el-col-3 {
|
|
134
134
|
flex: 0 0 100%;
|
|
135
135
|
max-width: 100%;
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
|
-
.runtime-page-container[data-v-
|
|
138
|
+
.runtime-page-container[data-v-ac38da23] .el-col-3 > .el-form-item:only-child {
|
|
139
139
|
margin-bottom: 0;
|
|
140
140
|
}
|
|
141
|
-
.runtime-page-container[data-v-
|
|
141
|
+
.runtime-page-container[data-v-ac38da23] .el-col-4 {
|
|
142
142
|
flex: 0 0 calc(4 / 24 * (100% - (24 / 4 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
143
143
|
max-width: calc(4 / 24 * (100% - (24 / 4 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
144
144
|
}
|
|
145
145
|
@media (max-width: 768px) {
|
|
146
|
-
.runtime-page-container[data-v-
|
|
146
|
+
.runtime-page-container[data-v-ac38da23] .el-col-4 {
|
|
147
147
|
flex: 0 0 100%;
|
|
148
148
|
max-width: 100%;
|
|
149
149
|
}
|
|
150
150
|
}
|
|
151
|
-
.runtime-page-container[data-v-
|
|
151
|
+
.runtime-page-container[data-v-ac38da23] .el-col-4 > .el-form-item:only-child {
|
|
152
152
|
margin-bottom: 0;
|
|
153
153
|
}
|
|
154
154
|
@media (max-width: 768px) {
|
|
155
|
-
.runtime-page-container[data-v-
|
|
155
|
+
.runtime-page-container[data-v-ac38da23] .el-col-5 {
|
|
156
156
|
flex: 0 0 100%;
|
|
157
157
|
max-width: 100%;
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
|
-
.runtime-page-container[data-v-
|
|
160
|
+
.runtime-page-container[data-v-ac38da23] .el-col-5 > .el-form-item:only-child {
|
|
161
161
|
margin-bottom: 0;
|
|
162
162
|
}
|
|
163
|
-
.runtime-page-container[data-v-
|
|
163
|
+
.runtime-page-container[data-v-ac38da23] .el-col-6 {
|
|
164
164
|
flex: 0 0 calc(6 / 24 * (100% - (24 / 6 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
165
165
|
max-width: calc(6 / 24 * (100% - (24 / 6 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
166
166
|
}
|
|
167
167
|
@media (max-width: 768px) {
|
|
168
|
-
.runtime-page-container[data-v-
|
|
168
|
+
.runtime-page-container[data-v-ac38da23] .el-col-6 {
|
|
169
169
|
flex: 0 0 100%;
|
|
170
170
|
max-width: 100%;
|
|
171
171
|
}
|
|
172
172
|
}
|
|
173
|
-
.runtime-page-container[data-v-
|
|
173
|
+
.runtime-page-container[data-v-ac38da23] .el-col-6 > .el-form-item:only-child {
|
|
174
174
|
margin-bottom: 0;
|
|
175
175
|
}
|
|
176
176
|
@media (max-width: 768px) {
|
|
177
|
-
.runtime-page-container[data-v-
|
|
177
|
+
.runtime-page-container[data-v-ac38da23] .el-col-7 {
|
|
178
178
|
flex: 0 0 100%;
|
|
179
179
|
max-width: 100%;
|
|
180
180
|
}
|
|
181
181
|
}
|
|
182
|
-
.runtime-page-container[data-v-
|
|
182
|
+
.runtime-page-container[data-v-ac38da23] .el-col-7 > .el-form-item:only-child {
|
|
183
183
|
margin-bottom: 0;
|
|
184
184
|
}
|
|
185
|
-
.runtime-page-container[data-v-
|
|
185
|
+
.runtime-page-container[data-v-ac38da23] .el-col-8 {
|
|
186
186
|
flex: 0 0 calc(8 / 24 * (100% - (24 / 8 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
187
187
|
max-width: calc(8 / 24 * (100% - (24 / 8 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
188
188
|
}
|
|
189
189
|
@media (max-width: 768px) {
|
|
190
|
-
.runtime-page-container[data-v-
|
|
190
|
+
.runtime-page-container[data-v-ac38da23] .el-col-8 {
|
|
191
191
|
flex: 0 0 100%;
|
|
192
192
|
max-width: 100%;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
|
-
.runtime-page-container[data-v-
|
|
195
|
+
.runtime-page-container[data-v-ac38da23] .el-col-8 > .el-form-item:only-child {
|
|
196
196
|
margin-bottom: 0;
|
|
197
197
|
}
|
|
198
198
|
@media (max-width: 768px) {
|
|
199
|
-
.runtime-page-container[data-v-
|
|
199
|
+
.runtime-page-container[data-v-ac38da23] .el-col-9 {
|
|
200
200
|
flex: 0 0 100%;
|
|
201
201
|
max-width: 100%;
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
|
-
.runtime-page-container[data-v-
|
|
204
|
+
.runtime-page-container[data-v-ac38da23] .el-col-9 > .el-form-item:only-child {
|
|
205
205
|
margin-bottom: 0;
|
|
206
206
|
}
|
|
207
|
-
.runtime-page-container[data-v-
|
|
207
|
+
.runtime-page-container[data-v-ac38da23] .el-col-10 {
|
|
208
208
|
flex: 0 0 calc(10 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
209
209
|
max-width: calc(10 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
210
210
|
}
|
|
211
211
|
@media (max-width: 768px) {
|
|
212
|
-
.runtime-page-container[data-v-
|
|
212
|
+
.runtime-page-container[data-v-ac38da23] .el-col-10 {
|
|
213
213
|
flex: 0 0 100%;
|
|
214
214
|
max-width: 100%;
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
|
-
.runtime-page-container[data-v-
|
|
217
|
+
.runtime-page-container[data-v-ac38da23] .el-col-10 > .el-form-item:only-child {
|
|
218
218
|
margin-bottom: 0;
|
|
219
219
|
}
|
|
220
220
|
@media (max-width: 768px) {
|
|
221
|
-
.runtime-page-container[data-v-
|
|
221
|
+
.runtime-page-container[data-v-ac38da23] .el-col-11 {
|
|
222
222
|
flex: 0 0 100%;
|
|
223
223
|
max-width: 100%;
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
|
-
.runtime-page-container[data-v-
|
|
226
|
+
.runtime-page-container[data-v-ac38da23] .el-col-11 > .el-form-item:only-child {
|
|
227
227
|
margin-bottom: 0;
|
|
228
228
|
}
|
|
229
|
-
.runtime-page-container[data-v-
|
|
229
|
+
.runtime-page-container[data-v-ac38da23] .el-col-12 {
|
|
230
230
|
flex: 0 0 calc(12 / 24 * (100% - (24 / 12 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
231
231
|
max-width: calc(12 / 24 * (100% - (24 / 12 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
232
232
|
}
|
|
233
233
|
@media (max-width: 768px) {
|
|
234
|
-
.runtime-page-container[data-v-
|
|
234
|
+
.runtime-page-container[data-v-ac38da23] .el-col-12 {
|
|
235
235
|
flex: 0 0 100%;
|
|
236
236
|
max-width: 100%;
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
|
-
.runtime-page-container[data-v-
|
|
239
|
+
.runtime-page-container[data-v-ac38da23] .el-col-12 > .el-form-item:only-child {
|
|
240
240
|
margin-bottom: 0;
|
|
241
241
|
}
|
|
242
242
|
@media (max-width: 768px) {
|
|
243
|
-
.runtime-page-container[data-v-
|
|
243
|
+
.runtime-page-container[data-v-ac38da23] .el-col-13 {
|
|
244
244
|
flex: 0 0 100%;
|
|
245
245
|
max-width: 100%;
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
|
-
.runtime-page-container[data-v-
|
|
248
|
+
.runtime-page-container[data-v-ac38da23] .el-col-13 > .el-form-item:only-child {
|
|
249
249
|
margin-bottom: 0;
|
|
250
250
|
}
|
|
251
|
-
.runtime-page-container[data-v-
|
|
251
|
+
.runtime-page-container[data-v-ac38da23] .el-col-14 {
|
|
252
252
|
flex: 0 0 calc(14 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
253
253
|
max-width: calc(14 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
254
254
|
}
|
|
255
255
|
@media (max-width: 768px) {
|
|
256
|
-
.runtime-page-container[data-v-
|
|
256
|
+
.runtime-page-container[data-v-ac38da23] .el-col-14 {
|
|
257
257
|
flex: 0 0 100%;
|
|
258
258
|
max-width: 100%;
|
|
259
259
|
}
|
|
260
260
|
}
|
|
261
|
-
.runtime-page-container[data-v-
|
|
261
|
+
.runtime-page-container[data-v-ac38da23] .el-col-14 > .el-form-item:only-child {
|
|
262
262
|
margin-bottom: 0;
|
|
263
263
|
}
|
|
264
264
|
@media (max-width: 768px) {
|
|
265
|
-
.runtime-page-container[data-v-
|
|
265
|
+
.runtime-page-container[data-v-ac38da23] .el-col-15 {
|
|
266
266
|
flex: 0 0 100%;
|
|
267
267
|
max-width: 100%;
|
|
268
268
|
}
|
|
269
269
|
}
|
|
270
|
-
.runtime-page-container[data-v-
|
|
270
|
+
.runtime-page-container[data-v-ac38da23] .el-col-15 > .el-form-item:only-child {
|
|
271
271
|
margin-bottom: 0;
|
|
272
272
|
}
|
|
273
|
-
.runtime-page-container[data-v-
|
|
273
|
+
.runtime-page-container[data-v-ac38da23] .el-col-16 {
|
|
274
274
|
flex: 0 0 calc(16 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
275
275
|
max-width: calc(16 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
276
276
|
}
|
|
277
277
|
@media (max-width: 768px) {
|
|
278
|
-
.runtime-page-container[data-v-
|
|
278
|
+
.runtime-page-container[data-v-ac38da23] .el-col-16 {
|
|
279
279
|
flex: 0 0 100%;
|
|
280
280
|
max-width: 100%;
|
|
281
281
|
}
|
|
282
282
|
}
|
|
283
|
-
.runtime-page-container[data-v-
|
|
283
|
+
.runtime-page-container[data-v-ac38da23] .el-col-16 > .el-form-item:only-child {
|
|
284
284
|
margin-bottom: 0;
|
|
285
285
|
}
|
|
286
286
|
@media (max-width: 768px) {
|
|
287
|
-
.runtime-page-container[data-v-
|
|
287
|
+
.runtime-page-container[data-v-ac38da23] .el-col-17 {
|
|
288
288
|
flex: 0 0 100%;
|
|
289
289
|
max-width: 100%;
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
|
-
.runtime-page-container[data-v-
|
|
292
|
+
.runtime-page-container[data-v-ac38da23] .el-col-17 > .el-form-item:only-child {
|
|
293
293
|
margin-bottom: 0;
|
|
294
294
|
}
|
|
295
|
-
.runtime-page-container[data-v-
|
|
295
|
+
.runtime-page-container[data-v-ac38da23] .el-col-18 {
|
|
296
296
|
flex: 0 0 calc(18 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
297
297
|
max-width: calc(18 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
298
298
|
}
|
|
299
299
|
@media (max-width: 768px) {
|
|
300
|
-
.runtime-page-container[data-v-
|
|
300
|
+
.runtime-page-container[data-v-ac38da23] .el-col-18 {
|
|
301
301
|
flex: 0 0 100%;
|
|
302
302
|
max-width: 100%;
|
|
303
303
|
}
|
|
304
304
|
}
|
|
305
|
-
.runtime-page-container[data-v-
|
|
305
|
+
.runtime-page-container[data-v-ac38da23] .el-col-18 > .el-form-item:only-child {
|
|
306
306
|
margin-bottom: 0;
|
|
307
307
|
}
|
|
308
308
|
@media (max-width: 768px) {
|
|
309
|
-
.runtime-page-container[data-v-
|
|
309
|
+
.runtime-page-container[data-v-ac38da23] .el-col-19 {
|
|
310
310
|
flex: 0 0 100%;
|
|
311
311
|
max-width: 100%;
|
|
312
312
|
}
|
|
313
313
|
}
|
|
314
|
-
.runtime-page-container[data-v-
|
|
314
|
+
.runtime-page-container[data-v-ac38da23] .el-col-19 > .el-form-item:only-child {
|
|
315
315
|
margin-bottom: 0;
|
|
316
316
|
}
|
|
317
|
-
.runtime-page-container[data-v-
|
|
317
|
+
.runtime-page-container[data-v-ac38da23] .el-col-20 {
|
|
318
318
|
flex: 0 0 calc(20 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
319
319
|
max-width: calc(20 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
320
320
|
}
|
|
321
321
|
@media (max-width: 768px) {
|
|
322
|
-
.runtime-page-container[data-v-
|
|
322
|
+
.runtime-page-container[data-v-ac38da23] .el-col-20 {
|
|
323
323
|
flex: 0 0 100%;
|
|
324
324
|
max-width: 100%;
|
|
325
325
|
}
|
|
326
326
|
}
|
|
327
|
-
.runtime-page-container[data-v-
|
|
327
|
+
.runtime-page-container[data-v-ac38da23] .el-col-20 > .el-form-item:only-child {
|
|
328
328
|
margin-bottom: 0;
|
|
329
329
|
}
|
|
330
330
|
@media (max-width: 768px) {
|
|
331
|
-
.runtime-page-container[data-v-
|
|
331
|
+
.runtime-page-container[data-v-ac38da23] .el-col-21 {
|
|
332
332
|
flex: 0 0 100%;
|
|
333
333
|
max-width: 100%;
|
|
334
334
|
}
|
|
335
335
|
}
|
|
336
|
-
.runtime-page-container[data-v-
|
|
336
|
+
.runtime-page-container[data-v-ac38da23] .el-col-21 > .el-form-item:only-child {
|
|
337
337
|
margin-bottom: 0;
|
|
338
338
|
}
|
|
339
|
-
.runtime-page-container[data-v-
|
|
339
|
+
.runtime-page-container[data-v-ac38da23] .el-col-22 {
|
|
340
340
|
flex: 0 0 calc(22 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
341
341
|
max-width: calc(22 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
342
342
|
}
|
|
343
343
|
@media (max-width: 768px) {
|
|
344
|
-
.runtime-page-container[data-v-
|
|
344
|
+
.runtime-page-container[data-v-ac38da23] .el-col-22 {
|
|
345
345
|
flex: 0 0 100%;
|
|
346
346
|
max-width: 100%;
|
|
347
347
|
}
|
|
348
348
|
}
|
|
349
|
-
.runtime-page-container[data-v-
|
|
349
|
+
.runtime-page-container[data-v-ac38da23] .el-col-22 > .el-form-item:only-child {
|
|
350
350
|
margin-bottom: 0;
|
|
351
351
|
}
|
|
352
352
|
@media (max-width: 768px) {
|
|
353
|
-
.runtime-page-container[data-v-
|
|
353
|
+
.runtime-page-container[data-v-ac38da23] .el-col-23 {
|
|
354
354
|
flex: 0 0 100%;
|
|
355
355
|
max-width: 100%;
|
|
356
356
|
}
|
|
357
357
|
}
|
|
358
|
-
.runtime-page-container[data-v-
|
|
358
|
+
.runtime-page-container[data-v-ac38da23] .el-col-23 > .el-form-item:only-child {
|
|
359
359
|
margin-bottom: 0;
|
|
360
360
|
}
|
|
361
361
|
@media (max-width: 768px) {
|
|
362
|
-
.runtime-page-container[data-v-
|
|
362
|
+
.runtime-page-container[data-v-ac38da23] .el-col-24 {
|
|
363
363
|
flex: 0 0 100%;
|
|
364
364
|
max-width: 100%;
|
|
365
365
|
}
|
|
366
366
|
}
|
|
367
|
-
.runtime-page-container[data-v-
|
|
367
|
+
.runtime-page-container[data-v-ac38da23] .el-col-24 > .el-form-item:only-child {
|
|
368
368
|
margin-bottom: 0;
|
|
369
369
|
}
|
|
370
|
-
.runtime-page-container[data-v-
|
|
370
|
+
.runtime-page-container[data-v-ac38da23] .el-input-group > .el-input-group__append > .el-button + .el-button {
|
|
371
371
|
margin-left: 12px;
|
|
372
372
|
}
|
|
373
|
-
.runtime-page-container[data-v-
|
|
373
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view, .runtime-page-container[data-v-ac38da23] .el-container > .el-main, .runtime-page-container[data-v-ac38da23] .el-container > .el-aside {
|
|
374
374
|
display: flex;
|
|
375
375
|
flex-direction: row;
|
|
376
376
|
align-items: flex-start;
|
|
@@ -381,49 +381,49 @@
|
|
|
381
381
|
height: 100%;
|
|
382
382
|
overflow: auto;
|
|
383
383
|
}
|
|
384
|
-
.runtime-page-container[data-v-
|
|
384
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view[style*="padding: 10px"], .runtime-page-container[data-v-ac38da23] .el-container > [style*="padding: 10px"].el-main, .runtime-page-container[data-v-ac38da23] .el-container > [style*="padding: 10px"].el-aside {
|
|
385
385
|
padding: 0 !important;
|
|
386
386
|
}
|
|
387
|
-
.runtime-page-container[data-v-
|
|
387
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view .el-form, .runtime-page-container[data-v-ac38da23] .el-container > .el-main .el-form, .runtime-page-container[data-v-ac38da23] .el-container > .el-aside .el-form {
|
|
388
388
|
width: 100%;
|
|
389
389
|
display: flex;
|
|
390
390
|
flex-wrap: wrap;
|
|
391
391
|
gap: var(--runtime-page-container-view-gap, 15px);
|
|
392
392
|
}
|
|
393
|
-
.runtime-page-container[data-v-
|
|
393
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view .el-form > div, .runtime-page-container[data-v-ac38da23] .el-container > .el-main .el-form > div, .runtime-page-container[data-v-ac38da23] .el-container > .el-aside .el-form > div {
|
|
394
394
|
width: 100%;
|
|
395
395
|
}
|
|
396
|
-
.runtime-page-container[data-v-
|
|
396
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view .el-form > div[style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-main .el-form > div[style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-aside .el-form > div[style*="display: inline-block"] {
|
|
397
397
|
width: auto;
|
|
398
398
|
}
|
|
399
|
-
.runtime-page-container[data-v-
|
|
399
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view > div, .runtime-page-container[data-v-ac38da23] .el-container > .el-main > div, .runtime-page-container[data-v-ac38da23] .el-container > .el-aside > div {
|
|
400
400
|
width: 100%;
|
|
401
401
|
}
|
|
402
|
-
.runtime-page-container[data-v-
|
|
402
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view > div[style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-main > div[style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-aside > div[style*="display: inline-block"] {
|
|
403
403
|
width: auto;
|
|
404
404
|
}
|
|
405
|
-
.runtime-page-container[data-v-
|
|
405
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view > div[class*=el-col-], .runtime-page-container[data-v-ac38da23] .el-container > .el-main > div[class*=el-col-], .runtime-page-container[data-v-ac38da23] .el-container > .el-aside > div[class*=el-col-], .runtime-page-container[data-v-ac38da23] .runtime-page-container-view > div[style="flex:"], .runtime-page-container[data-v-ac38da23] .el-container > .el-main > div[style="flex:"], .runtime-page-container[data-v-ac38da23] .el-container > .el-aside > div[style="flex:"] {
|
|
406
406
|
flex: none !important;
|
|
407
407
|
}
|
|
408
|
-
.runtime-page-container[data-v-
|
|
408
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view > [style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-main > [style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-aside > [style*="display: inline-block"] {
|
|
409
409
|
width: auto;
|
|
410
410
|
}
|
|
411
|
-
.runtime-page-container[data-v-
|
|
411
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view > .el-row[class*=el-col-], .runtime-page-container[data-v-ac38da23] .el-container > .el-main > .el-row[class*=el-col-], .runtime-page-container[data-v-ac38da23] .el-container > .el-aside > .el-row[class*=el-col-] {
|
|
412
412
|
flex: none;
|
|
413
413
|
}
|
|
414
|
-
.runtime-page-container[data-v-
|
|
414
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view .el-row, .runtime-page-container[data-v-ac38da23] .el-container > .el-main .el-row, .runtime-page-container[data-v-ac38da23] .el-container > .el-aside .el-row {
|
|
415
415
|
gap: var(--layout-form-flex-gap, 15px);
|
|
416
416
|
}
|
|
417
|
-
.runtime-page-container[data-v-
|
|
417
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view .el-row > div, .runtime-page-container[data-v-ac38da23] .el-container > .el-main .el-row > div, .runtime-page-container[data-v-ac38da23] .el-container > .el-aside .el-row > div {
|
|
418
418
|
width: 100%;
|
|
419
419
|
}
|
|
420
|
-
.runtime-page-container[data-v-
|
|
420
|
+
.runtime-page-container[data-v-ac38da23] .runtime-page-container-view .el-row > div[style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-main .el-row > div[style*="display: inline-block"], .runtime-page-container[data-v-ac38da23] .el-container > .el-aside .el-row > div[style*="display: inline-block"] {
|
|
421
421
|
width: auto;
|
|
422
422
|
}
|
|
423
|
-
.runtime-page-container[data-v-
|
|
423
|
+
.runtime-page-container[data-v-ac38da23] .el-container {
|
|
424
424
|
gap: var(--runtime-page-container-view-gap, 15px);
|
|
425
425
|
}
|
|
426
|
-
.runtime-page-container[data-v-
|
|
426
|
+
.runtime-page-container[data-v-ac38da23] .el-container > .el-main, .runtime-page-container[data-v-ac38da23] .el-container > .el-aside {
|
|
427
427
|
padding: 0;
|
|
428
428
|
}.yx-affix[data-v-a994b02d]:empty {
|
|
429
429
|
display: none;
|
|
@@ -585,21 +585,21 @@
|
|
|
585
585
|
.amb-widget-tools-parent[data-v-a9801c3f] .amb-widget-container-tool > .el-form-item {
|
|
586
586
|
margin-bottom: 0;
|
|
587
587
|
}
|
|
588
|
-
[data-v-
|
|
588
|
+
[data-v-34d362f9] .el-form-item__content {
|
|
589
589
|
height: 100% !important;
|
|
590
590
|
}
|
|
591
|
-
[data-v-
|
|
591
|
+
[data-v-34d362f9] .ql-toolbar.ql-snow {
|
|
592
592
|
line-height: 24px;
|
|
593
593
|
}
|
|
594
|
-
[data-v-
|
|
594
|
+
[data-v-34d362f9] .ql-toolbar.ql-snow .ql-formats {
|
|
595
595
|
display: inline-flex;
|
|
596
596
|
align-items: center;
|
|
597
597
|
vertical-align: middle;
|
|
598
598
|
}
|
|
599
|
-
[data-v-
|
|
599
|
+
[data-v-34d362f9] .ql-toolbar.ql-snow button[data-tooltip],[data-v-34d362f9] .ql-toolbar.ql-snow .ql-picker-label[data-tooltip] {
|
|
600
600
|
position: relative;
|
|
601
601
|
}
|
|
602
|
-
[data-v-
|
|
602
|
+
[data-v-34d362f9] .ql-toolbar.ql-snow button[data-tooltip]::after,[data-v-34d362f9] .ql-toolbar.ql-snow .ql-picker-label[data-tooltip]::after {
|
|
603
603
|
content: attr(data-tooltip);
|
|
604
604
|
position: absolute;
|
|
605
605
|
bottom: calc(100% + 5px);
|
|
@@ -617,129 +617,129 @@
|
|
|
617
617
|
z-index: 9999;
|
|
618
618
|
pointer-events: none;
|
|
619
619
|
}
|
|
620
|
-
[data-v-
|
|
620
|
+
[data-v-34d362f9] .ql-toolbar.ql-snow button[data-tooltip]:hover::after,[data-v-34d362f9] .ql-toolbar.ql-snow .ql-picker-label[data-tooltip]:hover::after {
|
|
621
621
|
opacity: 1;
|
|
622
622
|
visibility: visible;
|
|
623
623
|
}
|
|
624
|
-
[data-v-
|
|
624
|
+
[data-v-34d362f9] .ql-container.ql-snow .ql-editor::selection {
|
|
625
625
|
background: #b4d5fe;
|
|
626
626
|
}
|
|
627
|
-
[data-v-
|
|
627
|
+
[data-v-34d362f9] .ql-container.ql-snow .ql-editor *::selection {
|
|
628
628
|
background: #b4d5fe;
|
|
629
629
|
}
|
|
630
|
-
[data-v-
|
|
630
|
+
[data-v-34d362f9] .ql-editor {
|
|
631
631
|
white-space: pre-wrap;
|
|
632
632
|
}
|
|
633
|
-
[data-v-
|
|
633
|
+
[data-v-34d362f9] .ql-editor:not(:focus)::selection,[data-v-34d362f9] .ql-editor:not(:focus) *::selection {
|
|
634
634
|
background: #b4d5fe !important;
|
|
635
635
|
}
|
|
636
|
-
[data-v-
|
|
636
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item::before {
|
|
637
637
|
content: "默认";
|
|
638
638
|
}
|
|
639
|
-
[data-v-
|
|
639
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="12px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="12px"]::before {
|
|
640
640
|
content: "12px";
|
|
641
641
|
}
|
|
642
|
-
[data-v-
|
|
642
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="14px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="14px"]::before {
|
|
643
643
|
content: "14px";
|
|
644
644
|
}
|
|
645
|
-
[data-v-
|
|
645
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="16px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="16px"]::before {
|
|
646
646
|
content: "16px";
|
|
647
647
|
}
|
|
648
|
-
[data-v-
|
|
648
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="18px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="18px"]::before {
|
|
649
649
|
content: "18px";
|
|
650
650
|
}
|
|
651
|
-
[data-v-
|
|
651
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="20px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="20px"]::before {
|
|
652
652
|
content: "20px";
|
|
653
653
|
}
|
|
654
|
-
[data-v-
|
|
654
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="24px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="24px"]::before {
|
|
655
655
|
content: "24px";
|
|
656
656
|
}
|
|
657
|
-
[data-v-
|
|
657
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="28px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="28px"]::before {
|
|
658
658
|
content: "28px";
|
|
659
659
|
}
|
|
660
|
-
[data-v-
|
|
660
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="32px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="32px"]::before {
|
|
661
661
|
content: "32px";
|
|
662
662
|
}
|
|
663
|
-
[data-v-
|
|
663
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="36px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="36px"]::before {
|
|
664
664
|
content: "36px";
|
|
665
665
|
}
|
|
666
|
-
[data-v-
|
|
666
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="48px"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="48px"]::before {
|
|
667
667
|
content: "48px";
|
|
668
668
|
}
|
|
669
|
-
[data-v-
|
|
669
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item::before {
|
|
670
670
|
content: "默认字体";
|
|
671
671
|
}
|
|
672
|
-
[data-v-
|
|
672
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="Source Han Sans CN"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="Source Han Sans CN"]::before {
|
|
673
673
|
content: "思源黑体";
|
|
674
674
|
font-family: "Source Han Sans CN";
|
|
675
675
|
}
|
|
676
|
-
[data-v-
|
|
676
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimSun]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimSun]::before {
|
|
677
677
|
content: "宋体";
|
|
678
678
|
font-family: "SimSun";
|
|
679
679
|
}
|
|
680
|
-
[data-v-
|
|
680
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimHei]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimHei]::before {
|
|
681
681
|
content: "黑体";
|
|
682
682
|
font-family: "SimHei";
|
|
683
683
|
}
|
|
684
|
-
[data-v-
|
|
684
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="Microsoft YaHei"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="Microsoft YaHei"]::before {
|
|
685
685
|
content: "微软雅黑";
|
|
686
686
|
font-family: "Microsoft YaHei";
|
|
687
687
|
}
|
|
688
|
-
[data-v-
|
|
688
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=KaiTi]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=KaiTi]::before {
|
|
689
689
|
content: "楷体";
|
|
690
690
|
font-family: "KaiTi";
|
|
691
691
|
}
|
|
692
|
-
[data-v-
|
|
692
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=FangSong]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=FangSong]::before {
|
|
693
693
|
content: "仿宋";
|
|
694
694
|
font-family: "FangSong";
|
|
695
695
|
}
|
|
696
|
-
[data-v-
|
|
696
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Arial]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Arial]::before {
|
|
697
697
|
content: "Arial";
|
|
698
698
|
font-family: "Arial";
|
|
699
699
|
}
|
|
700
|
-
[data-v-
|
|
700
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="Times New Roman"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="Times New Roman"]::before {
|
|
701
701
|
content: "Times New Roman";
|
|
702
702
|
font-family: "Times New Roman";
|
|
703
703
|
}
|
|
704
|
-
[data-v-
|
|
704
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Verdana]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Verdana]::before {
|
|
705
705
|
content: "Verdana";
|
|
706
706
|
font-family: "Verdana";
|
|
707
707
|
}
|
|
708
|
-
[data-v-
|
|
708
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Georgia]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Georgia]::before {
|
|
709
709
|
content: "Georgia";
|
|
710
710
|
font-family: "Georgia";
|
|
711
711
|
}
|
|
712
|
-
[data-v-
|
|
712
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="Courier New"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="Courier New"]::before {
|
|
713
713
|
content: "Courier New";
|
|
714
714
|
font-family: "Courier New";
|
|
715
715
|
}
|
|
716
|
-
[data-v-
|
|
716
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-label::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-item::before {
|
|
717
717
|
content: "正文";
|
|
718
718
|
}
|
|
719
|
-
[data-v-
|
|
719
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
|
|
720
720
|
content: "标题1";
|
|
721
721
|
}
|
|
722
|
-
[data-v-
|
|
722
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
|
|
723
723
|
content: "标题2";
|
|
724
724
|
}
|
|
725
|
-
[data-v-
|
|
725
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
|
|
726
726
|
content: "标题3";
|
|
727
727
|
}
|
|
728
|
-
[data-v-
|
|
728
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
|
|
729
729
|
content: "标题4";
|
|
730
730
|
}
|
|
731
|
-
[data-v-
|
|
731
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
|
|
732
732
|
content: "标题5";
|
|
733
733
|
}
|
|
734
|
-
[data-v-
|
|
734
|
+
[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,[data-v-34d362f9] .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
|
|
735
735
|
content: "标题6";
|
|
736
736
|
}
|
|
737
|
-
.richtext-wrapper[data-v-
|
|
737
|
+
.richtext-wrapper[data-v-34d362f9] {
|
|
738
738
|
position: relative;
|
|
739
739
|
width: 100%;
|
|
740
740
|
height: 100%;
|
|
741
741
|
}
|
|
742
|
-
.richtext-wrapper.is-fullscreen[data-v-
|
|
742
|
+
.richtext-wrapper.is-fullscreen[data-v-34d362f9] {
|
|
743
743
|
position: fixed;
|
|
744
744
|
top: 0;
|
|
745
745
|
left: 0;
|
|
@@ -750,10 +750,10 @@
|
|
|
750
750
|
padding: 20px;
|
|
751
751
|
box-sizing: border-box;
|
|
752
752
|
}
|
|
753
|
-
.richtext-wrapper.is-fullscreen[data-v-
|
|
753
|
+
.richtext-wrapper.is-fullscreen[data-v-34d362f9] .ql-container {
|
|
754
754
|
height: calc(100% - 82px) !important;
|
|
755
755
|
}
|
|
756
|
-
.toolbar-right-btns[data-v-
|
|
756
|
+
.toolbar-right-btns[data-v-34d362f9] {
|
|
757
757
|
position: absolute;
|
|
758
758
|
top: 5px;
|
|
759
759
|
right: 10px;
|
|
@@ -761,7 +761,7 @@
|
|
|
761
761
|
display: flex;
|
|
762
762
|
gap: 4px;
|
|
763
763
|
}
|
|
764
|
-
.toolbar-btn[data-v-
|
|
764
|
+
.toolbar-btn[data-v-34d362f9] {
|
|
765
765
|
width: 28px;
|
|
766
766
|
height: 24px;
|
|
767
767
|
display: flex;
|
|
@@ -773,11 +773,11 @@
|
|
|
773
773
|
border-radius: 4px;
|
|
774
774
|
color: #666;
|
|
775
775
|
}
|
|
776
|
-
.toolbar-btn[data-v-
|
|
776
|
+
.toolbar-btn[data-v-34d362f9]:hover {
|
|
777
777
|
background: #e0e0e0;
|
|
778
778
|
color: #333;
|
|
779
779
|
}
|
|
780
|
-
.richtext-statusbar[data-v-
|
|
780
|
+
.richtext-statusbar[data-v-34d362f9] {
|
|
781
781
|
position: absolute;
|
|
782
782
|
bottom: 0;
|
|
783
783
|
left: 0;
|
|
@@ -793,10 +793,10 @@
|
|
|
793
793
|
font-size: 12px;
|
|
794
794
|
color: #666;
|
|
795
795
|
}
|
|
796
|
-
.richtext-statusbar .word-count[data-v-
|
|
796
|
+
.richtext-statusbar .word-count[data-v-34d362f9] {
|
|
797
797
|
margin-left: 15px;
|
|
798
798
|
}
|
|
799
|
-
.upload-loading[data-v-
|
|
799
|
+
.upload-loading[data-v-34d362f9] {
|
|
800
800
|
position: absolute;
|
|
801
801
|
top: 0;
|
|
802
802
|
left: 0;
|
|
@@ -809,20 +809,20 @@
|
|
|
809
809
|
justify-content: center;
|
|
810
810
|
z-index: 100;
|
|
811
811
|
}
|
|
812
|
-
.upload-loading .loading-spinner[data-v-
|
|
812
|
+
.upload-loading .loading-spinner[data-v-34d362f9] {
|
|
813
813
|
width: 32px;
|
|
814
814
|
height: 32px;
|
|
815
815
|
border: 3px solid #f3f3f3;
|
|
816
816
|
border-top: 3px solid #409eff;
|
|
817
817
|
border-radius: 50%;
|
|
818
|
-
animation: spin-
|
|
818
|
+
animation: spin-34d362f9 1s linear infinite;
|
|
819
819
|
margin-bottom: 8px;
|
|
820
820
|
}
|
|
821
|
-
.upload-loading span[data-v-
|
|
821
|
+
.upload-loading span[data-v-34d362f9] {
|
|
822
822
|
color: #666;
|
|
823
823
|
font-size: 14px;
|
|
824
824
|
}
|
|
825
|
-
@keyframes spin-
|
|
825
|
+
@keyframes spin-34d362f9 {
|
|
826
826
|
0% {
|
|
827
827
|
transform: rotate(0deg);
|
|
828
828
|
}
|
|
@@ -912,7 +912,7 @@
|
|
|
912
912
|
display: inline-flex;
|
|
913
913
|
gap: 8px;
|
|
914
914
|
}
|
|
915
|
-
[data-v-
|
|
915
|
+
[data-v-6a44ac5e] .el-empty {
|
|
916
916
|
padding: 0;
|
|
917
917
|
}
|
|
918
918
|
|
|
@@ -949,7 +949,7 @@
|
|
|
949
949
|
}
|
|
950
950
|
|
|
951
951
|
/** 右键菜单样式 */
|
|
952
|
-
.context-menu[data-v-
|
|
952
|
+
.context-menu[data-v-a8a325a9] {
|
|
953
953
|
position: fixed;
|
|
954
954
|
background: #fff;
|
|
955
955
|
z-index: 999;
|
|
@@ -961,7 +961,7 @@
|
|
|
961
961
|
font-size: 14px;
|
|
962
962
|
display: none; /* 默认隐藏 */
|
|
963
963
|
}
|
|
964
|
-
.context-menu li[data-v-
|
|
964
|
+
.context-menu li[data-v-a8a325a9] {
|
|
965
965
|
list-style-type: none;
|
|
966
966
|
min-width: 75px;
|
|
967
967
|
line-height: 28px;
|
|
@@ -970,12 +970,12 @@
|
|
|
970
970
|
padding-left: 5px;
|
|
971
971
|
cursor: pointer;
|
|
972
972
|
}
|
|
973
|
-
.context-menu li[data-v-
|
|
973
|
+
.context-menu li[data-v-a8a325a9]:hover {
|
|
974
974
|
background: #0165e1;
|
|
975
975
|
color: #fff;
|
|
976
976
|
}
|
|
977
977
|
/** 右键菜单样式 */
|
|
978
|
-
.custom-tree-node[data-v-
|
|
978
|
+
.custom-tree-node[data-v-a8a325a9] {
|
|
979
979
|
flex: 1;
|
|
980
980
|
display: flex;
|
|
981
981
|
align-items: center;
|
|
@@ -984,11 +984,11 @@
|
|
|
984
984
|
padding-right: 8px;
|
|
985
985
|
}
|
|
986
986
|
.item-side {
|
|
987
|
-
&[data-v-
|
|
987
|
+
&[data-v-a8a325a9] {
|
|
988
988
|
display: flex;
|
|
989
989
|
align-items: center;
|
|
990
990
|
}
|
|
991
|
-
.file[data-v-
|
|
991
|
+
.file[data-v-a8a325a9] {
|
|
992
992
|
width: 17px;
|
|
993
993
|
height: 17px;
|
|
994
994
|
margin-right: 5px;
|