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
|
@@ -54,6 +54,9 @@ modules = {
|
|
|
54
54
|
...this.param,
|
|
55
55
|
};
|
|
56
56
|
},
|
|
57
|
+
callback: (rows) => {
|
|
58
|
+
this.restoreChecked(rows);
|
|
59
|
+
},
|
|
57
60
|
columns: [
|
|
58
61
|
{ type: "checkbox", width: 48, resizable: false, fixed: "left" },
|
|
59
62
|
{
|
|
@@ -111,6 +114,35 @@ modules = {
|
|
|
111
114
|
that.vxeOption = opts;
|
|
112
115
|
});
|
|
113
116
|
},
|
|
117
|
+
/**
|
|
118
|
+
* 列表每次查询完,把已选中的字段重新勾上。
|
|
119
|
+
*
|
|
120
|
+
* selectDialogMixins.initSetting 只把 rows 播种进 checkRows(右侧已选列表),
|
|
121
|
+
* 表格自身的勾选状态没人恢复 —— 不补这一步,弹框打开时左边一个勾都没有,
|
|
122
|
+
* 用户再勾一个新字段就会把原有的显示字段整组顶掉。
|
|
123
|
+
*/
|
|
124
|
+
restoreChecked(rows) {
|
|
125
|
+
let checkRows = this.checkRows;
|
|
126
|
+
if (!checkRows || !checkRows.length || !rows || !rows.length) {
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
129
|
+
let fieldKey = this.fieldKey;
|
|
130
|
+
let keys = checkRows.map((item) => item[fieldKey]);
|
|
131
|
+
let targetRows = rows.filter((row) => keys.includes(row[fieldKey]));
|
|
132
|
+
if (!targetRows.length) {
|
|
133
|
+
return;
|
|
134
|
+
}
|
|
135
|
+
// 回填进来的可能只是 { taZdMc } 这样的占位行,用列表里的真实行替换掉,
|
|
136
|
+
// 保证「确定」抛给调用方的是带 zdEn / zdCh 的完整数据
|
|
137
|
+
this.checkRows = checkRows.map((item) => {
|
|
138
|
+
let real = targetRows.find((row) => row[fieldKey] === item[fieldKey]);
|
|
139
|
+
return real || item;
|
|
140
|
+
});
|
|
141
|
+
let $grid = this.$refs[this.defaultTableRefName];
|
|
142
|
+
if ($grid && $grid.setCheckboxRow) {
|
|
143
|
+
$grid.setCheckboxRow(targetRows, true);
|
|
144
|
+
}
|
|
145
|
+
},
|
|
114
146
|
},
|
|
115
147
|
};
|
|
116
148
|
export default modules;
|
|
@@ -3,87 +3,149 @@
|
|
|
3
3
|
<el-form ref="editForm" :model="companyInfo">
|
|
4
4
|
<div class="d-header clearfix">
|
|
5
5
|
<div class="fl">
|
|
6
|
-
<i class="el-icon-info"/>
|
|
7
|
-
{{ $t1(
|
|
6
|
+
<i class="el-icon-info" />
|
|
7
|
+
{{ $t1("查看组织信息") }}
|
|
8
8
|
</div>
|
|
9
9
|
<div class="fr">
|
|
10
|
-
<el-button
|
|
11
|
-
|
|
10
|
+
<el-button
|
|
11
|
+
type="primary"
|
|
12
|
+
plain
|
|
13
|
+
class="button-sty"
|
|
14
|
+
@click="$baseReload()"
|
|
15
|
+
icon="el-icon-refresh-right"
|
|
16
|
+
>
|
|
17
|
+
{{ $t1("重置") }}
|
|
12
18
|
</el-button>
|
|
13
|
-
<el-button
|
|
19
|
+
<el-button
|
|
20
|
+
type="primary"
|
|
21
|
+
class="button-sty"
|
|
22
|
+
icon="el-icon-check"
|
|
23
|
+
@click="saveData"
|
|
24
|
+
>{{ $t1("保存") }}
|
|
14
25
|
</el-button>
|
|
15
26
|
</div>
|
|
16
27
|
</div>
|
|
17
28
|
<div class="d-cont">
|
|
18
29
|
<div class="d-item">
|
|
19
|
-
<div class="title first"
|
|
30
|
+
<div class="title first">
|
|
31
|
+
<b>{{ $t1("基本信息") }}</b>
|
|
32
|
+
</div>
|
|
20
33
|
<table class="table-detail">
|
|
21
34
|
<tbody>
|
|
22
|
-
|
|
23
|
-
<
|
|
24
|
-
<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<
|
|
29
|
-
<el-
|
|
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
|
-
|
|
35
|
+
<tr></tr>
|
|
36
|
+
<tr>
|
|
37
|
+
<th>
|
|
38
|
+
<em class="f-red">*</em>
|
|
39
|
+
{{ $t1("组织全称") }}
|
|
40
|
+
</th>
|
|
41
|
+
<td>
|
|
42
|
+
<el-form-item
|
|
43
|
+
prop="companyName"
|
|
44
|
+
:rules="[{ required: true, trigger: 'blur' }]"
|
|
45
|
+
>
|
|
46
|
+
<el-input
|
|
47
|
+
type="text"
|
|
48
|
+
autocomplete="off"
|
|
49
|
+
v-model="companyInfo.companyName"
|
|
50
|
+
clearable
|
|
51
|
+
/>
|
|
52
|
+
</el-form-item>
|
|
53
|
+
</td>
|
|
54
|
+
<th>
|
|
55
|
+
<em class="f-red">*</em>
|
|
56
|
+
{{ $t1("组织简称") }}
|
|
57
|
+
</th>
|
|
58
|
+
<td>
|
|
59
|
+
<el-form-item
|
|
60
|
+
prop="simpleName"
|
|
61
|
+
:rules="[{ required: true, trigger: 'blur' }]"
|
|
62
|
+
>
|
|
63
|
+
<el-input
|
|
64
|
+
type="text"
|
|
65
|
+
autocomplete="off"
|
|
66
|
+
v-model="companyInfo.simpleName"
|
|
67
|
+
clearable
|
|
68
|
+
/>
|
|
69
|
+
</el-form-item>
|
|
70
|
+
</td>
|
|
71
|
+
<th>
|
|
72
|
+
<em class="f-red">*</em>
|
|
73
|
+
{{ $t1("组织编码") }}
|
|
74
|
+
</th>
|
|
75
|
+
<td>{{ companyInfo.companyCode }}</td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr></tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<th>
|
|
80
|
+
{{ $t1("组织默认首页") }}
|
|
81
|
+
</th>
|
|
82
|
+
<td colspan="3">
|
|
83
|
+
<el-form-item
|
|
84
|
+
prop="defaultHomePage"
|
|
85
|
+
:rules="[{ required: false, trigger: 'blur' }]"
|
|
86
|
+
>
|
|
87
|
+
<el-input
|
|
88
|
+
type="text"
|
|
89
|
+
autocomplete="off"
|
|
90
|
+
v-model="companyInfo.defaultHomePage"
|
|
91
|
+
clearable
|
|
92
|
+
/>
|
|
93
|
+
</el-form-item>
|
|
94
|
+
</td>
|
|
95
|
+
<th>{{ $t1("环境编码") }}</th>
|
|
96
|
+
<td>
|
|
97
|
+
<el-form-item prop="envCode">
|
|
98
|
+
<el-input
|
|
99
|
+
type="text"
|
|
100
|
+
autocomplete="off"
|
|
101
|
+
v-model="companyInfo.envCode"
|
|
102
|
+
clearable
|
|
103
|
+
/>
|
|
104
|
+
</el-form-item>
|
|
105
|
+
</td>
|
|
106
|
+
</tr>
|
|
107
|
+
<tr>
|
|
108
|
+
<th>{{ $t1("备注") }}</th>
|
|
109
|
+
<td colspan="5">
|
|
110
|
+
<el-input
|
|
111
|
+
type="textarea"
|
|
112
|
+
:rows="2"
|
|
113
|
+
:placeholder="$t1('请输入内容')"
|
|
114
|
+
size="small"
|
|
115
|
+
v-model="companyInfo.note"
|
|
116
|
+
clearable
|
|
117
|
+
></el-input>
|
|
118
|
+
</td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<th>logo</th>
|
|
122
|
+
<td colspan="5">
|
|
123
|
+
<baseUpload
|
|
124
|
+
:limit="1"
|
|
125
|
+
accept="image/png, image/jpeg"
|
|
126
|
+
multi="false"
|
|
127
|
+
:file.sync="companyInfo.logoUrl"
|
|
128
|
+
dataType="medium"
|
|
129
|
+
></baseUpload>
|
|
130
|
+
</td>
|
|
131
|
+
</tr>
|
|
132
|
+
<tr>
|
|
133
|
+
<th>
|
|
134
|
+
<em class="f-red">*</em>
|
|
135
|
+
{{ $t1("组织唯一标志") }}
|
|
136
|
+
</th>
|
|
137
|
+
<td colspan="3">{{ companyInfo.uniqueIdentify }}</td>
|
|
138
|
+
</tr>
|
|
139
|
+
<tr>
|
|
140
|
+
<th>{{ $t1("创建人") }}</th>
|
|
141
|
+
<td>{{ companyInfo.createBy }}</td>
|
|
142
|
+
<th>{{ $t1("创建时间") }}</th>
|
|
143
|
+
<td>{{ companyInfo.createDate }}</td>
|
|
144
|
+
<th>{{ $t1("更新人") }}</th>
|
|
145
|
+
<td>{{ companyInfo.modifyBy }}</td>
|
|
146
|
+
<th>{{ $t1("更新时间") }}</th>
|
|
147
|
+
<td>{{ companyInfo.modifyDate }}</td>
|
|
148
|
+
</tr>
|
|
87
149
|
</tbody>
|
|
88
150
|
</table>
|
|
89
151
|
</div>
|
|
@@ -94,7 +156,7 @@
|
|
|
94
156
|
|
|
95
157
|
<script>
|
|
96
158
|
export default {
|
|
97
|
-
name:
|
|
159
|
+
name: "company_info:view",
|
|
98
160
|
components: {},
|
|
99
161
|
data() {
|
|
100
162
|
return {
|
|
@@ -102,11 +164,10 @@ export default {
|
|
|
102
164
|
isEdit: false,
|
|
103
165
|
companyInfo: {},
|
|
104
166
|
showAreaDialog: false,
|
|
105
|
-
activeName:
|
|
167
|
+
activeName: "first",
|
|
106
168
|
};
|
|
107
169
|
},
|
|
108
|
-
created() {
|
|
109
|
-
},
|
|
170
|
+
created() {},
|
|
110
171
|
mounted() {
|
|
111
172
|
this.getData();
|
|
112
173
|
},
|
|
@@ -114,43 +175,43 @@ export default {
|
|
|
114
175
|
getData() {
|
|
115
176
|
this.isEdit = true;
|
|
116
177
|
this.$commonHttp({
|
|
117
|
-
url: USER_PREFIX +
|
|
178
|
+
url: USER_PREFIX + "/company_info/getCurrent",
|
|
118
179
|
method: `post`,
|
|
119
180
|
isLoading: true,
|
|
120
181
|
modalStrictly: true,
|
|
121
|
-
success: res => {
|
|
182
|
+
success: (res) => {
|
|
122
183
|
this.companyInfo = res.objx || {};
|
|
123
|
-
}
|
|
184
|
+
},
|
|
124
185
|
});
|
|
125
186
|
},
|
|
126
187
|
saveData() {
|
|
127
|
-
this.$refs.editForm.$baseValidate(valid => {
|
|
188
|
+
this.$refs.editForm.$baseValidate((valid) => {
|
|
128
189
|
if (valid) {
|
|
129
|
-
this.$baseConfirm(this.$t1(
|
|
130
|
-
var url = USER_PREFIX +
|
|
190
|
+
this.$baseConfirm(this.$t1("您确定要保存吗?")).then(() => {
|
|
191
|
+
var url = USER_PREFIX + "/company_info/update";
|
|
131
192
|
this.$http({
|
|
132
193
|
url: url,
|
|
133
194
|
method: `post`,
|
|
134
195
|
data: this.companyInfo,
|
|
135
196
|
isLoading: true,
|
|
136
|
-
success: res => {
|
|
197
|
+
success: (res) => {
|
|
137
198
|
if (this.isEdit) {
|
|
138
199
|
//更新
|
|
139
200
|
this.$message({
|
|
140
201
|
message: res.content,
|
|
141
|
-
type:
|
|
202
|
+
type: "success",
|
|
142
203
|
duration: 500,
|
|
143
|
-
onClose: t => {
|
|
204
|
+
onClose: (t) => {
|
|
144
205
|
this.$baseReload();
|
|
145
|
-
}
|
|
206
|
+
},
|
|
146
207
|
});
|
|
147
208
|
}
|
|
148
|
-
}
|
|
209
|
+
},
|
|
149
210
|
});
|
|
150
211
|
});
|
|
151
212
|
}
|
|
152
213
|
});
|
|
153
|
-
}
|
|
154
|
-
}
|
|
214
|
+
},
|
|
215
|
+
},
|
|
155
216
|
};
|
|
156
217
|
</script>
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<div class="clearfix screen-btns">
|
|
28
28
|
<div class="fr">
|
|
29
29
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain>{{ $t1('
|
|
30
|
+
plain>{{ $t1('刷新') }}
|
|
31
31
|
</vxe-button>
|
|
32
32
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
33
33
|
{{ $t1('搜索') }}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
</div>
|
|
22
22
|
<div class="fr">
|
|
23
23
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
24
|
-
plain>{{$t1('
|
|
24
|
+
plain>{{$t1('刷新')}}
|
|
25
25
|
</vxe-button>
|
|
26
26
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{ $t1('搜索') }}
|
|
27
27
|
</vxe-button>
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
</div>
|
|
54
54
|
<div class="fr">
|
|
55
55
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
56
|
-
plain>{{$t1('
|
|
56
|
+
plain>{{$t1('刷新')}}
|
|
57
57
|
</vxe-button>
|
|
58
58
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{ $t1('搜索') }}
|
|
59
59
|
</vxe-button>
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<div class="clearfix screen-btns">
|
|
28
28
|
<div class="fr">
|
|
29
29
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain>{{$t1('
|
|
30
|
+
plain>{{$t1('刷新')}}
|
|
31
31
|
</vxe-button>
|
|
32
32
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
33
33
|
{{ $t1('搜索') }}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<div class="clearfix screen-btns">
|
|
28
28
|
<div class="fr">
|
|
29
29
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain>{{ $t1('
|
|
30
|
+
plain>{{ $t1('刷新') }}
|
|
31
31
|
</vxe-button>
|
|
32
32
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
33
33
|
{{ $t1('搜索') }}
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
</div>
|
|
19
19
|
<div class="fr">
|
|
20
20
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
21
|
-
plain>{{ $t1('
|
|
21
|
+
plain>{{ $t1('刷新') }}
|
|
22
22
|
</vxe-button>
|
|
23
23
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
24
24
|
{{ $t1('搜索') }}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<div class="clearfix screen-btns">
|
|
28
28
|
<div class="fr">
|
|
29
29
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain>{{ $t1('
|
|
30
|
+
plain>{{ $t1('刷新') }}
|
|
31
31
|
</vxe-button>
|
|
32
32
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
33
33
|
{{ $t1('搜索') }}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
</div>
|
|
21
21
|
<div class="fr">
|
|
22
22
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
23
|
-
plain>{{ $t1('
|
|
23
|
+
plain>{{ $t1('刷新') }}
|
|
24
24
|
</vxe-button>
|
|
25
25
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
26
26
|
{{ $t1('搜索') }}
|
|
@@ -30,6 +30,7 @@ export default {
|
|
|
30
30
|
name: "vform-designer:edit",
|
|
31
31
|
props: {
|
|
32
32
|
formCode: String,
|
|
33
|
+
id: [String, Number],
|
|
33
34
|
readonly: Boolean,
|
|
34
35
|
formTemplate: Object,
|
|
35
36
|
widgetList: Array,
|
|
@@ -106,28 +107,56 @@ export default {
|
|
|
106
107
|
this.$refs.designer.setFormJson(this.reportTemplate.formViewContent);
|
|
107
108
|
});
|
|
108
109
|
} else {
|
|
109
|
-
this
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
this
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
110
|
+
let id = this.id || this.formTemplate?.id;
|
|
111
|
+
if (id) {
|
|
112
|
+
this.$http({
|
|
113
|
+
aes: true,
|
|
114
|
+
url: USER_PREFIX + `/formTemplate/get`,
|
|
115
|
+
method: `post`,
|
|
116
|
+
data: {
|
|
117
|
+
id,
|
|
118
|
+
},
|
|
119
|
+
isLoading: true,
|
|
120
|
+
modalStrictly: true,
|
|
121
|
+
success: (res) => {
|
|
122
|
+
if (!res.objx) {
|
|
123
|
+
this.$baseAlert(this.$t1("获取报表模板失败"));
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
let reportTemplate = res.objx || {};
|
|
127
|
+
this.reportTemplate = reportTemplate;
|
|
128
|
+
this.showDesinger = true;
|
|
129
|
+
this.$nextTick(() => {
|
|
130
|
+
this.$refs.designer.setFormJson(reportTemplate.formViewContent);
|
|
131
|
+
});
|
|
132
|
+
},
|
|
133
|
+
});
|
|
134
|
+
} else if (this.formCode) {
|
|
135
|
+
this.$http({
|
|
136
|
+
aes: true,
|
|
137
|
+
url: USER_PREFIX + `/formTemplate/getByFormCode`,
|
|
138
|
+
method: `post`,
|
|
139
|
+
data: {
|
|
140
|
+
stringOne: this.formCode,
|
|
141
|
+
},
|
|
142
|
+
isLoading: true,
|
|
143
|
+
modalStrictly: true,
|
|
144
|
+
success: (res) => {
|
|
145
|
+
if (!res.objx) {
|
|
146
|
+
this.$baseAlert(this.$t1("获取报表模板失败"));
|
|
147
|
+
return;
|
|
148
|
+
}
|
|
149
|
+
let reportTemplate = res.objx || {};
|
|
150
|
+
this.reportTemplate = reportTemplate;
|
|
151
|
+
this.showDesinger = true;
|
|
152
|
+
this.$nextTick(() => {
|
|
153
|
+
this.$refs.designer.setFormJson(reportTemplate.formViewContent);
|
|
154
|
+
});
|
|
155
|
+
},
|
|
156
|
+
});
|
|
157
|
+
} else {
|
|
158
|
+
this.$baseAlert(this.$t1("获取报表模板失败"));
|
|
159
|
+
}
|
|
131
160
|
}
|
|
132
161
|
},
|
|
133
162
|
loadFieldListData(res) {
|
|
@@ -18,8 +18,10 @@
|
|
|
18
18
|
visible-key="showRender"
|
|
19
19
|
:visiable.sync="showRender"
|
|
20
20
|
:parent-target="_self"
|
|
21
|
-
@reload="
|
|
22
|
-
:dataId
|
|
21
|
+
@reload="forwardReload"
|
|
22
|
+
:dataId="dataId"
|
|
23
|
+
@update:dataId="$emit('update:dataId', $event)"
|
|
24
|
+
@update:formCode="$emit('update:formCode', $event)"
|
|
23
25
|
:param="param"
|
|
24
26
|
v-bind="$attrs"
|
|
25
27
|
@openCopyEditTab="openCopyEditTab"
|
|
@@ -59,6 +61,19 @@ export default {
|
|
|
59
61
|
this.getReportTemplate();
|
|
60
62
|
},
|
|
61
63
|
methods: {
|
|
64
|
+
forwardReload(target, option) {
|
|
65
|
+
let reloadListener = this.$listeners?.reload;
|
|
66
|
+
if (Array.isArray(reloadListener)) {
|
|
67
|
+
return Promise.all(
|
|
68
|
+
reloadListener.map((listener) => listener(this, option))
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
if (typeof reloadListener === "function") {
|
|
72
|
+
return reloadListener(this, option);
|
|
73
|
+
}
|
|
74
|
+
this.$emit("reload", this, option);
|
|
75
|
+
return Promise.resolve();
|
|
76
|
+
},
|
|
62
77
|
dataTableSearch() {
|
|
63
78
|
let gridRef = this.$refs.vFormRef.getGridWidgetRef()
|
|
64
79
|
if(!gridRef)return
|
|
@@ -105,6 +120,10 @@ export default {
|
|
|
105
120
|
this.formJson = formTemplate.formViewContent
|
|
106
121
|
? JSON.parse(formTemplate.formViewContent)
|
|
107
122
|
: {};
|
|
123
|
+
if (!this.formJson.formConfig) {
|
|
124
|
+
this.$message.error(`表单模板不存在或内容为空: ${this.formCode}`);
|
|
125
|
+
return;
|
|
126
|
+
}
|
|
108
127
|
this.layoutType = this.formJson.formConfig.layoutType;
|
|
109
128
|
this.getFormInsData2();
|
|
110
129
|
},
|
|
@@ -142,27 +161,6 @@ export default {
|
|
|
142
161
|
this.showRender = true;
|
|
143
162
|
}
|
|
144
163
|
},
|
|
145
|
-
async getFormInsData() {
|
|
146
|
-
let formConfig = this.formJson.formConfig;
|
|
147
|
-
let getConfig = formConfig.getConfig || {};
|
|
148
|
-
let dataId = this.dataId;
|
|
149
|
-
if (dataId) {
|
|
150
|
-
let reqParam = { id: dataId };
|
|
151
|
-
let accessParamArguments = [{ name: "id", value: dataId }];
|
|
152
|
-
this.scriptHttp({
|
|
153
|
-
options: getConfig,
|
|
154
|
-
params: reqParam,
|
|
155
|
-
targetFormTemplate: this.formTemplate,
|
|
156
|
-
accessParamArguments: accessParamArguments,
|
|
157
|
-
success: (res) => {
|
|
158
|
-
let formData = res.objx || {};
|
|
159
|
-
this.formData = formData;
|
|
160
|
-
this.formInsData = res.objx;
|
|
161
|
-
this.showRender = true;
|
|
162
|
-
},
|
|
163
|
-
});
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
164
|
openCopyEditTab(formData) {
|
|
167
165
|
this.$emit("openCopyEditTab", formData);
|
|
168
166
|
},
|