cloud-web-corejs 1.0.276 → 1.0.278
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/package.json +30 -24
- package/src/App.vue +73 -71
- package/src/api/user.js +21 -0
- package/src/components/baseArea/index.vue +82 -27
- package/src/components/baseTabs/mixins.js +5 -1
- package/src/components/formDialog/README.md +371 -0
- package/src/components/formDialog/actionButtons.js +90 -0
- package/src/components/formDialog/index.js +48 -0
- package/src/components/formDialog/index.vue +802 -0
- package/src/components/formDrawer/drawer.vue +722 -0
- package/src/components/formDrawer/index.js +50 -0
- package/src/components/luckysheet/dialog.vue +1 -1
- package/src/components/micro-view-host/contract.js +66 -0
- package/src/components/micro-view-host/index.vue +148 -0
- package/src/components/table/tableForm.vue +16 -5
- package/src/components/table/tableFormMixin.js +35 -7
- package/src/components/vb-tabs/x-tabs.vue +167 -143
- package/src/components/wf/content.vue +14 -0
- package/src/components/wf/content2.vue +4 -2
- package/src/components/wf/wf.js +74 -23
- package/src/components/wf/wfActionDropdown.vue +85 -0
- package/src/components/wf/wfActionItems.js +136 -0
- package/src/components/wf/wfAutoConfirm.js +55 -0
- package/src/components/wf/wfButtonName.js +60 -0
- package/src/components/wf/wfUserRange.js +53 -0
- package/src/components/wf/wfUtil.js +373 -295
- package/src/components/xform/XFormTabContainer//346/226/260/345/242/236/351/241/265/347/255/276/346/250/241/345/274/217-/346/234/200/347/273/210/345/256/236/347/216/260.md +195 -0
- package/src/components/xform/docs/2026-07 table/344/270/216excelExport/344/277/256/345/244/215/345/217/212/345/257/274/345/207/272/344/274/230/345/214/226.md" +57 -0
- package/src/components/xform/docs/2026-07 /346/216/222/346/237/245/344/277/256/345/244/215/350/256/260/345/275/225.md" +73 -0
- package/src/components/xform/docs/autocomplete /350/207/252/345/212/250/345/256/214/346/210/220/347/273/204/344/273/266/350/257/264/346/230/216.md" +126 -0
- package/src/components/xform/docs//345/257/271/346/257/224/345/212/237/350/203/275/350/220/275/345/234/260/346/226/271/346/241/210.md +986 -0
- package/src/components/xform/docs//346/225/260/346/215/256/350/241/250/346/240/274/345/212/250/346/200/201/345/210/227 JSON /350/257/264/346/230/216.md" +657 -0
- package/src/components/xform/docs//346/240/221/350/241/250rowField/346/224/266/346/225/233-/350/220/275/345/234/260/346/226/207/346/241/243.md +1427 -0
- package/src/components/xform/form-designer/designer.js +2085 -2025
- package/src/components/xform/form-designer/form-widget/container-widget/containerMixin.js +9 -11
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +76 -75
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +10 -4
- package/src/components/xform/form-designer/form-widget/container-widget/detail-plain-widget.vue +76 -0
- package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +59 -5
- package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +38 -17
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +138 -13
- package/src/components/xform/form-designer/form-widget/dialog/formFieldDialog.vue +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1774 -1772
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +2 -3
- package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/a-link-widget.vue +66 -53
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +287 -214
- package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +76 -66
- package/src/components/xform/form-designer/form-widget/field-widget/cascader-widget.vue +208 -124
- package/src/components/xform/form-designer/form-widget/field-widget/census-widget.vue +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/copy_button-widget.vue +11 -2
- package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +7 -6
- package/src/components/xform/form-designer/form-widget/field-widget/date-widget.vue +43 -19
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +680 -372
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +879 -763
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/date-limit-mixin.js +17 -2
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +3 -9
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/relative-default-mixin.js +107 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/relativeDateUtil.js +321 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/time-limit-mixin.js +77 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/vabsearch-mixin.js +13 -0
- package/src/components/xform/form-designer/form-widget/field-widget/number-widget.vue +13 -8
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +4 -9
- package/src/components/xform/form-designer/form-widget/field-widget/save_submit_wf_button-widget.vue +3 -0
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +120 -120
- package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +4 -0
- package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +11 -0
- package/src/components/xform/form-designer/form-widget/field-widget/switch-widget.vue +9 -1
- package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +7 -3
- package/src/components/xform/form-designer/form-widget/field-widget/time-range-widget.vue +4 -2
- package/src/components/xform/form-designer/form-widget/field-widget/time-widget.vue +36 -5
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +338 -374
- package/src/components/xform/form-designer/form-widget/index.vue +6 -1
- package/src/components/xform/form-designer/form-widget/indexMixin.js +29 -25
- package/src/components/xform/form-designer/index.vue +194 -191
- package/src/components/xform/form-designer/indexMixin.js +860 -847
- package/src/components/xform/form-designer/setting-panel/dataSource-setting.vue +397 -397
- package/src/components/xform/form-designer/setting-panel/form-dynamicField-setting.vue +602 -601
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +1790 -1483
- package/src/components/xform/form-designer/setting-panel/index.vue +2 -7
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +370 -335
- package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +585 -544
- package/src/components/xform/form-designer/setting-panel/property-editor/a-link-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/a-text-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/alignType-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/buttonIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/censusClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/colorClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/commonAttributeEnabled-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +124 -125
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +1151 -957
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +96 -74
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail-plain/detail-plain-editor.vue +75 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid/colHeight-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid/gutter-editor.vue +14 -13
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-height-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-offset-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-pull-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-push-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-span-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/container-h5-card/h5-card-editor.vue +124 -124
- package/src/components/xform/form-designer/setting-panel/property-editor/container-list-h5/list-h5-editor.vue +26 -31
- package/src/components/xform/form-designer/setting-panel/property-editor/container-panel/height-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-panel/width-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tab/tab-customClass-editor.vue +119 -119
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tab/tabClass-editor.vue +45 -45
- package/src/components/xform/form-designer/setting-panel/property-editor/container-table/table-dynamicField-editor.vue +340 -342
- package/src/components/xform/form-designer/setting-panel/property-editor/container-table-cell/cellHeight-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-table-cell/cellWidth-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tree/tree-customClass-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tree-pane/tree-pane-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/cancelButtonLabel-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/okButtonLabel-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/title-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/width-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/containerClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/customClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/descriptionsItems-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/downloadButtonFlag-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +6 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/dsName-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/echartHeight-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/endPlaceholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-accessUrl/accessUrl-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaDataType-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaMinLevel-editor.vue +50 -50
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaName-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-autocomplete/autocomplete-vabSearchName-editor.vue +7 -7
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/addTableData-event-editor.vue +84 -85
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/button-type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindActions.js +262 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindEvent-editor.vue +97 -88
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/form-host-event-editor.vue +188 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/icon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +27 -10
- package/src/components/xform/form-designer/setting-panel/property-editor/field-cascader/checkStrictly-editor.vue +11 -13
- package/src/components/xform/form-designer/setting-panel/property-editor/field-common/keyName-editor.vue +74 -67
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-dateLimit-editor.vue +27 -5
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-defaultValue-editor.vue +35 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-valueFormat-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultValue-editor.vue +35 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-valueFormat-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-divider/contentPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-menu-editor.vue +59 -59
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +11 -11
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +10 -10
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +12 -12
- package/src/components/xform/form-designer/setting-panel/property-editor/field-file-upload/file-upload-fileTypes-editor.vue +44 -44
- package/src/components/xform/form-designer/setting-panel/property-editor/field-html-text/htmlContent-editor.vue +29 -29
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +6 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/field-number/controlsPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-picture-upload/picture-upload-fileTypes-editor.vue +44 -44
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +115 -115
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +115 -115
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/highThreshold-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/lowThreshold-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-max-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-script/script-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/field-script-input/script-input-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/fontSize-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/textContent-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-status/field-status-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/activeText-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/inactiveText-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/switchWidth-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-button-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +74 -74
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-defaultValue-editor.vue +34 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-timeLimit-editor.vue +53 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time-range/time-range-defaultValue-editor.vue +35 -18
- package/src/components/xform/form-designer/setting-panel/property-editor/field-time-range/time-range-format-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchField-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchName-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload2/field-vabUpload2-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vue-page/vue-page-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/fileMaxSize-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/fileTypesSelect.vue +176 -176
- package/src/components/xform/form-designer/setting-panel/property-editor/fixedQuery-editor.vue +39 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +41 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/formula-editor.vue +972 -972
- package/src/components/xform/form-designer/setting-panel/property-editor/iconClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/label-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelAlign-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelColor-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelWidth-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/limit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/max-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/maxLength-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/min-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/minLength-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/multipleLimit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +15 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/oplog-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/placeholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/precision-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/prefixIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +6 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/relative-default-block.vue +369 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/requiredHint-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/rows-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/space-editor-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/startPlaceholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/step-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/styleTableClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/styleTitClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/suffixIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +2 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/type-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/uploadTip-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/uploadURL-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/urlValueEnabled-editor.vue +91 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/validation-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/validationHint-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/widgetWidth-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +374 -351
- package/src/components/xform/form-designer/toolbar-panel/index.vue +266 -103
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +655 -589
- package/src/components/xform/form-designer/widget-panel/index.vue +391 -341
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +351 -308
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +4642 -4028
- package/src/components/xform/form-render/container-item/containerItemMixin.js +76 -61
- package/src/components/xform/form-render/container-item/data-table-item.vue +24 -13
- package/src/components/xform/form-render/container-item/data-table-mixin.js +5927 -3400
- package/src/components/xform/form-render/container-item/detail-h5-item.vue +173 -173
- package/src/components/xform/form-render/container-item/detail-item.vue +446 -224
- package/src/components/xform/form-render/container-item/detail-plain-item.vue +92 -0
- package/src/components/xform/form-render/container-item/list-h5-item.vue +1186 -411
- package/src/components/xform/form-render/container-item/tab-item.vue +129 -125
- package/src/components/xform/form-render/container-item/table-item.vue +0 -3
- package/src/components/xform/form-render/container-item/table2-item.vue +18 -10
- package/src/components/xform/form-render/dynamicDialogRender.js +140 -99
- package/src/components/xform/form-render/index.vue +8 -8
- package/src/components/xform/form-render/indexMixin.js +5299 -3766
- package/src/components/xform/form-render/refMixin.js +14 -11
- package/src/components/xform/lang/en-US.js +473 -438
- package/src/components/xform/lang/en-US_extension.js +4 -0
- package/src/components/xform/lang/zh-CN.js +646 -620
- package/src/components/xform/mixins/defaultHandle.js +363 -26
- package/src/components/xform/mixins/scriptHttp.js +54 -51
- package/src/components/xform/utils/attachmentValueUtil.js +239 -0
- package/src/components/xform/utils/fixedQueryUtil.js +93 -0
- package/src/components/xform/utils/format.js +195 -169
- package/src/components/xform/utils/queryParamUtil.js +84 -0
- package/src/components/xform/utils/tableColumnHelper.js +7 -8
- package/src/components/xform/utils/util.js +1663 -1551
- package/src/components/xform/utils/validators.js +100 -48
- package/src/index.js +403 -89
- package/src/layout/components/AppMain.vue +147 -119
- package/src/layout/components/Sidebar/default.vue +109 -59
- package/src/layout/components/TagsView/index.vue +1 -1
- package/src/layout/components/extractedCode/queryDialog.vue +33 -26
- package/src/layout/components/extractedCode/viewDialog.vue +207 -193
- package/src/layout/components/langTool.vue +128 -123
- package/src/layout/defaultLayout.vue +170 -158
- package/src/mixins/wf/index.js +40 -38
- package/src/public-path.js +38 -0
- package/src/router/modules/system.js +4 -0
- package/src/store/config/index.js +945 -669
- package/src/utils/pdfUtil.js +428 -70
- package/src/views/bd/setting/bd_company_env/dialog.vue +1 -1
- package/src/views/bd/setting/formVersion/button.vue +5 -0
- package/src/views/bd/setting/formVersion/ftHistoryDialog.vue +21 -10
- package/src/views/bd/setting/formVersion/link.vue +5 -0
- package/src/views/bd/setting/form_script/edit.vue +1 -0
- package/src/views/bd/setting/form_script/edit1.vue +1 -0
- package/src/views/bd/setting/form_script/form_list.vue +1 -0
- package/src/views/bd/setting/form_script/list.vue +1 -0
- package/src/views/bd/setting/form_script/list1.vue +2 -0
- package/src/views/bd/setting/form_template/edit.vue +1 -0
- package/src/views/bd/setting/form_template/list.vue +2 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +77 -74
- package/src/views/bd/setting/table_model/edit.vue +16 -29
- package/src/views/bd/setting/table_model/list.vue +1 -0
- package/src/views/bd/setting/table_model/mixins/edit.js +295 -149
- package/src/views/bd/setting/table_model/mixins/zdDialog.js +32 -0
- package/src/views/support/export_template/list.vue +1 -1
- package/src/views/user/company_info/edit.vue +149 -88
- package/src/views/user/form/form_template/dialog.vue +1 -1
- package/src/views/user/form/form_template/itemList.vue +1 -1
- package/src/views/user/form/form_template/list.vue +1 -1
- package/src/views/user/form/form_template_field/dialog.vue +1 -1
- package/src/views/user/form/form_type/dialog.vue +1 -1
- package/src/views/user/form/form_type/list.vue +1 -1
- package/src/views/user/form/report_requestaccess/dialog.vue +1 -1
- package/src/views/user/form/report_requestaccess/list.vue +1 -1
- package/src/views/user/form/vform/designer.vue +51 -22
- package/src/views/user/form/vform/render.vue +21 -23
- package/src/views/user/form/view/list.vue +134 -37
- package/src/views/user/wf/wfReport/index.vue +24 -1
- package/src/views/user/wf/wf_manage/list.vue +8 -4
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +0 -209
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin - /345/211/257/346/234/254.js" +0 -1639
- package/src/views/bd/setting/table_model/mixins/edit copy.js +0 -903
- package/src/views/user/menu/voc_list.vue +0 -686
|
@@ -98,8 +98,13 @@ export default {
|
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.form-widget-list {
|
|
101
|
-
min-height: calc(100vh - 98px);
|
|
101
|
+
min-height: calc(100vh - var(--xform-designer-body-offset, 98px));
|
|
102
102
|
padding: 3px;
|
|
103
|
+
// 明细区高度默认关闭:--xform-designer-detail-height 未设置时回退为 revert(等同不写该规则)
|
|
104
|
+
// 目标项目在自己的 :root 覆盖,如 --xform-designer-detail-height: calc(100vh - 200px)
|
|
105
|
+
::v-deep .detail-wrap .d-cont {
|
|
106
|
+
height: var(--xform-designer-detail-height, revert) !important;
|
|
107
|
+
}
|
|
103
108
|
}
|
|
104
109
|
}
|
|
105
110
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import i18n from
|
|
1
|
+
import i18n from "../../../../components/xform/utils/i18n";
|
|
2
2
|
|
|
3
3
|
let modules = {};
|
|
4
4
|
const baseRefUtil = {
|
|
5
|
-
i18n
|
|
5
|
+
i18n,
|
|
6
6
|
};
|
|
7
7
|
|
|
8
8
|
modules = {
|
|
9
|
-
componentName:
|
|
9
|
+
componentName: "VFormWidget",
|
|
10
10
|
mixins: [baseRefUtil.i18n],
|
|
11
11
|
props: {
|
|
12
12
|
designer: Object,
|
|
@@ -15,14 +15,14 @@ modules = {
|
|
|
15
15
|
type: Object,
|
|
16
16
|
default: function () {
|
|
17
17
|
return {};
|
|
18
|
-
}
|
|
18
|
+
},
|
|
19
19
|
},
|
|
20
20
|
globalDsv: {
|
|
21
21
|
type: Object,
|
|
22
22
|
default: function () {
|
|
23
23
|
return {};
|
|
24
|
-
}
|
|
25
|
-
}
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
26
|
},
|
|
27
27
|
provide() {
|
|
28
28
|
var e = this;
|
|
@@ -42,32 +42,35 @@ modules = {
|
|
|
42
42
|
return !1;
|
|
43
43
|
},
|
|
44
44
|
globalModel: {
|
|
45
|
-
formModel: this.formModel
|
|
45
|
+
formModel: this.formModel,
|
|
46
46
|
},
|
|
47
47
|
getSubFormFieldFlag: function () {
|
|
48
48
|
return !1;
|
|
49
49
|
},
|
|
50
50
|
getSubFormName: function () {
|
|
51
|
-
return
|
|
51
|
+
return "";
|
|
52
52
|
},
|
|
53
53
|
getObjectFieldFlag: () => !1,
|
|
54
54
|
getObjectName: () => "",
|
|
55
55
|
};
|
|
56
56
|
},
|
|
57
|
-
inject: [
|
|
57
|
+
inject: ["getDesignerConfig"],
|
|
58
58
|
data() {
|
|
59
59
|
return {
|
|
60
60
|
formModel: {},
|
|
61
|
-
widgetRefList: {}
|
|
61
|
+
widgetRefList: {},
|
|
62
62
|
};
|
|
63
63
|
},
|
|
64
64
|
computed: {
|
|
65
65
|
labelPosition() {
|
|
66
|
-
if (
|
|
66
|
+
if (
|
|
67
|
+
!!this.designer.formConfig &&
|
|
68
|
+
!!this.designer.formConfig.labelPosition
|
|
69
|
+
) {
|
|
67
70
|
return this.designer.formConfig.labelPosition;
|
|
68
71
|
}
|
|
69
72
|
|
|
70
|
-
return
|
|
73
|
+
return "left";
|
|
71
74
|
},
|
|
72
75
|
|
|
73
76
|
size() {
|
|
@@ -75,31 +78,31 @@ modules = {
|
|
|
75
78
|
return this.designer.formConfig.size;
|
|
76
79
|
}
|
|
77
80
|
|
|
78
|
-
return
|
|
81
|
+
return "medium";
|
|
79
82
|
},
|
|
80
83
|
|
|
81
84
|
customClass() {
|
|
82
|
-
return this.designer.formConfig.customClass ||
|
|
85
|
+
return this.designer.formConfig.customClass || "";
|
|
83
86
|
},
|
|
84
87
|
|
|
85
88
|
layoutType() {
|
|
86
89
|
return this.designer.getLayoutType();
|
|
87
|
-
}
|
|
90
|
+
},
|
|
88
91
|
},
|
|
89
92
|
watch: {
|
|
90
|
-
|
|
93
|
+
"designer.widgetList": {
|
|
91
94
|
deep: true,
|
|
92
95
|
handler(val) {
|
|
93
96
|
//
|
|
94
|
-
}
|
|
97
|
+
},
|
|
95
98
|
},
|
|
96
99
|
|
|
97
|
-
|
|
100
|
+
"designer.formConfig": {
|
|
98
101
|
deep: true,
|
|
99
102
|
handler(val) {
|
|
100
103
|
//
|
|
101
|
-
}
|
|
102
|
-
}
|
|
104
|
+
},
|
|
105
|
+
},
|
|
103
106
|
},
|
|
104
107
|
created() {
|
|
105
108
|
this.designer.initDesigner(!!this.getDesignerConfig().resetFormJson);
|
|
@@ -111,11 +114,12 @@ modules = {
|
|
|
111
114
|
},
|
|
112
115
|
methods: {
|
|
113
116
|
getWidgetName(widget) {
|
|
114
|
-
return (widget.targetType || widget.type) +
|
|
117
|
+
return (widget.targetType || widget.type) + "-widget";
|
|
115
118
|
},
|
|
116
119
|
|
|
117
120
|
disableFirefoxDefaultDrop() {
|
|
118
|
-
let isFirefox =
|
|
121
|
+
let isFirefox =
|
|
122
|
+
navigator.userAgent.toLowerCase().indexOf("firefox") !== -1;
|
|
119
123
|
if (isFirefox) {
|
|
120
124
|
document.body.ondrop = function (event) {
|
|
121
125
|
event.stopPropagation();
|
|
@@ -135,7 +139,7 @@ modules = {
|
|
|
135
139
|
}
|
|
136
140
|
|
|
137
141
|
this.designer.emitHistoryChange();
|
|
138
|
-
this.designer.emitEvent(
|
|
142
|
+
this.designer.emitEvent("field-selected", null);
|
|
139
143
|
},
|
|
140
144
|
|
|
141
145
|
onDragUpdate() {
|
|
@@ -154,7 +158,7 @@ modules = {
|
|
|
154
158
|
getWidgetRef(widgetName, showError = false) {
|
|
155
159
|
let foundRef = this.widgetRefList[widgetName];
|
|
156
160
|
if (!foundRef && !!showError) {
|
|
157
|
-
this.$message.error(this.i18nt(
|
|
161
|
+
this.$message.error(this.i18nt("render.hint.refNotFound") + widgetName);
|
|
158
162
|
}
|
|
159
163
|
return foundRef;
|
|
160
164
|
},
|
|
@@ -177,7 +181,7 @@ modules = {
|
|
|
177
181
|
delete this.widgetRefList[e];
|
|
178
182
|
});
|
|
179
183
|
},
|
|
180
|
-
}
|
|
184
|
+
},
|
|
181
185
|
};
|
|
182
186
|
|
|
183
187
|
export default modules;
|
|
@@ -1,191 +1,194 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
/**
|
|
3
|
-
* author: vformAdmin
|
|
4
|
-
* email: vdpadmin@163.com
|
|
5
|
-
* website: https://www.vform666.com
|
|
6
|
-
* date: 2021.08.18
|
|
7
|
-
* remark: 如果要分发VForm源码,需在本文件顶部保留此文件头信息!!
|
|
8
|
-
*/
|
|
9
|
-
-->
|
|
10
|
-
|
|
11
|
-
<template>
|
|
12
|
-
<el-container class="main-container full-height">
|
|
13
|
-
<!-- <el-header class="main-header">
|
|
14
|
-
<div class="float-left main-title">
|
|
15
|
-
<img src="../../assets/vform-logo.png" @click="openHome">
|
|
16
|
-
<span class="bold">VForm</span> {{i18nt('application.productTitle')}} <span class="version-span">Ver {{vFormVersion}}</span></div>
|
|
17
|
-
<div class="float-right external-link">
|
|
18
|
-
<el-dropdown v-if="showLink('languageMenu')" :hide-timeout="2000" @command="handleLanguageChanged">
|
|
19
|
-
<span class="el-dropdown-link">{{curLangName}}<i class="el-icon-arrow-down el-icon--right"></i></span>
|
|
20
|
-
<el-dropdown-menu slot="dropdown">
|
|
21
|
-
<el-dropdown-item command="zh-CN">{{i18nt('application.zh-CN')}}</el-dropdown-item>
|
|
22
|
-
<el-dropdown-item command="en-US">{{i18nt('application.en-US')}}</el-dropdown-item>
|
|
23
|
-
</el-dropdown-menu>
|
|
24
|
-
</el-dropdown>
|
|
25
|
-
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, gitUrl)" target="_blank"><svg-icon icon-class="github" />{{i18nt('application.github')}}</a>
|
|
26
|
-
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, docUrl)" target="_blank"><svg-icon icon-class="document" />{{i18nt('application.document')}}</a>
|
|
27
|
-
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, chatUrl)" target="_blank">{{i18nt('application.qqGroup')}}</a>
|
|
28
|
-
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, subScribeUrl)" target="_blank">
|
|
29
|
-
{{i18nt('application.subscription')}}<i class="el-icon-top-right"></i></a>
|
|
30
|
-
</div>
|
|
31
|
-
</el-header> -->
|
|
32
|
-
|
|
33
|
-
<el-container>
|
|
34
|
-
<el-aside class="side-panel attribute-right">
|
|
35
|
-
<widget-panel ref="widgetPanelRef" :designer="designer"/>
|
|
36
|
-
</el-aside>
|
|
37
|
-
|
|
38
|
-
<el-container class="center-layout-container">
|
|
39
|
-
<el-header class="toolbar-header">
|
|
40
|
-
<toolbar-panel :designer="designer" ref="toolbarRef" @loadWidgets="loadWidgets">
|
|
41
|
-
<template v-for="(idx, slotName) in $slots" #[slotName]>
|
|
42
|
-
<slot :name="slotName"></slot>
|
|
43
|
-
</template>
|
|
44
|
-
</toolbar-panel>
|
|
45
|
-
</el-header>
|
|
46
|
-
<el-main class="form-widget-main">
|
|
47
|
-
<el-scrollbar class="container-scroll-bar" style="height:
|
|
48
|
-
<v-form-widget :designer="designer" :form-config="designer.formConfig" ref="formRef"></v-form-widget>
|
|
49
|
-
</el-scrollbar>
|
|
50
|
-
</el-main>
|
|
51
|
-
</el-container>
|
|
52
|
-
|
|
53
|
-
<el-aside class="attribute-right">
|
|
54
|
-
<setting-panel :designer="designer" :selected-widget="designer.selectedWidget"
|
|
55
|
-
:form-config="designer.formConfig" ref="formSettingRef"/>
|
|
56
|
-
</el-aside>
|
|
57
|
-
</el-container>
|
|
58
|
-
<preformDialog v-if="showPreformDialog" :visiable.sync="showPreformDialog"
|
|
59
|
-
@confirm="confirmPreformDialog"></preformDialog>
|
|
60
|
-
</el-container>
|
|
61
|
-
</template>
|
|
62
|
-
|
|
63
|
-
<script>
|
|
64
|
-
|
|
65
|
-
import WidgetPanel from './widget-panel/index';
|
|
66
|
-
import ToolbarPanel from './toolbar-panel/index';
|
|
67
|
-
import SettingPanel from './setting-panel/index';
|
|
68
|
-
import VFormWidget from './form-widget/index';
|
|
69
|
-
import indexMixin from '../../../components/xform/form-designer/indexMixin';
|
|
70
|
-
import preformDialog from "../../../components/xform/form-designer/form-widget/dialog/preformDialog.vue";
|
|
71
|
-
|
|
72
|
-
export default {
|
|
73
|
-
name: 'VFormDesigner',
|
|
74
|
-
components: {
|
|
75
|
-
preformDialog,
|
|
76
|
-
WidgetPanel,
|
|
77
|
-
ToolbarPanel,
|
|
78
|
-
SettingPanel,
|
|
79
|
-
VFormWidget
|
|
80
|
-
},
|
|
81
|
-
mixins: [indexMixin],
|
|
82
|
-
};
|
|
83
|
-
</script>
|
|
84
|
-
|
|
85
|
-
<style lang="scss" scoped>
|
|
86
|
-
.el-aside {
|
|
87
|
-
font-family: inherit !important;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
border-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.float-
|
|
150
|
-
float:
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
1
|
+
<!--
|
|
2
|
+
/**
|
|
3
|
+
* author: vformAdmin
|
|
4
|
+
* email: vdpadmin@163.com
|
|
5
|
+
* website: https://www.vform666.com
|
|
6
|
+
* date: 2021.08.18
|
|
7
|
+
* remark: 如果要分发VForm源码,需在本文件顶部保留此文件头信息!!
|
|
8
|
+
*/
|
|
9
|
+
-->
|
|
10
|
+
|
|
11
|
+
<template>
|
|
12
|
+
<el-container class="main-container full-height">
|
|
13
|
+
<!-- <el-header class="main-header">
|
|
14
|
+
<div class="float-left main-title">
|
|
15
|
+
<img src="../../assets/vform-logo.png" @click="openHome">
|
|
16
|
+
<span class="bold">VForm</span> {{i18nt('application.productTitle')}} <span class="version-span">Ver {{vFormVersion}}</span></div>
|
|
17
|
+
<div class="float-right external-link">
|
|
18
|
+
<el-dropdown v-if="showLink('languageMenu')" :hide-timeout="2000" @command="handleLanguageChanged">
|
|
19
|
+
<span class="el-dropdown-link">{{curLangName}}<i class="el-icon-arrow-down el-icon--right"></i></span>
|
|
20
|
+
<el-dropdown-menu slot="dropdown">
|
|
21
|
+
<el-dropdown-item command="zh-CN">{{i18nt('application.zh-CN')}}</el-dropdown-item>
|
|
22
|
+
<el-dropdown-item command="en-US">{{i18nt('application.en-US')}}</el-dropdown-item>
|
|
23
|
+
</el-dropdown-menu>
|
|
24
|
+
</el-dropdown>
|
|
25
|
+
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, gitUrl)" target="_blank"><svg-icon icon-class="github" />{{i18nt('application.github')}}</a>
|
|
26
|
+
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, docUrl)" target="_blank"><svg-icon icon-class="document" />{{i18nt('application.document')}}</a>
|
|
27
|
+
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, chatUrl)" target="_blank">{{i18nt('application.qqGroup')}}</a>
|
|
28
|
+
<a v-if="showLink('externalLink')" href="javascript:void(0)" @click="(ev) => openUrl(ev, subScribeUrl)" target="_blank">
|
|
29
|
+
{{i18nt('application.subscription')}}<i class="el-icon-top-right"></i></a>
|
|
30
|
+
</div>
|
|
31
|
+
</el-header> -->
|
|
32
|
+
|
|
33
|
+
<el-container>
|
|
34
|
+
<el-aside class="side-panel attribute-right">
|
|
35
|
+
<widget-panel ref="widgetPanelRef" :designer="designer"/>
|
|
36
|
+
</el-aside>
|
|
37
|
+
|
|
38
|
+
<el-container class="center-layout-container">
|
|
39
|
+
<el-header class="toolbar-header">
|
|
40
|
+
<toolbar-panel :designer="designer" ref="toolbarRef" @loadWidgets="loadWidgets">
|
|
41
|
+
<template v-for="(idx, slotName) in $slots" #[slotName]>
|
|
42
|
+
<slot :name="slotName"></slot>
|
|
43
|
+
</template>
|
|
44
|
+
</toolbar-panel>
|
|
45
|
+
</el-header>
|
|
46
|
+
<el-main class="form-widget-main">
|
|
47
|
+
<el-scrollbar class="container-scroll-bar" style="height:100%">
|
|
48
|
+
<v-form-widget :designer="designer" :form-config="designer.formConfig" ref="formRef"></v-form-widget>
|
|
49
|
+
</el-scrollbar>
|
|
50
|
+
</el-main>
|
|
51
|
+
</el-container>
|
|
52
|
+
|
|
53
|
+
<el-aside class="attribute-right">
|
|
54
|
+
<setting-panel :designer="designer" :selected-widget="designer.selectedWidget"
|
|
55
|
+
:form-config="designer.formConfig" ref="formSettingRef"/>
|
|
56
|
+
</el-aside>
|
|
57
|
+
</el-container>
|
|
58
|
+
<preformDialog v-if="showPreformDialog" :visiable.sync="showPreformDialog"
|
|
59
|
+
@confirm="confirmPreformDialog"></preformDialog>
|
|
60
|
+
</el-container>
|
|
61
|
+
</template>
|
|
62
|
+
|
|
63
|
+
<script>
|
|
64
|
+
|
|
65
|
+
import WidgetPanel from './widget-panel/index';
|
|
66
|
+
import ToolbarPanel from './toolbar-panel/index';
|
|
67
|
+
import SettingPanel from './setting-panel/index';
|
|
68
|
+
import VFormWidget from './form-widget/index';
|
|
69
|
+
import indexMixin from '../../../components/xform/form-designer/indexMixin';
|
|
70
|
+
import preformDialog from "../../../components/xform/form-designer/form-widget/dialog/preformDialog.vue";
|
|
71
|
+
|
|
72
|
+
export default {
|
|
73
|
+
name: 'VFormDesigner',
|
|
74
|
+
components: {
|
|
75
|
+
preformDialog,
|
|
76
|
+
WidgetPanel,
|
|
77
|
+
ToolbarPanel,
|
|
78
|
+
SettingPanel,
|
|
79
|
+
VFormWidget
|
|
80
|
+
},
|
|
81
|
+
mixins: [indexMixin],
|
|
82
|
+
};
|
|
83
|
+
</script>
|
|
84
|
+
|
|
85
|
+
<style lang="scss" scoped>
|
|
86
|
+
.el-aside {
|
|
87
|
+
font-family: inherit !important;
|
|
88
|
+
}
|
|
89
|
+
//.xform-designer-scroll{height:100%}
|
|
90
|
+
.xform-designer-scroll {
|
|
91
|
+
height: calc(100vh - var(--xform-designer-scroll-offset, 125px));
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.el-container.main-container {
|
|
95
|
+
background: #fff;
|
|
96
|
+
|
|
97
|
+
::v-deep aside {
|
|
98
|
+
/* 防止aside样式被外部样式覆盖!! */
|
|
99
|
+
margin: 0;
|
|
100
|
+
padding: 0;
|
|
101
|
+
background: inherit;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.el-container.full-height {
|
|
106
|
+
height: 100%;
|
|
107
|
+
overflow-y: hidden;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.el-container.center-layout-container {
|
|
111
|
+
min-width: 680px;
|
|
112
|
+
border-left: 2px dotted #ebeef5;
|
|
113
|
+
border-right: 2px dotted #ebeef5;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.el-header.main-header {
|
|
117
|
+
border-bottom: 2px dotted #ebeef5;
|
|
118
|
+
height: 48px !important;
|
|
119
|
+
line-height: 48px !important;
|
|
120
|
+
min-width: 800px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
div.main-title {
|
|
124
|
+
font-size: 18px;
|
|
125
|
+
color: #242424;
|
|
126
|
+
display: flex;
|
|
127
|
+
align-items: center;
|
|
128
|
+
justify-items: center;
|
|
129
|
+
|
|
130
|
+
img {
|
|
131
|
+
cursor: pointer;
|
|
132
|
+
width: 36px;
|
|
133
|
+
height: 36px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
span.bold {
|
|
137
|
+
font-size: 20px;
|
|
138
|
+
font-weight: bold;
|
|
139
|
+
margin: 0 6px 0 6px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
span.version-span {
|
|
143
|
+
font-size: 14px;
|
|
144
|
+
color: #101f1c;
|
|
145
|
+
margin-left: 6px;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.float-left {
|
|
150
|
+
float: left;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.float-right {
|
|
154
|
+
float: right;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.el-dropdown-link {
|
|
158
|
+
margin-right: 12px;
|
|
159
|
+
cursor: pointer;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
div.external-link a {
|
|
163
|
+
font-size: 13px;
|
|
164
|
+
text-decoration: none;
|
|
165
|
+
margin-right: 10px;
|
|
166
|
+
color: #606266;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.el-header.toolbar-header {
|
|
170
|
+
font-size: 12px;
|
|
171
|
+
border-bottom: 2px dotted #ebeef5;
|
|
172
|
+
height: 40px !important;
|
|
173
|
+
line-height: 38px;
|
|
174
|
+
//line-height: 42px !important;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.el-aside.side-panel {
|
|
178
|
+
overflow-y: hidden;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.el-main.form-widget-main {
|
|
182
|
+
padding: 0;
|
|
183
|
+
|
|
184
|
+
position: relative;
|
|
185
|
+
overflow-x: hidden;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.container-scroll-bar {
|
|
189
|
+
::v-deep .el-scrollbar__wrap,
|
|
190
|
+
::v-deep .el-scrollbar__view {
|
|
191
|
+
overflow-x: hidden;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
</style>
|