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
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
const modules = {};
|
|
2
|
+
import vue from "vue";
|
|
3
|
+
|
|
4
|
+
// 壳组件懒加载:首屏只留本入口几十行;抽屉壳(含 select 逻辑、按钮公共模块)
|
|
5
|
+
// 随首次调用进独立 chunk,xform 渲染器与 formDialog 共享同一异步 chunk
|
|
6
|
+
let FormDrawerCtor = null;
|
|
7
|
+
|
|
8
|
+
function loadCtor() {
|
|
9
|
+
if (FormDrawerCtor) return Promise.resolve(FormDrawerCtor);
|
|
10
|
+
return import(
|
|
11
|
+
/* webpackChunkName: "form-drawer" */ "./drawer.vue"
|
|
12
|
+
).then((m) => {
|
|
13
|
+
FormDrawerCtor = vue.extend(m.default);
|
|
14
|
+
return FormDrawerCtor;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* JS 调用打开 formCode 抽屉。每次调用创建独立实例,支持叠开多层。
|
|
20
|
+
* options:{ formCode, title, size, direction, param, queryParam, conditionParam, plain,
|
|
21
|
+
* select: {multiple, rows, fieldKey, queryParam, onConfirm},
|
|
22
|
+
* buttons, showFooter, readonly, onReady, beforeConfirm, model, ... }
|
|
23
|
+
* resolve:默认按钮下 select 模式返回选中行数组、表单模式返回表单数据;
|
|
24
|
+
* 配置了自定义按钮(formConfig.actionButtons / options.buttons)返回 {action, data};
|
|
25
|
+
* 取消/关闭返回 null。详见 components/formDialog/README.md。
|
|
26
|
+
*/
|
|
27
|
+
function open(options = {}) {
|
|
28
|
+
return loadCtor().then((Ctor) => {
|
|
29
|
+
const parent
|
|
30
|
+
= typeof window !== "undefined" && window.$vueRoot ? window.$vueRoot : null;
|
|
31
|
+
const instanceOptions = {};
|
|
32
|
+
if (parent) {
|
|
33
|
+
instanceOptions.parent = parent;
|
|
34
|
+
if (parent._i18n) {
|
|
35
|
+
instanceOptions.i18n = parent._i18n;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
const instance = new Ctor(instanceOptions);
|
|
39
|
+
instance.$mount();
|
|
40
|
+
document.body.appendChild(instance.$el);
|
|
41
|
+
return instance.open(options);
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
modules.install = function (Vue) {
|
|
46
|
+
Vue.prototype.$formDrawer = open;
|
|
47
|
+
};
|
|
48
|
+
modules.open = open;
|
|
49
|
+
|
|
50
|
+
export default modules;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 详情承载契约(纯常量 + props 构造,无副作用,可完整单测)。
|
|
3
|
+
* micro-view-host(主/渲染方)与子应用「详情承载入口」共同遵守。
|
|
4
|
+
* 完整设计见 docs/qiankun动态详情页承载方案.md 第 5 节。
|
|
5
|
+
*
|
|
6
|
+
* 关键前提:qiankun loadMicroApp 的 props 是同一 JS realm 内的普通对象,
|
|
7
|
+
* 函数可直接传入并被子应用调用——故上行回调用函数 props,不需事件总线;
|
|
8
|
+
* 真正跨不过去的是 Vue 实例(parentVue)与 $parent 链,由子应用侧用 shim 合成。
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
// props 标志:子应用 mount 时据此进入「详情承载」分支(而非常规整站渲染)
|
|
12
|
+
export const DETAIL_HOST_MODE = "microDetailHost";
|
|
13
|
+
|
|
14
|
+
// 上行回调字段名(函数 props)。子应用承载入口据此把详情页的
|
|
15
|
+
// $baseReload / _handleCallback / 关闭 / outParam.sync / 任意 listeners
|
|
16
|
+
// 转调回渲染方(见方案 §5.2 / §5.3 的 parentVue shim)。
|
|
17
|
+
export const DETAIL_HOST_CALLBACKS = [
|
|
18
|
+
"onReload",
|
|
19
|
+
"onHandleCallback",
|
|
20
|
+
"onClose",
|
|
21
|
+
"onUpdateOutParam",
|
|
22
|
+
"onEmit",
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 构造下发给子应用的 props。
|
|
27
|
+
*
|
|
28
|
+
* @param {object} input
|
|
29
|
+
* @param {string} input.appCode 归属子应用 appCode
|
|
30
|
+
* @param {string} input.targetPath 剥掉 /micro/<appCode> 后的子应用内路径
|
|
31
|
+
* @param {object} input.bizParams 业务字段整包(objTypeCode/formCode/dataId/param/queryParam…)
|
|
32
|
+
* @param {object} input.viewMeta 承载元数据(visibleKey/defaultShowWfContent/viewType)
|
|
33
|
+
* @param {*} input.initialOutParam outParam 初值(替代 .sync 入向)
|
|
34
|
+
* @param {object} input.baseProps 基础 props(token/lang/userInfo/mainAdapter…)
|
|
35
|
+
* @param {object} input.callbacks 上行回调;仅函数值会被收录
|
|
36
|
+
* @returns {object} 传给 loadMicroApp 的 props
|
|
37
|
+
*/
|
|
38
|
+
export function buildDetailHostProps(input = {}) {
|
|
39
|
+
const {
|
|
40
|
+
appCode,
|
|
41
|
+
targetPath,
|
|
42
|
+
bizParams,
|
|
43
|
+
viewMeta,
|
|
44
|
+
initialOutParam,
|
|
45
|
+
baseProps,
|
|
46
|
+
callbacks,
|
|
47
|
+
} = input;
|
|
48
|
+
|
|
49
|
+
const props = Object.assign({}, baseProps, {
|
|
50
|
+
[DETAIL_HOST_MODE]: true,
|
|
51
|
+
appCode: appCode || "",
|
|
52
|
+
targetPath: targetPath || "",
|
|
53
|
+
bizParams: bizParams || {},
|
|
54
|
+
viewMeta: viewMeta || {},
|
|
55
|
+
initialOutParam: initialOutParam,
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
const cb = callbacks || {};
|
|
59
|
+
DETAIL_HOST_CALLBACKS.forEach((name) => {
|
|
60
|
+
if (typeof cb[name] === "function") {
|
|
61
|
+
props[name] = cb[name];
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
return props;
|
|
66
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div :id="containerId" class="micro-view-host" style="height: 100%"></div>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
/**
|
|
7
|
+
* 详情承载宿主:在弹框/容器内用 qiankun loadMicroApp 装载归属子应用,
|
|
8
|
+
* 渲染其私有详情页(组件不在当前 bundle,本地 require 拿不到)。
|
|
9
|
+
* 契约见 ./contract.js 与 docs/qiankun动态详情页承载方案.md 第 5 节。
|
|
10
|
+
*
|
|
11
|
+
* ⚠ 依赖子应用侧实现「详情承载入口」(方案 §5.5):mount 时识别 props.microDetailHost,
|
|
12
|
+
* 按 targetPath 解析自身组件、用 bizParams/viewMeta 绑 props、装 parentVue shim 渲染。
|
|
13
|
+
* 在子应用支持该入口前,本组件装载出的仍是子应用默认渲染,未必是目标详情页。
|
|
14
|
+
* 因此暂不接入各弹框站点——它们仍走 $message 短期提示兜底。
|
|
15
|
+
*
|
|
16
|
+
* 多实例:宿主实例名带唯一后缀,与路由保活实例(name=appCode)隔离;
|
|
17
|
+
* 同一 appCode 的保活实例与若干宿主实例可并存。要求子应用容忍多实例并发。
|
|
18
|
+
*/
|
|
19
|
+
import { loadMicroApp } from "qiankun";
|
|
20
|
+
import { getToken } from "@base/utils/auth";
|
|
21
|
+
import { getAppRegistry, DEBUG_ENTRY } from "@base/microRouter";
|
|
22
|
+
import { buildDetailHostProps } from "./contract";
|
|
23
|
+
|
|
24
|
+
// 注册表一次会话内不变,缓存首个成功结果,避免每次开弹框都打逻辑参数接口
|
|
25
|
+
let registryCache = null;
|
|
26
|
+
function loadRegistry() {
|
|
27
|
+
if (!registryCache) {
|
|
28
|
+
registryCache = getAppRegistry().catch((e) => {
|
|
29
|
+
registryCache = null; // 失败不缓存,允许下次重试
|
|
30
|
+
return Promise.reject(e);
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
return registryCache;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
let hostSeq = 0;
|
|
37
|
+
|
|
38
|
+
export default {
|
|
39
|
+
name: "MicroViewHost",
|
|
40
|
+
props: {
|
|
41
|
+
// 归属子应用 appCode(helper 的 remote 结果透出)
|
|
42
|
+
owner: { type: String, required: true },
|
|
43
|
+
// 剥掉 /micro/<appCode> 后的子应用内路径
|
|
44
|
+
targetPath: { type: String, default: "" },
|
|
45
|
+
// 业务字段整包
|
|
46
|
+
bizParams: { type: Object, default: () => ({}) },
|
|
47
|
+
// 承载元数据
|
|
48
|
+
viewMeta: { type: Object, default: () => ({}) },
|
|
49
|
+
// outParam 初值
|
|
50
|
+
initialOutParam: { default: undefined },
|
|
51
|
+
},
|
|
52
|
+
data() {
|
|
53
|
+
hostSeq += 1;
|
|
54
|
+
return {
|
|
55
|
+
containerId: "micro-viewhost-" + this.owner + "-" + hostSeq,
|
|
56
|
+
instance: null,
|
|
57
|
+
failed: false,
|
|
58
|
+
};
|
|
59
|
+
},
|
|
60
|
+
mounted() {
|
|
61
|
+
this.load();
|
|
62
|
+
},
|
|
63
|
+
beforeDestroy() {
|
|
64
|
+
this.unmount();
|
|
65
|
+
},
|
|
66
|
+
methods: {
|
|
67
|
+
load() {
|
|
68
|
+
loadRegistry()
|
|
69
|
+
.then((apps) => {
|
|
70
|
+
if (this._isDestroyed || this._isBeingDestroyed) return;
|
|
71
|
+
const app = (apps || []).find((a) => a.appCode === this.owner);
|
|
72
|
+
if (!app || !app.entry) {
|
|
73
|
+
this.fail("未在应用注册表找到子应用或缺 entry:" + this.owner);
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
// 逻辑参数 micro_debug_enabled=true 时,与路由整站装载一致:改用本机约定端口,
|
|
77
|
+
// 不动注册表 entry。本机联调 detail-host 时子应用 devServer 起在 17527 即可。
|
|
78
|
+
const entry = app.debugEnabled ? DEBUG_ENTRY : app.entry;
|
|
79
|
+
if (app.debugEnabled) {
|
|
80
|
+
// eslint-disable-next-line no-console
|
|
81
|
+
console.warn(
|
|
82
|
+
"[MicroViewHost] ⚠ 调试装载:" + this.owner + " → " + entry
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
this.mountApp(entry);
|
|
86
|
+
})
|
|
87
|
+
.catch((e) => {
|
|
88
|
+
this.fail("读取应用注册表失败", e);
|
|
89
|
+
});
|
|
90
|
+
},
|
|
91
|
+
mountApp(entry) {
|
|
92
|
+
const props = buildDetailHostProps({
|
|
93
|
+
appCode: this.owner,
|
|
94
|
+
targetPath: this.targetPath,
|
|
95
|
+
bizParams: this.bizParams,
|
|
96
|
+
viewMeta: this.viewMeta,
|
|
97
|
+
initialOutParam: this.initialOutParam,
|
|
98
|
+
baseProps: {
|
|
99
|
+
token: getToken(),
|
|
100
|
+
lang: localStorage.getItem("i18n-lang") || "",
|
|
101
|
+
},
|
|
102
|
+
callbacks: {
|
|
103
|
+
onReload: () => this.$emit("reload"),
|
|
104
|
+
onHandleCallback: (flag) => this.$emit("handle-callback", flag),
|
|
105
|
+
onClose: () => this.$emit("close"),
|
|
106
|
+
onUpdateOutParam: (v) => this.$emit("update-out-param", v),
|
|
107
|
+
onEmit: (name, ...args) => this.$emit("bridge-emit", name, args),
|
|
108
|
+
},
|
|
109
|
+
});
|
|
110
|
+
try {
|
|
111
|
+
this.instance = loadMicroApp({
|
|
112
|
+
name: this.owner + "@detailhost-" + this.containerId,
|
|
113
|
+
entry,
|
|
114
|
+
container: this.$el,
|
|
115
|
+
props,
|
|
116
|
+
});
|
|
117
|
+
const p = this.instance.mountPromise;
|
|
118
|
+
if (p && typeof p.then === "function") {
|
|
119
|
+
p.then(() => this.$emit("mounted")).catch((e) => {
|
|
120
|
+
this.fail("子应用挂载失败:" + this.owner, e);
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
} catch (e) {
|
|
124
|
+
this.fail("loadMicroApp 失败:" + this.owner, e);
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
unmount() {
|
|
128
|
+
const inst = this.instance;
|
|
129
|
+
if (!inst) return;
|
|
130
|
+
this.instance = null;
|
|
131
|
+
const p = inst.mountPromise || Promise.resolve();
|
|
132
|
+
p.then(() => inst.unmount()).catch(() => {});
|
|
133
|
+
},
|
|
134
|
+
fail(msg, err) {
|
|
135
|
+
this.failed = true;
|
|
136
|
+
// eslint-disable-next-line no-console
|
|
137
|
+
console.error("[MicroViewHost] " + msg, err || "");
|
|
138
|
+
this.$emit("load-error", this.owner);
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
</script>
|
|
143
|
+
|
|
144
|
+
<style scoped>
|
|
145
|
+
.micro-view-host {
|
|
146
|
+
width: 100%;
|
|
147
|
+
}
|
|
148
|
+
</style>
|
|
@@ -222,13 +222,18 @@
|
|
|
222
222
|
<el-table
|
|
223
223
|
ref="singleTable"
|
|
224
224
|
width="100%"
|
|
225
|
-
:data="
|
|
225
|
+
:data="dialogColumns"
|
|
226
226
|
border=""
|
|
227
227
|
row-key="field"
|
|
228
228
|
stripe=""
|
|
229
|
+
:row-class-name="dialogRowClassName"
|
|
229
230
|
>
|
|
230
231
|
<el-table-column type="index" width="35" fixed="left"></el-table-column>
|
|
231
|
-
<el-table-column label="" width="38"
|
|
232
|
+
<el-table-column label="" width="38">
|
|
233
|
+
<template slot-scope="scope">
|
|
234
|
+
<i v-if="!scope.row.lockValue" class="iconfont icon-tuodongweizhi drag-option"></i>
|
|
235
|
+
</template>
|
|
236
|
+
</el-table-column>
|
|
232
237
|
<el-table-column :label="$t2('名称', 'components.table.name')" width="150" prop="title">
|
|
233
238
|
<template slot-scope="scope">
|
|
234
239
|
{{ scope.row.title }}
|
|
@@ -236,8 +241,12 @@
|
|
|
236
241
|
</el-table-column>
|
|
237
242
|
<el-table-column :label="$t2('默认值', 'components.table.defaultValue')" width="375" prop="defaultValue">
|
|
238
243
|
<template slot-scope="scope">
|
|
244
|
+
<!-- 固定查询条件的值由业务通道注入,这里不给改,也不参与还原/确定的写值 -->
|
|
245
|
+
<span v-if="scope.row.lockValue" class="text-tip">
|
|
246
|
+
{{ $t1('固定条件') }}
|
|
247
|
+
</span>
|
|
239
248
|
<template
|
|
240
|
-
v-if="scope.row.defaultValueEnabled!==false && (scope.row.defaultValueEnabled || !scope.row.slot)">
|
|
249
|
+
v-else-if="scope.row.defaultValueEnabled!==false && (scope.row.defaultValueEnabled || !scope.row.slot)">
|
|
241
250
|
<template v-if="scope.row.type =='input'">
|
|
242
251
|
<el-input v-model="scope.row.defaultValue" size="small" clearable></el-input>
|
|
243
252
|
</template>
|
|
@@ -280,7 +289,7 @@
|
|
|
280
289
|
</el-table-column>
|
|
281
290
|
<el-table-column :label="$t2('是否常用', 'components.table.common')" width="70" prop="common">
|
|
282
291
|
<template slot-scope="scope">
|
|
283
|
-
<el-switch v-model="scope.row.common"></el-switch>
|
|
292
|
+
<el-switch v-model="scope.row.common" :disabled="scope.row.lockValue === true"></el-switch>
|
|
284
293
|
</template>
|
|
285
294
|
</el-table-column>
|
|
286
295
|
</el-table>
|
|
@@ -315,5 +324,7 @@ export default {
|
|
|
315
324
|
</script>
|
|
316
325
|
|
|
317
326
|
<style scoped>
|
|
318
|
-
|
|
327
|
+
.text-tip {
|
|
328
|
+
color: #909399;
|
|
329
|
+
}
|
|
319
330
|
</style>
|
|
@@ -15,7 +15,10 @@ modules = {
|
|
|
15
15
|
showAdvancedSearch: false,
|
|
16
16
|
form1Fields: [],
|
|
17
17
|
form2Fields: [],
|
|
18
|
+
/* 全量列,「确定」按它回写,隐藏列也在里面(不能丢,它照样往上送条件) */
|
|
18
19
|
tableColumns: [],
|
|
20
|
+
/* 弹框实际渲染的列,是 tableColumns 里非隐藏项的**引用**(同一批对象,改默认值直接生效) */
|
|
21
|
+
dialogColumns: [],
|
|
19
22
|
dialogVisible: false,
|
|
20
23
|
advancedFormData: {},
|
|
21
24
|
formDataClone: {},
|
|
@@ -213,13 +216,17 @@ modules = {
|
|
|
213
216
|
},
|
|
214
217
|
openTableColumnsDialog() {
|
|
215
218
|
let $grid = this.$parent;
|
|
216
|
-
let tableColumns = (tableColumns =
|
|
219
|
+
// 原写法 let tableColumns = (tableColumns = ...) 自引用触发 TDZ,
|
|
220
|
+
// 只因 Babel 把 let 降成 var 才没在浏览器里炸
|
|
221
|
+
let tableColumns = this.$baseLodash.cloneDeep(
|
|
217
222
|
$grid.params.searchColumns || []
|
|
218
|
-
)
|
|
223
|
+
);
|
|
219
224
|
tableColumns.forEach((item) => {
|
|
220
225
|
if (!item.widgetConfig) item.widgetConfig = {};
|
|
221
226
|
});
|
|
222
227
|
this.tableColumns = tableColumns;
|
|
228
|
+
// 隐藏字段(如查询区里存树ID的隐藏输入框)是内部条件,不给用户看也不给拖
|
|
229
|
+
this.dialogColumns = tableColumns.filter((item) => !item.hidden);
|
|
223
230
|
this.dialogVisible = true;
|
|
224
231
|
this.$nextTick(() => {
|
|
225
232
|
this.$nextTick(() => {
|
|
@@ -231,20 +238,34 @@ modules = {
|
|
|
231
238
|
let e = this.$refs.singleTable.$el.querySelectorAll(
|
|
232
239
|
".el-table__body-wrapper > table > tbody"
|
|
233
240
|
)[0],
|
|
234
|
-
t = this.tableColumns
|
|
241
|
+
t = this.tableColumns,
|
|
242
|
+
visible = this.dialogColumns;
|
|
235
243
|
this.sortable = Sortable.create(e, {
|
|
236
244
|
ghostClass: "sortable-ghost",
|
|
245
|
+
// 固定查询条件不可拖动(它的位置由配置决定,个性化也不该记)
|
|
246
|
+
filter: ".drag-disabled",
|
|
237
247
|
setData: function (e) {
|
|
238
248
|
e.setData("Text", "");
|
|
239
249
|
},
|
|
240
250
|
onEnd: function (e) {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
251
|
+
// 拖拽发生在「可见列」上,隐藏列不在其中,所以要把新次序同步回全量列:
|
|
252
|
+
// 先在可见列里挪好,再按「新位置的后一个可见列」定位插到全量列的哪里。
|
|
253
|
+
let moved = visible.splice(e.oldIndex, 1)[0];
|
|
254
|
+
visible.splice(e.newIndex, 0, moved);
|
|
255
|
+
let fullIndex = t.indexOf(moved);
|
|
256
|
+
if (fullIndex > -1) {
|
|
257
|
+
t.splice(fullIndex, 1);
|
|
258
|
+
}
|
|
259
|
+
let nextVisible = visible[e.newIndex + 1];
|
|
260
|
+
let insertAt = nextVisible ? t.indexOf(nextVisible) : t.length;
|
|
261
|
+
t.splice(insertAt < 0 ? t.length : insertAt, 0, moved);
|
|
245
262
|
},
|
|
246
263
|
});
|
|
247
264
|
},
|
|
265
|
+
/** 固定查询条件行加标记类:禁拖拽(Sortable filter)+ 视觉上区分 */
|
|
266
|
+
dialogRowClassName({ row }) {
|
|
267
|
+
return row && row.lockValue ? "drag-disabled" : "";
|
|
268
|
+
},
|
|
248
269
|
dialogPrimary(newTableColumns) {
|
|
249
270
|
let searchColumns = this.$baseLodash.cloneDeep(
|
|
250
271
|
newTableColumns || this.tableColumns
|
|
@@ -266,6 +287,13 @@ modules = {
|
|
|
266
287
|
// this.$set(this, "formData", {});
|
|
267
288
|
// this.$set(this, "advancedFormData", {});
|
|
268
289
|
searchColumns.forEach((form1Field) => {
|
|
290
|
+
// 固定查询条件:值由业务通道(树点选 / 脚本 setValue / 页面回填)注入,
|
|
291
|
+
// 「确定」「还原」都不许覆盖它,否则一点设置就把当前上下文查丢了。
|
|
292
|
+
// 注意只认 lockValue,不认 fixed —— 手写页面的 fixed 列(如分支)
|
|
293
|
+
// 正是靠这里按 defaultValue 回填的,跳过它们会打掉原有行为。
|
|
294
|
+
if (form1Field.lockValue) {
|
|
295
|
+
return;
|
|
296
|
+
}
|
|
269
297
|
let nullValue = this.getNullValue(form1Field);
|
|
270
298
|
let defaultValue = nullValue;
|
|
271
299
|
if (form1Field.defaultValueEnabled !== false) {
|