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,847 +1,860 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
} from
|
|
17
|
-
import
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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
|
-
table: "
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"detail": "panes",
|
|
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
|
-
this.
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
this
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
this.
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
this.
|
|
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
|
-
this.
|
|
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
|
-
this.
|
|
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
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
this.
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
this.
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
return
|
|
461
|
-
},
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
return this.$refs[
|
|
465
|
-
},
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
let
|
|
472
|
-
let
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
"
|
|
543
|
-
|
|
544
|
-
"
|
|
545
|
-
|
|
546
|
-
"
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
let itemFieldMap =
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
widgetList
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
}
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
this
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
1
|
+
import { createDesigner } from "../../../components/xform/form-designer/designer";
|
|
2
|
+
import {
|
|
3
|
+
addWindowResizeHandler,
|
|
4
|
+
deepClone,
|
|
5
|
+
getAllContainerWidgets,
|
|
6
|
+
getAllFieldWidgets,
|
|
7
|
+
getQueryParam,
|
|
8
|
+
traverseAllWidgets,
|
|
9
|
+
traverseAllWidgetsNew,
|
|
10
|
+
flattenLeafColumns,
|
|
11
|
+
} from "../../../components/xform/utils/util";
|
|
12
|
+
import {
|
|
13
|
+
MOCK_CASE_URL,
|
|
14
|
+
VARIANT_FORM_VERSION,
|
|
15
|
+
} from "../../../components/xform/utils/config";
|
|
16
|
+
import i18n, { changeLocale } from "../../../components/xform/utils/i18n";
|
|
17
|
+
import axios from "axios";
|
|
18
|
+
import { getBdFlag } from "@base/api/user";
|
|
19
|
+
|
|
20
|
+
let modules = {};
|
|
21
|
+
|
|
22
|
+
const baseRefUtil = {
|
|
23
|
+
createDesigner,
|
|
24
|
+
MOCK_CASE_URL,
|
|
25
|
+
VARIANT_FORM_VERSION,
|
|
26
|
+
i18n,
|
|
27
|
+
changeLocale,
|
|
28
|
+
axios,
|
|
29
|
+
addWindowResizeHandler,
|
|
30
|
+
deepClone,
|
|
31
|
+
getAllContainerWidgets,
|
|
32
|
+
getAllFieldWidgets,
|
|
33
|
+
getQueryParam,
|
|
34
|
+
traverseAllWidgets,
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
modules = {
|
|
38
|
+
componentName: "VFormDesigner",
|
|
39
|
+
mixins: [baseRefUtil.i18n],
|
|
40
|
+
props: {
|
|
41
|
+
reportTemplate: {
|
|
42
|
+
type: Object,
|
|
43
|
+
default: null,
|
|
44
|
+
},
|
|
45
|
+
/* 后端字段列表API */
|
|
46
|
+
fieldListApi: {
|
|
47
|
+
type: Object,
|
|
48
|
+
default: null,
|
|
49
|
+
},
|
|
50
|
+
fieldListData: { type: Object, default: null },
|
|
51
|
+
/* 禁止显示的组件名称数组 */
|
|
52
|
+
bannedWidgets: {
|
|
53
|
+
type: Array,
|
|
54
|
+
default: () => [],
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
designerConfig: {
|
|
58
|
+
type: Object,
|
|
59
|
+
default: () => {
|
|
60
|
+
return {
|
|
61
|
+
languageMenu: true, //是否显示语言切换菜单
|
|
62
|
+
externalLink: true, //是否显示GitHub、文档等外部链接
|
|
63
|
+
formTemplates: true, //是否显示表单模板
|
|
64
|
+
|
|
65
|
+
componentLib: !0,
|
|
66
|
+
chartLib: !1,
|
|
67
|
+
metadataLib: !1,
|
|
68
|
+
layoutTypeButton: !0,
|
|
69
|
+
|
|
70
|
+
eventCollapse: true, //是否显示组件事件属性折叠面板
|
|
71
|
+
widgetNameReadonly: false, //禁止修改组件名称
|
|
72
|
+
|
|
73
|
+
clearDesignerButton: true, //是否显示清空设计器按钮
|
|
74
|
+
previewFormButton: true, //是否显示预览表单按钮
|
|
75
|
+
importJsonButton: true, //是否显示导入JSON按钮
|
|
76
|
+
exportJsonButton: true, //是否显示导出JSON器按钮
|
|
77
|
+
exportCodeButton: true, //是否显示导出代码按钮
|
|
78
|
+
generateSFCButton: true, //是否显示生成SFC按钮
|
|
79
|
+
logoHeader: !0,
|
|
80
|
+
toolbarMaxWidth: 420, //设计器工具按钮栏最大宽度(单位像素)
|
|
81
|
+
toolbarMinWidth: 300, //设计器工具按钮栏最小宽度(单位像素)
|
|
82
|
+
productName: "",
|
|
83
|
+
productTitle: "",
|
|
84
|
+
presetCssCode: "", //设计器预设CSS样式代码
|
|
85
|
+
languageName: "zh-CN",
|
|
86
|
+
resetFormJson: true, //是否在设计器初始化时将表单内容重置为空
|
|
87
|
+
};
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
globalDsv: { type: Object, default: () => ({}) },
|
|
91
|
+
formTemplates: { type: Array, default: null },
|
|
92
|
+
testOptionData: { type: Object, default: null },
|
|
93
|
+
readonly: Boolean,
|
|
94
|
+
columnFlag: Boolean,
|
|
95
|
+
sourceData: Object,
|
|
96
|
+
},
|
|
97
|
+
data() {
|
|
98
|
+
return {
|
|
99
|
+
vFormVersion: baseRefUtil.VARIANT_FORM_VERSION,
|
|
100
|
+
curLangName: "",
|
|
101
|
+
|
|
102
|
+
vsCodeFlag: false,
|
|
103
|
+
caseName: "",
|
|
104
|
+
|
|
105
|
+
docUrl: "https://www.vform666.com/document.html",
|
|
106
|
+
gitUrl: "https://github.com/vform666/variant-form",
|
|
107
|
+
chatUrl: "https://www.vform666.com/pages/chat-group/",
|
|
108
|
+
subScribeUrl: "https://www.vform666.com/subscribe.html",
|
|
109
|
+
|
|
110
|
+
scrollerHeight: 0,
|
|
111
|
+
|
|
112
|
+
designer: baseRefUtil.createDesigner(this),
|
|
113
|
+
|
|
114
|
+
fieldList: [],
|
|
115
|
+
subFormList: [],
|
|
116
|
+
optionData: this.testOptionData,
|
|
117
|
+
externalComponents: {},
|
|
118
|
+
leftAsideVisible: !0,
|
|
119
|
+
rightAsideVisible: !0,
|
|
120
|
+
isDev: true,
|
|
121
|
+
menuKindAuth: {
|
|
122
|
+
editAuth: 0,
|
|
123
|
+
},
|
|
124
|
+
showPreformDialog: false,
|
|
125
|
+
itemFieldMap: {
|
|
126
|
+
grid: "cols",
|
|
127
|
+
table: "rows",
|
|
128
|
+
"table-cell": "widgetList",
|
|
129
|
+
"h5-table": "rows",
|
|
130
|
+
"h5-table-cell": "widgetList",
|
|
131
|
+
tab: "tabs",
|
|
132
|
+
"tab-pane": "widgetList",
|
|
133
|
+
"grid-col": "widgetList",
|
|
134
|
+
"vf-box": "widgetList",
|
|
135
|
+
card: "widgetList",
|
|
136
|
+
detail: "panes",
|
|
137
|
+
"detail-plain": "panes",
|
|
138
|
+
"detail-pane": "widgetList",
|
|
139
|
+
"detail-h5": "panes",
|
|
140
|
+
"h5-card": "panes",
|
|
141
|
+
"h5-card-pane": "widgetList",
|
|
142
|
+
},
|
|
143
|
+
};
|
|
144
|
+
},
|
|
145
|
+
provide() {
|
|
146
|
+
return {
|
|
147
|
+
serverFieldList: this.fieldList,
|
|
148
|
+
getServerSubFormList: () => this.subFormList,
|
|
149
|
+
getDesignerConfig: () => this.designerConfig,
|
|
150
|
+
getBannedWidgets: () => this.bannedWidgets,
|
|
151
|
+
saveReportTemplate: this.saveReportTemplate,
|
|
152
|
+
getReportTemplate: () => this.reportTemplate,
|
|
153
|
+
getFormTemplateTableDTOs: this.getFormTemplateTableDTOs,
|
|
154
|
+
getObjectFieldFlag: () => !1,
|
|
155
|
+
getObjectName: () => "",
|
|
156
|
+
getHasWf: () => false,
|
|
157
|
+
readonly: this.readonly,
|
|
158
|
+
columnFlag: this.columnFlag,
|
|
159
|
+
widgetKeyNameMap: {},
|
|
160
|
+
sourceData: this.sourceData,
|
|
161
|
+
setCETriggerFlag: () => {},
|
|
162
|
+
clearCETriggerFlag: () => {},
|
|
163
|
+
};
|
|
164
|
+
},
|
|
165
|
+
created() {
|
|
166
|
+
this.vsCodeFlag = baseRefUtil.getQueryParam("vscode") === 1;
|
|
167
|
+
this.caseName = baseRefUtil.getQueryParam("case");
|
|
168
|
+
this.designer.handleEvent("canvas-select-field", (o) => {
|
|
169
|
+
this.$emit("field-widget-used", o);
|
|
170
|
+
}),
|
|
171
|
+
this.designer.handleEvent("canvas-remove-field", (o) => {
|
|
172
|
+
this.$emit("field-widget-removed", o);
|
|
173
|
+
}),
|
|
174
|
+
this.designer.handleEvent("form-json-imported", () => {
|
|
175
|
+
this.$emit("form-json-updated", "form-json-imported");
|
|
176
|
+
}),
|
|
177
|
+
this.designer.handleEvent("canvas-undo", () => {
|
|
178
|
+
this.$emit("form-json-updated", "canvas-undo");
|
|
179
|
+
}),
|
|
180
|
+
this.designer.handleEvent("canvas-redo", () => {
|
|
181
|
+
this.$emit("form-json-updated", "canvas-redo");
|
|
182
|
+
}),
|
|
183
|
+
this.designer.handleEvent("canvas-remove-container", () => {
|
|
184
|
+
this.$emit("form-json-updated", "canvas-remove-container");
|
|
185
|
+
});
|
|
186
|
+
},
|
|
187
|
+
mounted() {
|
|
188
|
+
this.initLocale();
|
|
189
|
+
|
|
190
|
+
this.scrollerHeight = window.innerHeight - 42 + "px";
|
|
191
|
+
this.winResizeUnbind = baseRefUtil.addWindowResizeHandler(() => {
|
|
192
|
+
this.$nextTick(() => {
|
|
193
|
+
this.scrollerHeight = window.innerHeight - 42 + "px";
|
|
194
|
+
});
|
|
195
|
+
});
|
|
196
|
+
|
|
197
|
+
this.loadCase();
|
|
198
|
+
|
|
199
|
+
// this.loadFieldListFromServer();
|
|
200
|
+
this.initServerFields();
|
|
201
|
+
this.getBdEnv();
|
|
202
|
+
this.getMenuKindAuth();
|
|
203
|
+
},
|
|
204
|
+
beforeDestroy() {
|
|
205
|
+
// window 级监听持有本实例,销毁时必须解绑,否则设计器整树泄露
|
|
206
|
+
if (this.winResizeUnbind) {
|
|
207
|
+
this.winResizeUnbind();
|
|
208
|
+
this.winResizeUnbind = null;
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
methods: {
|
|
212
|
+
showLink(configName) {
|
|
213
|
+
if (this.designerConfig[configName] === undefined) {
|
|
214
|
+
return true;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
return !!this.designerConfig[configName];
|
|
218
|
+
},
|
|
219
|
+
|
|
220
|
+
openHome() {
|
|
221
|
+
if (!!this.vsCodeFlag) {
|
|
222
|
+
const msgObj = {
|
|
223
|
+
cmd: "openUrl",
|
|
224
|
+
data: {
|
|
225
|
+
url: "https://www.vform666.com/",
|
|
226
|
+
},
|
|
227
|
+
};
|
|
228
|
+
window.parent.postMessage(msgObj, "*");
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
|
|
232
|
+
openUrl(event, url) {
|
|
233
|
+
if (!!this.vsCodeFlag) {
|
|
234
|
+
const msgObj = {
|
|
235
|
+
cmd: "openUrl",
|
|
236
|
+
data: {
|
|
237
|
+
url,
|
|
238
|
+
},
|
|
239
|
+
};
|
|
240
|
+
window.parent.postMessage(msgObj, "*");
|
|
241
|
+
} else {
|
|
242
|
+
let aDom = event.currentTarget;
|
|
243
|
+
aDom.href = url;
|
|
244
|
+
//window.open(url, '_blank') //直接打开新窗口,会被浏览器拦截
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
|
|
248
|
+
loadCase() {
|
|
249
|
+
if (!this.caseName) {
|
|
250
|
+
return;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
baseRefUtil.axios
|
|
254
|
+
.get(baseRefUtil.MOCK_CASE_URL + this.caseName + ".txt")
|
|
255
|
+
.then((res) => {
|
|
256
|
+
if (!!res.data.code) {
|
|
257
|
+
this.$message.error(this.i18nt("designer.hint.sampleLoadedFail"));
|
|
258
|
+
return;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
this.setFormJson(res.data);
|
|
262
|
+
this.$message.success(
|
|
263
|
+
this.i18nt("designer.hint.sampleLoadedSuccess")
|
|
264
|
+
);
|
|
265
|
+
})
|
|
266
|
+
.catch((error) => {
|
|
267
|
+
this.$message.error(
|
|
268
|
+
this.i18nt("designer.hint.sampleLoadedFail") + ":" + error
|
|
269
|
+
);
|
|
270
|
+
});
|
|
271
|
+
},
|
|
272
|
+
|
|
273
|
+
initLocale() {
|
|
274
|
+
let curLocale = localStorage.getItem("v_form_locale");
|
|
275
|
+
if (!!this.vsCodeFlag) {
|
|
276
|
+
curLocale = curLocale || "en-US";
|
|
277
|
+
} else {
|
|
278
|
+
curLocale = curLocale || "zh-CN";
|
|
279
|
+
}
|
|
280
|
+
this.curLangName = this.i18nt("application." + curLocale);
|
|
281
|
+
this.changeLanguage(curLocale);
|
|
282
|
+
},
|
|
283
|
+
|
|
284
|
+
loadFieldListFromServer() {
|
|
285
|
+
if (!this.fieldListApi) {
|
|
286
|
+
return;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
let headers = this.fieldListApi.headers || {};
|
|
290
|
+
baseRefUtil.axios
|
|
291
|
+
.get(this.fieldListApi.URL, {
|
|
292
|
+
headers: headers,
|
|
293
|
+
})
|
|
294
|
+
.then((res) => {
|
|
295
|
+
let labelKey = this.fieldListApi.labelKey || "label";
|
|
296
|
+
let nameKey = this.fieldListApi.nameKey || "name";
|
|
297
|
+
|
|
298
|
+
this.fieldList.splice(0, this.fieldList.length); //清空已有
|
|
299
|
+
res.data.forEach((fieldItem) => {
|
|
300
|
+
this.fieldList.push({
|
|
301
|
+
label: fieldItem[labelKey],
|
|
302
|
+
name: fieldItem[nameKey],
|
|
303
|
+
});
|
|
304
|
+
});
|
|
305
|
+
})
|
|
306
|
+
.catch((error) => {
|
|
307
|
+
this.$message.error(error);
|
|
308
|
+
});
|
|
309
|
+
},
|
|
310
|
+
initServerFields() {
|
|
311
|
+
!!this.fieldListData && !!this.fieldListData.fieldList
|
|
312
|
+
? (this.fieldList.splice(
|
|
313
|
+
0,
|
|
314
|
+
this.fieldList.length,
|
|
315
|
+
...this.fieldListData.fieldList
|
|
316
|
+
),
|
|
317
|
+
this.fieldListData.subFormList &&
|
|
318
|
+
this.subFormList.splice(
|
|
319
|
+
0,
|
|
320
|
+
this.subFormList.length,
|
|
321
|
+
...this.fieldListData.subFormList
|
|
322
|
+
))
|
|
323
|
+
: this.loadFieldListFromServer();
|
|
324
|
+
},
|
|
325
|
+
setFieldListData(o) {
|
|
326
|
+
!!o &&
|
|
327
|
+
!!o.fieldList &&
|
|
328
|
+
(this.fieldList.splice(0, this.fieldList.length, ...o.fieldList),
|
|
329
|
+
o.subFormList &&
|
|
330
|
+
this.subFormList.splice(
|
|
331
|
+
0,
|
|
332
|
+
this.subFormList.length,
|
|
333
|
+
...o.subFormList
|
|
334
|
+
));
|
|
335
|
+
},
|
|
336
|
+
setMetaFields(o) {
|
|
337
|
+
this.$refs.widgetPanelRef.setMetaFields(o);
|
|
338
|
+
},
|
|
339
|
+
handleLanguageChanged(command) {
|
|
340
|
+
this.changeLanguage(command);
|
|
341
|
+
this.curLangName = this.i18nt("application." + command);
|
|
342
|
+
},
|
|
343
|
+
|
|
344
|
+
changeLanguage(langName) {
|
|
345
|
+
baseRefUtil.changeLocale(langName);
|
|
346
|
+
},
|
|
347
|
+
|
|
348
|
+
setFormJson(formJson) {
|
|
349
|
+
let modifiedFlag = false;
|
|
350
|
+
if (!!formJson) {
|
|
351
|
+
if (typeof formJson === "string") {
|
|
352
|
+
let newFormJson = JSON.parse(formJson);
|
|
353
|
+
this.upgradeFormJson(newFormJson);
|
|
354
|
+
modifiedFlag = this.designer.loadFormJson(newFormJson);
|
|
355
|
+
} else if (formJson.constructor === Object) {
|
|
356
|
+
this.upgradeFormJson(formJson);
|
|
357
|
+
modifiedFlag = this.designer.loadFormJson(formJson);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
if (modifiedFlag) {
|
|
361
|
+
this.designer.emitHistoryChange();
|
|
362
|
+
}
|
|
363
|
+
} else {
|
|
364
|
+
this.clearDesigner();
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
|
|
368
|
+
getFormJson() {
|
|
369
|
+
return {
|
|
370
|
+
widgetList: baseRefUtil.deepClone(this.designer.widgetList),
|
|
371
|
+
formConfig: baseRefUtil.deepClone(this.designer.formConfig),
|
|
372
|
+
};
|
|
373
|
+
},
|
|
374
|
+
|
|
375
|
+
clearDesigner() {
|
|
376
|
+
this.$refs.toolbarRef.clearFormWidget();
|
|
377
|
+
},
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* 刷新表单设计器
|
|
381
|
+
*/
|
|
382
|
+
refreshDesigner() {
|
|
383
|
+
//this.designer.loadFormJson( this.getFormJson() ) //只有第一次调用生效??
|
|
384
|
+
|
|
385
|
+
let fJson = this.getFormJson();
|
|
386
|
+
this.designer.clearDesigner(true); //不触发历史记录变更
|
|
387
|
+
this.designer.loadFormJson(fJson);
|
|
388
|
+
},
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* 预览表单
|
|
392
|
+
*/
|
|
393
|
+
previewForm() {
|
|
394
|
+
this.$refs.toolbarRef.previewForm();
|
|
395
|
+
},
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* 导入表单JSON
|
|
399
|
+
*/
|
|
400
|
+
importJson() {
|
|
401
|
+
this.$refs.toolbarRef.importJson();
|
|
402
|
+
},
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* 导出表单JSON
|
|
406
|
+
*/
|
|
407
|
+
exportJson() {
|
|
408
|
+
this.$refs.toolbarRef.exportJson();
|
|
409
|
+
},
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* 导出Vue/HTML代码
|
|
413
|
+
*/
|
|
414
|
+
exportCode() {
|
|
415
|
+
this.$refs.toolbarRef.exportCode();
|
|
416
|
+
},
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
* 生成SFC代码
|
|
420
|
+
*/
|
|
421
|
+
generateSFC() {
|
|
422
|
+
this.$refs.toolbarRef.generateSFC();
|
|
423
|
+
},
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* 获取所有字段组件
|
|
427
|
+
* @returns {*[]}
|
|
428
|
+
*/
|
|
429
|
+
getFieldWidgets(widgetList = null) {
|
|
430
|
+
return !!widgetList
|
|
431
|
+
? baseRefUtil.getAllFieldWidgets(widgetList)
|
|
432
|
+
: baseRefUtil.getAllFieldWidgets(this.designer.widgetList);
|
|
433
|
+
},
|
|
434
|
+
|
|
435
|
+
/**
|
|
436
|
+
* 获取所有容器组件
|
|
437
|
+
* @returns {*[]}
|
|
438
|
+
*/
|
|
439
|
+
getContainerWidgets(widgetList = null) {
|
|
440
|
+
return !!widgetList
|
|
441
|
+
? baseRefUtil.getAllContainerWidgets(widgetList)
|
|
442
|
+
: baseRefUtil.getAllContainerWidgets(this.designer.widgetList);
|
|
443
|
+
},
|
|
444
|
+
|
|
445
|
+
/**
|
|
446
|
+
* 升级表单json,以补充最新的组件属性
|
|
447
|
+
* @param formJson
|
|
448
|
+
*/
|
|
449
|
+
upgradeFormJson(formJson) {
|
|
450
|
+
if (!formJson.widgetList || !formJson.formConfig) {
|
|
451
|
+
this.$message.error("Invalid form json!");
|
|
452
|
+
return;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
traverseAllWidgetsNew(formJson.widgetList, (w) => {
|
|
456
|
+
this.designer.upgradeWidgetConfig(w);
|
|
457
|
+
});
|
|
458
|
+
this.designer.upgradeFormConfig(formJson.formConfig);
|
|
459
|
+
|
|
460
|
+
return formJson;
|
|
461
|
+
},
|
|
462
|
+
|
|
463
|
+
getWidgetRef(widgetName, showError = false) {
|
|
464
|
+
return this.$refs["formRef"].getWidgetRef(widgetName, showError);
|
|
465
|
+
},
|
|
466
|
+
|
|
467
|
+
getSelectedWidgetRef() {
|
|
468
|
+
return this.$refs["formRef"].getSelectedWidgetRef();
|
|
469
|
+
},
|
|
470
|
+
getWfBizDataSettingDTOs(formJson, code) {
|
|
471
|
+
let result = [];
|
|
472
|
+
let formCode = code || this.reportTemplate.formCode;
|
|
473
|
+
let fields = [];
|
|
474
|
+
let fJson = formJson || this.getFormJson();
|
|
475
|
+
let formConfig = fJson.formConfig;
|
|
476
|
+
let entity = formConfig.entity;
|
|
477
|
+
if (!entity) return [];
|
|
478
|
+
if (formConfig.wfTheme) {
|
|
479
|
+
result.push({
|
|
480
|
+
action: "setWfName",
|
|
481
|
+
toValue: formConfig.wfTheme,
|
|
482
|
+
tableName: entity,
|
|
483
|
+
tableField: null,
|
|
484
|
+
});
|
|
485
|
+
}
|
|
486
|
+
let itemFieldMap = this.itemFieldMap;
|
|
487
|
+
|
|
488
|
+
let loopDo = (widgetList) => {
|
|
489
|
+
if (!widgetList) return;
|
|
490
|
+
widgetList.forEach((widget) => {
|
|
491
|
+
let widgetName = widget.options.name;
|
|
492
|
+
let optionModel = widget.options;
|
|
493
|
+
if (widget.category !== "container") {
|
|
494
|
+
if (optionModel.wfModifyDataEnabled) {
|
|
495
|
+
let wfModifyDataConfig = optionModel.wfModifyDataConfig || [];
|
|
496
|
+
if (wfModifyDataConfig.length) {
|
|
497
|
+
let fieldKeyName = this.getFieldKeyName(widget);
|
|
498
|
+
let items = wfModifyDataConfig
|
|
499
|
+
.filter((item) => {
|
|
500
|
+
return !!item.action;
|
|
501
|
+
})
|
|
502
|
+
.map((item) => {
|
|
503
|
+
return {
|
|
504
|
+
action: item.action,
|
|
505
|
+
toValue: item.toValue,
|
|
506
|
+
tableName: entity,
|
|
507
|
+
tableField: fieldKeyName,
|
|
508
|
+
};
|
|
509
|
+
});
|
|
510
|
+
result.push(...items);
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
} else {
|
|
514
|
+
let itemField = itemFieldMap[widget.type];
|
|
515
|
+
if (itemField) {
|
|
516
|
+
if ("table" === widget.type) {
|
|
517
|
+
widget[itemField].forEach((item) => {
|
|
518
|
+
loopDo(item.cols);
|
|
519
|
+
});
|
|
520
|
+
} else if ("h5-table" === widget.type) {
|
|
521
|
+
widget[itemField].forEach((item) => {
|
|
522
|
+
loopDo(item.cols);
|
|
523
|
+
});
|
|
524
|
+
} else {
|
|
525
|
+
loopDo(widget[itemField]);
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
});
|
|
530
|
+
};
|
|
531
|
+
loopDo(fJson.widgetList);
|
|
532
|
+
return result;
|
|
533
|
+
},
|
|
534
|
+
getFormTemplateTableDTOs(formJson, code) {
|
|
535
|
+
let formTemplateTableDTOs = [];
|
|
536
|
+
let formCode = code || this.reportTemplate.formCode;
|
|
537
|
+
let fields = [];
|
|
538
|
+
let fJson = formJson || this.getFormJson();
|
|
539
|
+
/*let itemFieldMap = {
|
|
540
|
+
grid: "cols",
|
|
541
|
+
table: "rows",
|
|
542
|
+
"table-cell": "widgetList",
|
|
543
|
+
'h5-table': "rows",
|
|
544
|
+
"h5-table-cell": "widgetList",
|
|
545
|
+
tab: "tabs",
|
|
546
|
+
"tab-pane": "widgetList",
|
|
547
|
+
"grid-col": "widgetList",
|
|
548
|
+
"vf-box": "widgetList",
|
|
549
|
+
"card": "widgetList",
|
|
550
|
+
"detail": "panes",
|
|
551
|
+
"detail-pane": "widgetList",
|
|
552
|
+
"detail-h5": "panes",
|
|
553
|
+
"h5-card": "panes",
|
|
554
|
+
"h5-card-pane": "widgetList",
|
|
555
|
+
}*/
|
|
556
|
+
let itemFieldMap = this.itemFieldMap;
|
|
557
|
+
let loopDo = (widgetList) => {
|
|
558
|
+
if (!widgetList) return;
|
|
559
|
+
widgetList.forEach((widget) => {
|
|
560
|
+
let widgetName = widget.options.name;
|
|
561
|
+
if (
|
|
562
|
+
widget.tableField &&
|
|
563
|
+
(widget.type === "data-table" || widget.type === "list-h5")
|
|
564
|
+
) {
|
|
565
|
+
// 与 form-render/indexMixin 的 getFormTemplateTableDTOs 同口径:
|
|
566
|
+
// 分组表头自身 prop 为空,业务字段挂在 children 上,必须先展平叶子列,
|
|
567
|
+
// 否则「列全部分组」的表格算不出字段,子表不会写进模板表结构。
|
|
568
|
+
let vailColumns = flattenLeafColumns(
|
|
569
|
+
widget.options.tableColumns
|
|
570
|
+
).filter((item) => item.prop && item.label);
|
|
571
|
+
let itemFields = [];
|
|
572
|
+
vailColumns.forEach((item) => {
|
|
573
|
+
if (item.formatS === "editSearch") {
|
|
574
|
+
itemFields.push({
|
|
575
|
+
fieldDesc: item.label + "ID",
|
|
576
|
+
fieldName: item.prop,
|
|
577
|
+
});
|
|
578
|
+
let vabSearchName = item?.columnOption?.vabSearchName;
|
|
579
|
+
if (vabSearchName) {
|
|
580
|
+
itemFields.push({
|
|
581
|
+
fieldDesc: item.label,
|
|
582
|
+
fieldName: vabSearchName,
|
|
583
|
+
});
|
|
584
|
+
}
|
|
585
|
+
} else {
|
|
586
|
+
itemFields.push({
|
|
587
|
+
fieldDesc: item.label,
|
|
588
|
+
fieldName: item.prop,
|
|
589
|
+
});
|
|
590
|
+
}
|
|
591
|
+
});
|
|
592
|
+
/*let itemFields = widget.options.tableColumns.filter(item => item.prop && item.label).map(item => {
|
|
593
|
+
return {
|
|
594
|
+
fieldDesc: item.label,
|
|
595
|
+
fieldName: item.prop
|
|
596
|
+
}
|
|
597
|
+
})*/
|
|
598
|
+
if (itemFields.length) {
|
|
599
|
+
let formTemplateTable = {
|
|
600
|
+
tableAlias: widgetName,
|
|
601
|
+
formCode: formCode,
|
|
602
|
+
tableType: 1,
|
|
603
|
+
formTemplateFieldDTOs: [],
|
|
604
|
+
};
|
|
605
|
+
formTemplateTable.formTemplateFieldDTOs = itemFields;
|
|
606
|
+
formTemplateTableDTOs.push(formTemplateTable);
|
|
607
|
+
}
|
|
608
|
+
} else if (widget.tableField && widget.type === "vabUpload") {
|
|
609
|
+
let formTemplateTable = {
|
|
610
|
+
tableAlias: widgetName,
|
|
611
|
+
formCode: formCode,
|
|
612
|
+
tableType: 2,
|
|
613
|
+
};
|
|
614
|
+
formTemplateTableDTOs.push(formTemplateTable);
|
|
615
|
+
} else if (widget.tableField && this.isVabsearchFlagWidget(widget)) {
|
|
616
|
+
fields.push({
|
|
617
|
+
fieldDesc: widget.options.label + "ID",
|
|
618
|
+
fieldName: widgetName,
|
|
619
|
+
});
|
|
620
|
+
let vabSearchName = widget.options.vabSearchName;
|
|
621
|
+
if (vabSearchName) {
|
|
622
|
+
fields.push({
|
|
623
|
+
fieldDesc: widget.options.label,
|
|
624
|
+
fieldName: vabSearchName,
|
|
625
|
+
});
|
|
626
|
+
}
|
|
627
|
+
} else if (widget.tableField) {
|
|
628
|
+
fields.push({
|
|
629
|
+
fieldDesc: widget.options.label,
|
|
630
|
+
fieldName: widgetName,
|
|
631
|
+
});
|
|
632
|
+
} else {
|
|
633
|
+
if (widget.category === "container") {
|
|
634
|
+
let itemField = itemFieldMap[widget.type];
|
|
635
|
+
if (itemField) {
|
|
636
|
+
if ("table" === widget.type) {
|
|
637
|
+
widget[itemField].forEach((item) => {
|
|
638
|
+
loopDo(item.cols);
|
|
639
|
+
});
|
|
640
|
+
} else if ("h5-table" === widget.type) {
|
|
641
|
+
widget[itemField].forEach((item) => {
|
|
642
|
+
loopDo(item.cols);
|
|
643
|
+
});
|
|
644
|
+
} else {
|
|
645
|
+
loopDo(widget[itemField]);
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
});
|
|
651
|
+
};
|
|
652
|
+
|
|
653
|
+
loopDo(fJson.widgetList);
|
|
654
|
+
if (fields.length) {
|
|
655
|
+
let formTemplateTable = {
|
|
656
|
+
tableAlias: null,
|
|
657
|
+
formCode: formCode,
|
|
658
|
+
tableType: 0,
|
|
659
|
+
formTemplateFieldDTOs: fields,
|
|
660
|
+
};
|
|
661
|
+
formTemplateTableDTOs.push(formTemplateTable);
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
return formTemplateTableDTOs;
|
|
665
|
+
},
|
|
666
|
+
isVabsearchFlagWidget(widget) {
|
|
667
|
+
let type = widget?.type;
|
|
668
|
+
return (
|
|
669
|
+
type === "vabsearch" ||
|
|
670
|
+
type === "singerSearch" ||
|
|
671
|
+
type === "multiSearch"
|
|
672
|
+
);
|
|
673
|
+
},
|
|
674
|
+
getTableFileds() {
|
|
675
|
+
let fields = [];
|
|
676
|
+
let fJson = this.getFormJson();
|
|
677
|
+
/*let itemFieldMap = {
|
|
678
|
+
grid: "cols",
|
|
679
|
+
table: "rows",
|
|
680
|
+
"table-cell": "widgetList",
|
|
681
|
+
'h5-table': "rows",
|
|
682
|
+
"h5-table-cell": "widgetList",
|
|
683
|
+
tab: "tabs",
|
|
684
|
+
"tab-pane": "widgetList",
|
|
685
|
+
"grid-col": "widgetList",
|
|
686
|
+
"vf-box": "widgetList",
|
|
687
|
+
"card": "widgetList",
|
|
688
|
+
"detail": "panes",
|
|
689
|
+
"detail-pane": "widgetList",
|
|
690
|
+
"detail-h5": "panes",
|
|
691
|
+
"h5-card": "panes",
|
|
692
|
+
"h5-card-pane": "widgetList",
|
|
693
|
+
}*/
|
|
694
|
+
let itemFieldMap = this.itemFieldMap;
|
|
695
|
+
let loopDo = (widgetList) => {
|
|
696
|
+
if (!widgetList) return;
|
|
697
|
+
widgetList.forEach((widget) => {
|
|
698
|
+
/*if (widget.tableField && widget.type === 'data-table') {
|
|
699
|
+
let itemFields = widget.options.tableColumns.filter(item.prop && item.label).map(item => {
|
|
700
|
+
return {
|
|
701
|
+
fieldDesc: item.options.label,
|
|
702
|
+
fieldName: item.prop
|
|
703
|
+
}
|
|
704
|
+
})
|
|
705
|
+
}*/
|
|
706
|
+
let widgetName = widget.options.name;
|
|
707
|
+
if (widget.tableField) {
|
|
708
|
+
fields.push({
|
|
709
|
+
fieldDesc: widget.options.label,
|
|
710
|
+
fieldName: widgetName,
|
|
711
|
+
});
|
|
712
|
+
} else {
|
|
713
|
+
if (widget.category === "container") {
|
|
714
|
+
let itemField = itemFieldMap[widget.type];
|
|
715
|
+
if (itemField) {
|
|
716
|
+
if ("table" === widget.type) {
|
|
717
|
+
widget[itemField].forEach((item) => {
|
|
718
|
+
loopDo(item.cols);
|
|
719
|
+
});
|
|
720
|
+
} else if ("h5-table" === widget.type) {
|
|
721
|
+
widget[itemField].forEach((item) => {
|
|
722
|
+
loopDo(item.cols);
|
|
723
|
+
});
|
|
724
|
+
} else {
|
|
725
|
+
loopDo(widget[itemField]);
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
});
|
|
731
|
+
};
|
|
732
|
+
loopDo(fJson.widgetList);
|
|
733
|
+
return fields;
|
|
734
|
+
},
|
|
735
|
+
getFormScriptDTOs() {
|
|
736
|
+
let reportTemplate = this.reportTemplate;
|
|
737
|
+
let fJson = this.getFormJson();
|
|
738
|
+
let scripts = fJson.formConfig.scriptList || [];
|
|
739
|
+
return scripts
|
|
740
|
+
.filter((item) => {
|
|
741
|
+
return !!item.uuid && !!item.script;
|
|
742
|
+
})
|
|
743
|
+
.map((item) => {
|
|
744
|
+
return {
|
|
745
|
+
formCode: reportTemplate.formCode,
|
|
746
|
+
formVersion: reportTemplate.formVersion,
|
|
747
|
+
scriptCode: item.uuid,
|
|
748
|
+
scriptName: item.uuid,
|
|
749
|
+
script: item.script,
|
|
750
|
+
};
|
|
751
|
+
});
|
|
752
|
+
},
|
|
753
|
+
handleColumnConfirm() {
|
|
754
|
+
let fJson = this.getFormJson();
|
|
755
|
+
this.$emit("customConfirm", fJson);
|
|
756
|
+
},
|
|
757
|
+
saveReportTemplate() {
|
|
758
|
+
if (this.columnFlag) {
|
|
759
|
+
this.handleColumnConfirm();
|
|
760
|
+
return;
|
|
761
|
+
}
|
|
762
|
+
this.openPreformDialog();
|
|
763
|
+
},
|
|
764
|
+
saveDataHandle(preformData) {
|
|
765
|
+
if (this.reportTemplate) {
|
|
766
|
+
let formTemplateTableDTOs = this.getFormTemplateTableDTOs();
|
|
767
|
+
let fJson = this.getFormJson();
|
|
768
|
+
let formViewContent = JSON.stringify(fJson);
|
|
769
|
+
let tableFileds = this.getTableFileds();
|
|
770
|
+
let reportTemplate = baseRefUtil.deepClone(this.reportTemplate);
|
|
771
|
+
reportTemplate.formViewContent = formViewContent;
|
|
772
|
+
reportTemplate.formTemplateTableDTOs = formTemplateTableDTOs;
|
|
773
|
+
|
|
774
|
+
let formScriptDTOs = this.getFormScriptDTOs();
|
|
775
|
+
reportTemplate.formScriptDTOs = formScriptDTOs;
|
|
776
|
+
reportTemplate.hasWf = fJson.formConfig.wfEnabled || false;
|
|
777
|
+
|
|
778
|
+
let wfBizDataSettingDTOs = this.getWfBizDataSettingDTOs();
|
|
779
|
+
|
|
780
|
+
let formData = {
|
|
781
|
+
...reportTemplate,
|
|
782
|
+
wfBizDataSettingDTOs,
|
|
783
|
+
logContent: preformData.logContent,
|
|
784
|
+
};
|
|
785
|
+
|
|
786
|
+
let url = USER_PREFIX + `/formTemplate/updateDesign`;
|
|
787
|
+
this.$http({
|
|
788
|
+
url: url,
|
|
789
|
+
method: `post`,
|
|
790
|
+
data: formData,
|
|
791
|
+
isLoading: true,
|
|
792
|
+
loadingTarget: document.body,
|
|
793
|
+
success: (res) => {
|
|
794
|
+
this.reflushReportTemplate(res.objx);
|
|
795
|
+
this.$message({
|
|
796
|
+
message: res.content,
|
|
797
|
+
type: "success",
|
|
798
|
+
duration: 500,
|
|
799
|
+
onClose: (t) => {},
|
|
800
|
+
});
|
|
801
|
+
this.$emit("reflushTemplateList");
|
|
802
|
+
},
|
|
803
|
+
});
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
openPreformDialog() {
|
|
807
|
+
this.showPreformDialog = true;
|
|
808
|
+
},
|
|
809
|
+
confirmPreformDialog(preformData) {
|
|
810
|
+
this.saveDataHandle(preformData);
|
|
811
|
+
},
|
|
812
|
+
reflushReportTemplate(id) {
|
|
813
|
+
this.$http({
|
|
814
|
+
url: USER_PREFIX + `/formTemplate/get`,
|
|
815
|
+
method: `post`,
|
|
816
|
+
data: {
|
|
817
|
+
id: id,
|
|
818
|
+
},
|
|
819
|
+
isLoading: true,
|
|
820
|
+
loadingTarget: document.body,
|
|
821
|
+
modalStrictly: true,
|
|
822
|
+
success: (res) => {
|
|
823
|
+
let reportTemplate = res.objx || {};
|
|
824
|
+
this.$emit("update:reportTemplate", reportTemplate);
|
|
825
|
+
},
|
|
826
|
+
});
|
|
827
|
+
},
|
|
828
|
+
loadWidgets() {
|
|
829
|
+
this.$refs.widgetPanelRef.loadWidgets();
|
|
830
|
+
},
|
|
831
|
+
getBdEnv() {
|
|
832
|
+
getBdFlag({
|
|
833
|
+
success: (res) => {
|
|
834
|
+
this.isDev = res.objx === 1;
|
|
835
|
+
},
|
|
836
|
+
});
|
|
837
|
+
},
|
|
838
|
+
getMenuKindAuth() {
|
|
839
|
+
let menuKindCode = this.reportTemplate?.menuKindCode;
|
|
840
|
+
if (menuKindCode) {
|
|
841
|
+
this.$http({
|
|
842
|
+
aes: true,
|
|
843
|
+
url: USER_PREFIX + "/menu_kind_auth/getAuth",
|
|
844
|
+
method: `post`,
|
|
845
|
+
data: { stringOne: menuKindCode },
|
|
846
|
+
isLoading: true,
|
|
847
|
+
success: (res) => {
|
|
848
|
+
this.menuKindAuth = res.objx || {};
|
|
849
|
+
},
|
|
850
|
+
});
|
|
851
|
+
}
|
|
852
|
+
},
|
|
853
|
+
getFieldKeyName(widget) {
|
|
854
|
+
let o = widget.options.name;
|
|
855
|
+
return (widget.options.keyNameEnabled && widget.options.keyName) || o;
|
|
856
|
+
},
|
|
857
|
+
//TODO: 增加更多方法!!
|
|
858
|
+
},
|
|
859
|
+
};
|
|
860
|
+
export default modules;
|