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
|
@@ -1,374 +1,338 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<form-item-wrapper
|
|
3
|
-
:designer="designer"
|
|
4
|
-
:field="field"
|
|
5
|
-
:rules="rules"
|
|
6
|
-
:design-state="designState"
|
|
7
|
-
:parent-widget="parentWidget"
|
|
8
|
-
:parent-list="parentList"
|
|
9
|
-
:index-of-parent-list="indexOfParentList"
|
|
10
|
-
:sub-form-row-index="subFormRowIndex"
|
|
11
|
-
:sub-form-col-index="subFormColIndex"
|
|
12
|
-
:sub-form-row-id="subFormRowId"
|
|
13
|
-
>
|
|
14
|
-
<div id="uploadImage" class="upload-img" v-if="designState">
|
|
15
|
-
<div
|
|
16
|
-
class="el-upload el-upload--picture"
|
|
17
|
-
style="vertical-align: middle; display: inline-block; float: left"
|
|
18
|
-
>
|
|
19
|
-
<button type="button" class="avatar-uploader">
|
|
20
|
-
<i class="el-icon-plus avatar-uploader-icon"></i>
|
|
21
|
-
</button>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
<baseUpload
|
|
25
|
-
accept="file"
|
|
26
|
-
:file.sync="fieldModel"
|
|
27
|
-
:hidePasteArea.sync="isH5"
|
|
28
|
-
:uploadDialogCustomClass="isH5 ? 'dialog-upload-h5' : null"
|
|
29
|
-
:pickPrivateProfile="false"
|
|
30
|
-
:multi="field.options.limit !== 1"
|
|
31
|
-
:limit="field.options.limit"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
:
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
:
|
|
38
|
-
:
|
|
39
|
-
:
|
|
40
|
-
:
|
|
41
|
-
:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
</
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
import
|
|
50
|
-
import
|
|
51
|
-
import
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
-
|
|
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
|
-
|
|
150
|
-
|
|
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
|
-
let
|
|
176
|
-
this.
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
if (!
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
//
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
callback && callback(result.text)
|
|
340
|
-
});
|
|
341
|
-
},
|
|
342
|
-
|
|
343
|
-
handleError(errorMessage) {
|
|
344
|
-
this.error = errorMessage;
|
|
345
|
-
this.loading = false;
|
|
346
|
-
},*/
|
|
347
|
-
},
|
|
348
|
-
};
|
|
349
|
-
</script>
|
|
350
|
-
|
|
351
|
-
<style lang="scss" scoped>
|
|
352
|
-
@import "~@/styles/global.scss"; //* form-item-wrapper已引入,还需要重复引入吗? *//
|
|
353
|
-
|
|
354
|
-
.full-width-input {
|
|
355
|
-
width: 100% !important;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.hideUploadDiv {
|
|
359
|
-
::v-deep div.el-upload--picture-card {
|
|
360
|
-
/* 隐藏最后的图片上传按钮 */
|
|
361
|
-
display: none;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
::v-deep div.el-upload--text {
|
|
365
|
-
/* 隐藏最后的文件上传按钮 */
|
|
366
|
-
display: none;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
::v-deep div.el-upload__tip {
|
|
370
|
-
/* 隐藏最后的文件上传按钮提示 */
|
|
371
|
-
display: none;
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<form-item-wrapper
|
|
3
|
+
:designer="designer"
|
|
4
|
+
:field="field"
|
|
5
|
+
:rules="rules"
|
|
6
|
+
:design-state="designState"
|
|
7
|
+
:parent-widget="parentWidget"
|
|
8
|
+
:parent-list="parentList"
|
|
9
|
+
:index-of-parent-list="indexOfParentList"
|
|
10
|
+
:sub-form-row-index="subFormRowIndex"
|
|
11
|
+
:sub-form-col-index="subFormColIndex"
|
|
12
|
+
:sub-form-row-id="subFormRowId"
|
|
13
|
+
>
|
|
14
|
+
<div id="uploadImage" class="upload-img" v-if="designState">
|
|
15
|
+
<div
|
|
16
|
+
class="el-upload el-upload--picture"
|
|
17
|
+
style="vertical-align: middle; display: inline-block; float: left"
|
|
18
|
+
>
|
|
19
|
+
<button type="button" class="avatar-uploader">
|
|
20
|
+
<i class="el-icon-plus avatar-uploader-icon"></i>
|
|
21
|
+
</button>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
<baseUpload
|
|
25
|
+
accept="file"
|
|
26
|
+
:file.sync="fieldModel"
|
|
27
|
+
:hidePasteArea.sync="isH5"
|
|
28
|
+
:uploadDialogCustomClass="isH5 ? 'dialog-upload-h5' : null"
|
|
29
|
+
:pickPrivateProfile="false"
|
|
30
|
+
:multi="field.options.limit !== 1"
|
|
31
|
+
:limit="field.options.limit"
|
|
32
|
+
:fileTypes="field.options.fileTypes || []"
|
|
33
|
+
resultType="Array"
|
|
34
|
+
:edit="!field.options.disabled"
|
|
35
|
+
:remove="!field.options.hideRemoveButton"
|
|
36
|
+
@callback="submitFile"
|
|
37
|
+
:hideInfo="field.options.hideFileInfo"
|
|
38
|
+
:hideName="field.options.hideFileName"
|
|
39
|
+
:showSize="!!field.options.showFileSize"
|
|
40
|
+
:createBy="!!field.options.showFileCreateBy"
|
|
41
|
+
:createDate="!!field.options.showFileCreateDate"
|
|
42
|
+
:widgetSize="field.options.fileShowImageSize"
|
|
43
|
+
v-else
|
|
44
|
+
></baseUpload>
|
|
45
|
+
</form-item-wrapper>
|
|
46
|
+
</template>
|
|
47
|
+
|
|
48
|
+
<script>
|
|
49
|
+
import FormItemWrapper from "./form-item-wrapper";
|
|
50
|
+
import emitter from "../../../../../components/xform/utils/emitter";
|
|
51
|
+
import i18n from "../../../../../components/xform/utils/i18n";
|
|
52
|
+
import fieldMixin from "../../../../../components/xform/form-designer/form-widget/field-widget/fieldMixin";
|
|
53
|
+
import {
|
|
54
|
+
normalizeAttachmentValue,
|
|
55
|
+
isSameAttachmentRows,
|
|
56
|
+
isSameModelValue,
|
|
57
|
+
toModelValue,
|
|
58
|
+
} from "../../../../../components/xform/utils/attachmentValueUtil";
|
|
59
|
+
|
|
60
|
+
export default {
|
|
61
|
+
name: "vabUpload-widget",
|
|
62
|
+
componentName: "FieldWidget", //必须固定为FieldWidget,用于接收父级组件的broadcast事件
|
|
63
|
+
mixins: [emitter, fieldMixin, i18n],
|
|
64
|
+
props: {
|
|
65
|
+
field: Object,
|
|
66
|
+
parentWidget: Object,
|
|
67
|
+
parentList: Array,
|
|
68
|
+
indexOfParentList: Number,
|
|
69
|
+
designer: Object,
|
|
70
|
+
|
|
71
|
+
designState: {
|
|
72
|
+
type: Boolean,
|
|
73
|
+
default: false,
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
subFormRowIndex: {
|
|
77
|
+
/* 子表单组件行索引,从0开始计数 */ type: Number,
|
|
78
|
+
default: -1,
|
|
79
|
+
},
|
|
80
|
+
subFormColIndex: {
|
|
81
|
+
/* 子表单组件列索引,从0开始计数 */ type: Number,
|
|
82
|
+
default: -1,
|
|
83
|
+
},
|
|
84
|
+
subFormRowId: {
|
|
85
|
+
/* 子表单组件行Id,唯一id且不可变 */ type: String,
|
|
86
|
+
default: "",
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
components: {
|
|
90
|
+
FormItemWrapper,
|
|
91
|
+
},
|
|
92
|
+
inject: ["refList", "globalOptionData", "globalModel", "getFormConfig"],
|
|
93
|
+
data() {
|
|
94
|
+
return {
|
|
95
|
+
oldFieldValue: [], //field组件change之前的值
|
|
96
|
+
fieldModel: [],
|
|
97
|
+
rules: [],
|
|
98
|
+
isH5: false,
|
|
99
|
+
};
|
|
100
|
+
},
|
|
101
|
+
watch: {
|
|
102
|
+
fieldModel(val) {
|
|
103
|
+
/* fieldMixin.initValueWatchEvent 监听模型值,一变就 initFieldModel(true) 把
|
|
104
|
+
模型值原样灌回 fieldModel——URL 模式下灌回来的是字符串/字符串数组,会打破
|
|
105
|
+
「fieldModel 恒为附件对象数组」这个内部约定,所以这里兜底归一。 */
|
|
106
|
+
let rows = normalizeAttachmentValue(val);
|
|
107
|
+
if (!isSameAttachmentRows(rows, val)) {
|
|
108
|
+
this.fieldModel = rows;
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
/* 落到表单模型的值由 urlValueEnabled 决定是对象数组还是 URL 字符串。
|
|
112
|
+
默认模式下 rows 就是 val 本身(归一未改动任何东西),写回模型的是同一个
|
|
113
|
+
引用,模型值身份不变,不会触发 initValueWatchEvent 回灌。 */
|
|
114
|
+
let modelValue = this.toModelValue(rows);
|
|
115
|
+
if (this.isSameFieldModelValue(modelValue)) return;
|
|
116
|
+
this.handleChangeEvent(modelValue);
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
computed: {
|
|
120
|
+
formDataId() {
|
|
121
|
+
let formRef = this.getFormRef();
|
|
122
|
+
return formRef.dataId;
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
beforeCreate() {
|
|
126
|
+
/* 这里不能访问方法和属性!! */
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
created() {
|
|
130
|
+
/* 注意:子组件mounted在父组件created之后、父组件mounted之前触发,故子组件mounted需要用到的prop
|
|
131
|
+
需要在父组件created中初始化!! */
|
|
132
|
+
|
|
133
|
+
this.isH5 = this.getFormConfig().layoutType === "H5";
|
|
134
|
+
|
|
135
|
+
this.initFieldModel();
|
|
136
|
+
this.initAttachmentValue();
|
|
137
|
+
this.registerToRefList();
|
|
138
|
+
this.initEventHandler();
|
|
139
|
+
this.buildFieldRules();
|
|
140
|
+
|
|
141
|
+
this.handleOnCreated();
|
|
142
|
+
},
|
|
143
|
+
|
|
144
|
+
mounted() {
|
|
145
|
+
this.handleOnMounted();
|
|
146
|
+
},
|
|
147
|
+
|
|
148
|
+
beforeDestroy() {
|
|
149
|
+
this.unregisterFromRefList();
|
|
150
|
+
},
|
|
151
|
+
methods: {
|
|
152
|
+
/* 模型里存的可能是 URL 字符串/数组(urlValueEnabled)或外部塞进来的 URL,
|
|
153
|
+
统一归一成附件对象数组,组件内部只处理这一种形态 */
|
|
154
|
+
initAttachmentValue() {
|
|
155
|
+
let rows = normalizeAttachmentValue(this.fieldModel);
|
|
156
|
+
/* 归一前后等价就不重新赋值,换新数组会让 watcher 白触发一次 onChange */
|
|
157
|
+
if (!isSameAttachmentRows(rows, this.fieldModel)) {
|
|
158
|
+
this.fieldModel = rows;
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
toModelValue(rows) {
|
|
162
|
+
return toModelValue(rows, this.field.options);
|
|
163
|
+
},
|
|
164
|
+
/* URL 模式下 toModelValue 每次都产出新数组,值没变也回写模型的话,会和
|
|
165
|
+
initValueWatchEvent 形成「写模型 → 灌回 fieldModel → 又写模型」的死循环
|
|
166
|
+
(多值模式页面直接卡死)。默认模式模型值就是 fieldModel 本身、身份不变,
|
|
167
|
+
不存在这个问题,行为保持原样。 */
|
|
168
|
+
isSameFieldModelValue(modelValue) {
|
|
169
|
+
if (!this.field.options.urlValueEnabled) return false;
|
|
170
|
+
let currentData = this.tableRow ? this.tableRow : this.formModel;
|
|
171
|
+
let current = currentData ? currentData[this.fieldKeyName] : undefined;
|
|
172
|
+
return isSameModelValue(current, modelValue);
|
|
173
|
+
},
|
|
174
|
+
setValue(val) {
|
|
175
|
+
let data = normalizeAttachmentValue(val);
|
|
176
|
+
let modelValue = this.toModelValue(data);
|
|
177
|
+
// 按 tableParam 决定落点:行内附件写回当前行对象,主表写回表单模型。
|
|
178
|
+
// 旧实现固定写 getFormRef().formDataModel(顶层),明细行/子表单里的附件
|
|
179
|
+
// 会写错位置并丢失联动,且多行会互相覆盖同一个顶层字段。
|
|
180
|
+
let currentData = this.tableRow ? this.tableRow : this.formModel;
|
|
181
|
+
if (currentData[this.fieldKeyName] === undefined) {
|
|
182
|
+
this.$set(currentData, this.fieldKeyName, modelValue);
|
|
183
|
+
}
|
|
184
|
+
// 赋值 fieldModel 会触发 watch.fieldModel -> handleChangeEvent(内部再走
|
|
185
|
+
// syncUpdateFormModel + emitFieldDataChange,异步一次)。这里再同步写一次模型,
|
|
186
|
+
// 保证 setValue 返回后立即可读到最新值,且落点与 watcher 一致。
|
|
187
|
+
this.fieldModel = data;
|
|
188
|
+
this.syncUpdateFormModel(modelValue);
|
|
189
|
+
},
|
|
190
|
+
loadDataDefaultHandle() {
|
|
191
|
+
/* URL 模式下值就存在主表列上、随表单 getOne 一起回来,不存在独立附件记录。
|
|
192
|
+
再发这一包不仅多余,查不到还会 setValue([]) 把主表带回来的 URL 清掉。
|
|
193
|
+
在这里拦截而不是改 onCreated 脚本,已有表单不用逐个改配置。 */
|
|
194
|
+
if (this.field.options.urlValueEnabled) return;
|
|
195
|
+
let dataId = this.formDataId;
|
|
196
|
+
if (!dataId) return;
|
|
197
|
+
let reportTemplate = this.getFormRef().reportTemplate;
|
|
198
|
+
let formScriptEnabled = this.field.options.formScriptEnabled || false;
|
|
199
|
+
let scriptCode = this.field.options.formScriptCode || "getList";
|
|
200
|
+
if (!scriptCode) return;
|
|
201
|
+
if (dataId) {
|
|
202
|
+
let accessParam = this.handleCustomEvent(
|
|
203
|
+
this.field.options.formScriptParam
|
|
204
|
+
);
|
|
205
|
+
return this.formHttp({
|
|
206
|
+
// url: "/" + reportTemplate.serviceName + "/form_ins/getList",
|
|
207
|
+
scriptCode: scriptCode,
|
|
208
|
+
data: this.buildFormScriptData(reportTemplate, {
|
|
209
|
+
...accessParam,
|
|
210
|
+
id: dataId,
|
|
211
|
+
}),
|
|
212
|
+
callback: (res) => {
|
|
213
|
+
let rows = res.objx || [];
|
|
214
|
+
this.setValue(rows);
|
|
215
|
+
this.handleCustomEvent(
|
|
216
|
+
this.field.options.formScriptSuccess,
|
|
217
|
+
["res"],
|
|
218
|
+
[res]
|
|
219
|
+
);
|
|
220
|
+
},
|
|
221
|
+
});
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
submitFile(rows, fileInfos) {
|
|
225
|
+
// this.handlLineCode(fileInfos);
|
|
226
|
+
let eventParamNames = ["attachments", "fileInfos"];
|
|
227
|
+
let eventParamValues = [rows, fileInfos];
|
|
228
|
+
this.handleCustomEvent(
|
|
229
|
+
this.field.options.onAfterConfirmFile,
|
|
230
|
+
eventParamNames,
|
|
231
|
+
eventParamValues
|
|
232
|
+
);
|
|
233
|
+
},
|
|
234
|
+
/* 脚本 API:直接用 URL 赋值,支持单个 URL、逗号/换行分隔的多个 URL、URL 数组。
|
|
235
|
+
非法输入不再抛异常,会被忽略并在控制台告警。 */
|
|
236
|
+
setValueByUrl(fileUrl) {
|
|
237
|
+
this.setValue(normalizeAttachmentValue(fileUrl));
|
|
238
|
+
},
|
|
239
|
+
/*handlLineCode(fileInfos) {
|
|
240
|
+
let allPromise = [];
|
|
241
|
+
fileInfos.forEach(async fileInfo => {
|
|
242
|
+
await this.processFile(fileInfo.file, (lineCode) => {
|
|
243
|
+
fileInfo.lineCode = lineCode;
|
|
244
|
+
})
|
|
245
|
+
})
|
|
246
|
+
|
|
247
|
+
},
|
|
248
|
+
processFile(file, callback) {
|
|
249
|
+
return new Promise((resolve, reject) => {
|
|
250
|
+
const reader = new FileReader();
|
|
251
|
+
reader.onload = (e) => this.processImage(e.target.result, (lineCode) => {
|
|
252
|
+
resolve(lineCode)
|
|
253
|
+
callback(lineCode)
|
|
254
|
+
});
|
|
255
|
+
reader.onerror = () => {
|
|
256
|
+
resolve(null)
|
|
257
|
+
callback(null)
|
|
258
|
+
this.setError('文件读取失败')
|
|
259
|
+
};
|
|
260
|
+
reader.readAsDataURL(file);
|
|
261
|
+
})
|
|
262
|
+
},
|
|
263
|
+
async processImage(base64, callback) {
|
|
264
|
+
try {
|
|
265
|
+
// 使用 ZXing 3.x 的 API
|
|
266
|
+
const result = await decode(base64, (result, err) => {
|
|
267
|
+
if (err) {
|
|
268
|
+
this.handleError(`条码识别失败: ${err}`);
|
|
269
|
+
callback && callback(null)
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
this.scannedText = result.text;
|
|
273
|
+
this.loading = false;
|
|
274
|
+
callback && callback(result.text)
|
|
275
|
+
});
|
|
276
|
+
} catch (err) {
|
|
277
|
+
console.error(err);
|
|
278
|
+
callback && callback(null)
|
|
279
|
+
this.handleError(`条码识别失败: ${err.message}`);
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
handleLineCode(fileInfos) {
|
|
283
|
+
fileInfos.forEach(fileInfo => {
|
|
284
|
+
let file = fileInfo.file;
|
|
285
|
+
})
|
|
286
|
+
},
|
|
287
|
+
handleImage(base64, fileName, callback) {
|
|
288
|
+
// 创建 ZXing Scanner
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
// 将 Base64 转换为 ImageLuminanceSource
|
|
292
|
+
// const imageData = Uint8Array.from(atob(base64), c => c.charCodeAt(0));
|
|
293
|
+
// const source = new ZXing.ImageLuminanceSource(imageData, base64.length);
|
|
294
|
+
|
|
295
|
+
decode(base64, (result, err) => {
|
|
296
|
+
if (err) {
|
|
297
|
+
this.handleError(`条码识别失败: ${err}`);
|
|
298
|
+
callback && callback(null)
|
|
299
|
+
return;
|
|
300
|
+
}
|
|
301
|
+
this.scannedText = result.text;
|
|
302
|
+
this.loading = false;
|
|
303
|
+
callback && callback(result.text)
|
|
304
|
+
});
|
|
305
|
+
},
|
|
306
|
+
|
|
307
|
+
handleError(errorMessage) {
|
|
308
|
+
this.error = errorMessage;
|
|
309
|
+
this.loading = false;
|
|
310
|
+
},*/
|
|
311
|
+
},
|
|
312
|
+
};
|
|
313
|
+
</script>
|
|
314
|
+
|
|
315
|
+
<style lang="scss" scoped>
|
|
316
|
+
@import "~@/styles/global.scss"; //* form-item-wrapper已引入,还需要重复引入吗? *//
|
|
317
|
+
|
|
318
|
+
.full-width-input {
|
|
319
|
+
width: 100% !important;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.hideUploadDiv {
|
|
323
|
+
::v-deep div.el-upload--picture-card {
|
|
324
|
+
/* 隐藏最后的图片上传按钮 */
|
|
325
|
+
display: none;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
::v-deep div.el-upload--text {
|
|
329
|
+
/* 隐藏最后的文件上传按钮 */
|
|
330
|
+
display: none;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
::v-deep div.el-upload__tip {
|
|
334
|
+
/* 隐藏最后的文件上传按钮提示 */
|
|
335
|
+
display: none;
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
</style>
|