cloud-web-corejs 1.0.276 → 1.0.277
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 +28 -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/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
|
@@ -6,7 +6,16 @@
|
|
|
6
6
|
v-bind="dialogConfig"
|
|
7
7
|
@close="close"
|
|
8
8
|
>
|
|
9
|
-
|
|
9
|
+
<!-- host:"list" —— 承载列表宿主页(自带「常规(详情)/列表」页签),行点击进详情等行为与整页一致。
|
|
10
|
+
list.vue 根节点自带 #containt,本分支不再套 id,避免嵌套重复。 -->
|
|
11
|
+
<div
|
|
12
|
+
class="cont designer-view fd-list-host"
|
|
13
|
+
v-bind="bodyConfig"
|
|
14
|
+
v-if="listHost"
|
|
15
|
+
>
|
|
16
|
+
<list-view-host :formCode="listFormCode" :param="dialogParam" />
|
|
17
|
+
</div>
|
|
18
|
+
<div class="cont designer-view" v-bind="bodyConfig" id="containt" v-else>
|
|
10
19
|
<v-form-render
|
|
11
20
|
:form-json.sync="formJson"
|
|
12
21
|
:form-data="formData"
|
|
@@ -21,7 +30,9 @@
|
|
|
21
30
|
@reload="reload"
|
|
22
31
|
v-bind="formConfig"
|
|
23
32
|
:param="dialogParam"
|
|
33
|
+
:dataTableOption="dialogDataTableOption"
|
|
24
34
|
class="data-table_height"
|
|
35
|
+
@hook:mounted="handleFormMounted"
|
|
25
36
|
/>
|
|
26
37
|
</div>
|
|
27
38
|
<span
|
|
@@ -34,7 +45,27 @@
|
|
|
34
45
|
<i class="el-icon-close el-icon"></i>
|
|
35
46
|
{{ $t2("取 消", "system.button.cancel2") }}
|
|
36
47
|
</el-button>
|
|
37
|
-
|
|
48
|
+
<!-- 模板配了 formConfig.actionButtons 时,用配置按钮替代「确定」(取消保持不变) -->
|
|
49
|
+
<template v-if="visibleFooterButtons">
|
|
50
|
+
<el-button
|
|
51
|
+
v-for="btn in visibleFooterButtons"
|
|
52
|
+
:key="btn.code"
|
|
53
|
+
:type="btn.type || 'primary'"
|
|
54
|
+
:plain="btn.plain === true"
|
|
55
|
+
class="button-sty"
|
|
56
|
+
:loading="!!btnLoadingMap[btn.code]"
|
|
57
|
+
@click="handleActionButton(btn)"
|
|
58
|
+
>
|
|
59
|
+
<i v-if="btn.icon" :class="[btn.icon, 'el-icon']"></i>
|
|
60
|
+
{{ btnLabel(btn) }}
|
|
61
|
+
</el-button>
|
|
62
|
+
</template>
|
|
63
|
+
<el-button
|
|
64
|
+
v-else-if="confirmButtonVisible"
|
|
65
|
+
type="primary"
|
|
66
|
+
@click="dialogSubmit"
|
|
67
|
+
class="button-sty"
|
|
68
|
+
>
|
|
38
69
|
<i class="el-icon-check el-icon"></i>
|
|
39
70
|
{{ $t2("确 定", "system.button.confirm2") }}
|
|
40
71
|
</el-button>
|
|
@@ -44,10 +75,22 @@
|
|
|
44
75
|
|
|
45
76
|
<script>
|
|
46
77
|
import VFormRender from "../../../../../components/xform/form-render/index.vue";
|
|
78
|
+
import {
|
|
79
|
+
resolveActionButtons,
|
|
80
|
+
hasButtonPermission,
|
|
81
|
+
isButtonVisible,
|
|
82
|
+
runActionButton,
|
|
83
|
+
} from "@base/components/formDialog/actionButtons";
|
|
47
84
|
|
|
48
85
|
export default {
|
|
49
|
-
|
|
50
|
-
|
|
86
|
+
components: {
|
|
87
|
+
VFormRender,
|
|
88
|
+
// 列表宿主页(x-tabs:常规/列表/其他页签/多标签编辑),仅 host:"list" 时加载
|
|
89
|
+
ListViewHost: () =>
|
|
90
|
+
import(
|
|
91
|
+
/* webpackChunkName: "form-list-host" */ "@base/views/user/form/view/list.vue"
|
|
92
|
+
),
|
|
93
|
+
},
|
|
51
94
|
props: {
|
|
52
95
|
visiable: Boolean,
|
|
53
96
|
option: Object,
|
|
@@ -77,7 +120,11 @@ export default {
|
|
|
77
120
|
currentLayoutType: null,
|
|
78
121
|
dataId: null,
|
|
79
122
|
formConfig: {},
|
|
80
|
-
confirmButtonVisible: true
|
|
123
|
+
confirmButtonVisible: true,
|
|
124
|
+
// 模板 formConfig.actionButtons(权限过滤后);为空则底部保持默认「确定」
|
|
125
|
+
customButtons: null,
|
|
126
|
+
btnLoadingMap: {},
|
|
127
|
+
formRefMounted: false,
|
|
81
128
|
};
|
|
82
129
|
},
|
|
83
130
|
computed: {
|
|
@@ -87,6 +134,23 @@ export default {
|
|
|
87
134
|
dialogParam() {
|
|
88
135
|
return this.option?.param;
|
|
89
136
|
},
|
|
137
|
+
/**
|
|
138
|
+
* option.queryParam:强制合并进目标表单查询表格的请求参数
|
|
139
|
+
* (data-table 从 formRef.$attrs.dataTableOption.queryParam 读取,优先级高于表单自身查询条件)。
|
|
140
|
+
* 与 param 不是一回事:param 只是透传给模板脚本用的打开参数,不参与请求。
|
|
141
|
+
*/
|
|
142
|
+
dialogDataTableOption() {
|
|
143
|
+
return this.option?.queryParam
|
|
144
|
+
? { queryParam: this.option.queryParam }
|
|
145
|
+
: undefined;
|
|
146
|
+
},
|
|
147
|
+
// host:"list" —— 用列表宿主页承载(带「常规/列表」页签),而非直接渲染单个表单
|
|
148
|
+
listHost() {
|
|
149
|
+
return this.option?.host === "list";
|
|
150
|
+
},
|
|
151
|
+
listFormCode() {
|
|
152
|
+
return this.option?.formCode;
|
|
153
|
+
},
|
|
90
154
|
/* formConfig() {
|
|
91
155
|
return this.option?.formConfig;
|
|
92
156
|
}, */
|
|
@@ -104,10 +168,21 @@ export default {
|
|
|
104
168
|
width: "1200px",
|
|
105
169
|
fullscreen: this.option.fullscreen,
|
|
106
170
|
};
|
|
107
|
-
config = Object.assign({}, config, this.option.dialogConfig, {
|
|
171
|
+
config = Object.assign({}, config, this.option.dialogConfig, {
|
|
172
|
+
customClass,
|
|
173
|
+
});
|
|
108
174
|
config.title = this.$t1(config.title);
|
|
109
175
|
return config;
|
|
110
176
|
},
|
|
177
|
+
// 自定义按钮渲染列表:权限已在 initCustomButtons 过滤,此处按 visible 脚本过滤
|
|
178
|
+
visibleFooterButtons() {
|
|
179
|
+
if (!this.customButtons || !this.customButtons.length) return null;
|
|
180
|
+
this.formRefMounted; // eslint-disable-line no-unused-expressions
|
|
181
|
+
let buttons = this.customButtons.filter((btn) =>
|
|
182
|
+
isButtonVisible(btn, this.$refs.vFormRef)
|
|
183
|
+
);
|
|
184
|
+
return buttons.length ? buttons : null;
|
|
185
|
+
},
|
|
111
186
|
bodyConfig() {
|
|
112
187
|
let config = {};
|
|
113
188
|
let classStr = this.currentLayoutType;
|
|
@@ -117,7 +192,9 @@ export default {
|
|
|
117
192
|
if (this.option.showFooter == false) {
|
|
118
193
|
classStr = classStr + " nfootBtn";
|
|
119
194
|
}
|
|
120
|
-
config = Object.assign({}, config, this.option.bodyConfig, {
|
|
195
|
+
config = Object.assign({}, config, this.option.bodyConfig, {
|
|
196
|
+
class: classStr,
|
|
197
|
+
});
|
|
121
198
|
return config;
|
|
122
199
|
},
|
|
123
200
|
},
|
|
@@ -125,13 +202,14 @@ export default {
|
|
|
125
202
|
/*let dataId = this.option?.formConfig?.dataId??null
|
|
126
203
|
delete this.option?.formConfig?.dataId
|
|
127
204
|
this.dataId = dataId;*/
|
|
128
|
-
|
|
129
205
|
this.formConfig = this.option?.formConfig || {};
|
|
130
206
|
|
|
131
207
|
let currentFormConfig = this.getFormConfig();
|
|
132
208
|
this.currentLayoutType = currentFormConfig.layoutType;
|
|
133
209
|
|
|
134
210
|
this.selectMulti = this.option.multiple ?? true;
|
|
211
|
+
// 列表宿主页自己会加载模板;仅在未指定标题时补取一次模板名做弹框标题
|
|
212
|
+
if (this.listHost && this.option.dialogConfig?.title) return;
|
|
135
213
|
this.getReportTemplate();
|
|
136
214
|
},
|
|
137
215
|
methods: {
|
|
@@ -139,7 +217,7 @@ export default {
|
|
|
139
217
|
let updateParam = option?.updateParam || {};
|
|
140
218
|
if (this.formConfig) Object.assign(this.formConfig, updateParam);
|
|
141
219
|
this.showRender = false;
|
|
142
|
-
this.getReportTemplate();
|
|
220
|
+
return this.getReportTemplate();
|
|
143
221
|
},
|
|
144
222
|
async getReportTemplate(callback) {
|
|
145
223
|
let param = {
|
|
@@ -153,7 +231,7 @@ export default {
|
|
|
153
231
|
data = { stringOne: this.formCode };
|
|
154
232
|
|
|
155
233
|
let that = this;
|
|
156
|
-
this.$http({
|
|
234
|
+
return this.$http({
|
|
157
235
|
url: url,
|
|
158
236
|
method: `post`,
|
|
159
237
|
data: data,
|
|
@@ -163,6 +241,8 @@ export default {
|
|
|
163
241
|
success: (res) => {
|
|
164
242
|
let formTemplate = res.objx || {};
|
|
165
243
|
this.formTemplate = formTemplate;
|
|
244
|
+
// 列表宿主模式:只借模板名做标题,渲染与按钮均由宿主页自己负责
|
|
245
|
+
if (this.listHost) return;
|
|
166
246
|
this.formJson = formTemplate.formViewContent
|
|
167
247
|
? JSON.parse(formTemplate.formViewContent)
|
|
168
248
|
: {};
|
|
@@ -171,11 +251,47 @@ export default {
|
|
|
171
251
|
if (formConfig.searchDialogUniqueField) {
|
|
172
252
|
this.fieldKey = formConfig.searchDialogUniqueField;
|
|
173
253
|
}
|
|
254
|
+
this.initCustomButtons(formConfig);
|
|
174
255
|
|
|
175
256
|
this.showRender = true;
|
|
176
257
|
},
|
|
177
258
|
});
|
|
178
259
|
},
|
|
260
|
+
// 模板 actionButtons:option.buttons 可覆盖;权限 formCode:authName 在此一次性过滤
|
|
261
|
+
initCustomButtons(formConfig) {
|
|
262
|
+
let buttons = resolveActionButtons(this.option?.buttons, formConfig);
|
|
263
|
+
this.customButtons = buttons
|
|
264
|
+
? buttons.filter((btn) => hasButtonPermission(btn, this.formCode, this))
|
|
265
|
+
: null;
|
|
266
|
+
},
|
|
267
|
+
handleFormMounted() {
|
|
268
|
+
this.formRefMounted = true;
|
|
269
|
+
},
|
|
270
|
+
btnLabel(btn) {
|
|
271
|
+
return this.$t1 ? this.$t1(btn.label) : btn.label;
|
|
272
|
+
},
|
|
273
|
+
/**
|
|
274
|
+
* 自定义按钮点击:校验 → onClick 脚本 → done/closeAfter 收口。
|
|
275
|
+
* 收口时优先回调 option.onAction(payload, formRef, vm);
|
|
276
|
+
* 未提供则仅按 closeAfter 关闭(按钮自身脚本即业务处理,不再走 option.confirm)。
|
|
277
|
+
*/
|
|
278
|
+
handleActionButton(btn) {
|
|
279
|
+
let formRef = this.$refs.vFormRef;
|
|
280
|
+
if (!formRef || this.btnLoadingMap[btn.code]) return;
|
|
281
|
+
this.$set(this.btnLoadingMap, btn.code, true);
|
|
282
|
+
let clearLoading = () => this.$set(this.btnLoadingMap, btn.code, false);
|
|
283
|
+
runActionButton(btn, {
|
|
284
|
+
formRef,
|
|
285
|
+
host: this,
|
|
286
|
+
getSelection: () => [],
|
|
287
|
+
onSettle: (payload, close) => {
|
|
288
|
+
if (typeof this.option.onAction === "function") {
|
|
289
|
+
this.option.onAction(payload, formRef, this);
|
|
290
|
+
}
|
|
291
|
+
if (close) this.close();
|
|
292
|
+
},
|
|
293
|
+
}).then(clearLoading, clearLoading);
|
|
294
|
+
},
|
|
179
295
|
close() {
|
|
180
296
|
let formRef = this.$refs.vFormRef;
|
|
181
297
|
this.showDialog = false;
|
|
@@ -192,9 +308,9 @@ export default {
|
|
|
192
308
|
this.close();
|
|
193
309
|
}
|
|
194
310
|
},
|
|
195
|
-
setConfirmButtonHidden(val){
|
|
311
|
+
setConfirmButtonHidden(val) {
|
|
196
312
|
this.confirmButtonVisible = val || false;
|
|
197
|
-
}
|
|
313
|
+
},
|
|
198
314
|
},
|
|
199
315
|
};
|
|
200
316
|
</script>
|
|
@@ -207,6 +323,14 @@ export default {
|
|
|
207
323
|
.list-dialog {
|
|
208
324
|
.el-dialog__body {
|
|
209
325
|
height: calc(100% - 42px);
|
|
326
|
+
// host:"list":.cont 已有确定高度,把它传给 list.vue 根节点 #containt,
|
|
327
|
+
// .tab-box 自身是 height:100%,父链没高度页签内容区会塌成一条
|
|
328
|
+
.cont.fd-list-host {
|
|
329
|
+
padding: 0;
|
|
330
|
+
::v-deep > #containt {
|
|
331
|
+
height: 100%;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
210
334
|
.cont {
|
|
211
335
|
height: calc(100vh - 210px);
|
|
212
336
|
|
|
@@ -218,6 +342,7 @@ export default {
|
|
|
218
342
|
::v-deep .grid-container {
|
|
219
343
|
outline: none;
|
|
220
344
|
&.detail-wrap .d-cont {
|
|
345
|
+
//height: calc(100vh - 150px);
|
|
221
346
|
.title .field-wrapper {
|
|
222
347
|
display: inline-block !important;
|
|
223
348
|
}
|
|
@@ -232,7 +357,7 @@ export default {
|
|
|
232
357
|
height: calc(100vh - 110px);
|
|
233
358
|
|
|
234
359
|
&.nfootBtn {
|
|
235
|
-
height: calc(100vh - 58px);
|
|
360
|
+
height: calc(100vh - var(--xform-dialog-body-offset, 58px));
|
|
236
361
|
}
|
|
237
362
|
}
|
|
238
363
|
}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<div class="clearfix screen-btns">
|
|
28
28
|
<div class="fr">
|
|
29
29
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain
|
|
30
|
+
plain>刷新
|
|
31
31
|
</vxe-button>
|
|
32
32
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">搜索</vxe-button>
|
|
33
33
|
</div>
|