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,20 +1,38 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="toolbar-container">
|
|
3
3
|
<div class="left-toolbar">
|
|
4
|
-
<el-button
|
|
5
|
-
|
|
4
|
+
<el-button
|
|
5
|
+
type="text"
|
|
6
|
+
:disabled="undoDisabled"
|
|
7
|
+
:title="i18nt('designer.toolbar.undoHint')"
|
|
8
|
+
@click="undoHistory"
|
|
9
|
+
>
|
|
10
|
+
<svg-icon icon-class="undo" />
|
|
6
11
|
</el-button>
|
|
7
|
-
<el-button
|
|
8
|
-
|
|
12
|
+
<el-button
|
|
13
|
+
type="text"
|
|
14
|
+
:disabled="redoDisabled"
|
|
15
|
+
:title="i18nt('designer.toolbar.redoHint')"
|
|
16
|
+
@click="redoHistory"
|
|
17
|
+
>
|
|
18
|
+
<svg-icon icon-class="redo" />
|
|
9
19
|
</el-button>
|
|
10
|
-
<el-button-group>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
20
|
+
<el-button-group v-if="$store.getters.loginAccount === 'dev_徐凯'">
|
|
21
|
+
<el-button
|
|
22
|
+
:type="layoutType === 'PC' ? 'info' : ''"
|
|
23
|
+
@click="changeLayoutType('PC')"
|
|
24
|
+
size="mini"
|
|
25
|
+
>
|
|
26
|
+
{{ i18nt("designer.toolbar.pcLayout") }}
|
|
27
|
+
</el-button>
|
|
14
28
|
<!-- <el-button :type="layoutType === 'Pad' ? 'info' : ''" @click="changeLayoutType('Pad')">{{ i18nt('designer.toolbar.padLayout') }}</el-button>-->
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
29
|
+
<el-button
|
|
30
|
+
:type="layoutType === 'H5' ? 'info' : ''"
|
|
31
|
+
@click="changeLayoutType('H5')"
|
|
32
|
+
size="mini"
|
|
33
|
+
>
|
|
34
|
+
{{ i18nt("designer.toolbar.mobileLayout") }}
|
|
35
|
+
</el-button>
|
|
18
36
|
</el-button-group>
|
|
19
37
|
<!-- <el-button type="" style="margin-left: 20px" :title="i18nt('designer.toolbar.nodeTreeHint')" @click="showNodeTreeDrawer"><svg-icon icon-class="node-tree" /></el-button>-->
|
|
20
38
|
</div>
|
|
@@ -46,26 +64,50 @@
|
|
|
46
64
|
<i class="iconfont icon-liebiaoshezhi-list-setting"/>
|
|
47
65
|
表单/列表设置
|
|
48
66
|
</el-button>-->
|
|
49
|
-
<el-button
|
|
50
|
-
|
|
51
|
-
|
|
67
|
+
<el-button
|
|
68
|
+
type="primary"
|
|
69
|
+
@click="saveReportTemplate()"
|
|
70
|
+
plain
|
|
71
|
+
v-if="
|
|
72
|
+
designer.vueInstance.isDev &&
|
|
73
|
+
designer.vueInstance.menuKindAuth.editAuth === 1 &&
|
|
74
|
+
!readonly
|
|
75
|
+
"
|
|
76
|
+
>
|
|
77
|
+
<i class="el-icon-check" />
|
|
52
78
|
保存
|
|
53
79
|
</el-button>
|
|
54
80
|
<el-divider direction="vertical"></el-divider>
|
|
55
|
-
<el-button
|
|
56
|
-
|
|
57
|
-
|
|
81
|
+
<el-button
|
|
82
|
+
v-if="showToolButton('clearDesignerButton') && !readonly"
|
|
83
|
+
type="text"
|
|
84
|
+
@click="clearFormWidget"
|
|
85
|
+
>
|
|
86
|
+
<i class="el-icon-delete" />
|
|
87
|
+
{{ i18nt("designer.toolbar.clear") }}
|
|
58
88
|
</el-button>
|
|
59
|
-
<el-button
|
|
60
|
-
|
|
61
|
-
|
|
89
|
+
<el-button
|
|
90
|
+
v-if="showToolButton('previewFormButton')"
|
|
91
|
+
type="text"
|
|
92
|
+
@click="previewForm"
|
|
93
|
+
>
|
|
94
|
+
<i class="el-icon-view" />
|
|
95
|
+
{{ i18nt("designer.toolbar.preview") }}
|
|
62
96
|
</el-button>
|
|
63
97
|
<el-divider direction="vertical"></el-divider>
|
|
64
|
-
<el-button
|
|
65
|
-
|
|
98
|
+
<el-button
|
|
99
|
+
v-if="showToolButton('importJsonButton') && !readonly"
|
|
100
|
+
type="text"
|
|
101
|
+
@click="importJson"
|
|
102
|
+
>
|
|
103
|
+
{{ i18nt("designer.toolbar.importJson") }}
|
|
66
104
|
</el-button>
|
|
67
|
-
<el-button
|
|
68
|
-
|
|
105
|
+
<el-button
|
|
106
|
+
v-if="showToolButton('exportJsonButton')"
|
|
107
|
+
type="text"
|
|
108
|
+
@click="exportJson"
|
|
109
|
+
>
|
|
110
|
+
{{ i18nt("designer.toolbar.exportJson") }}
|
|
69
111
|
</el-button>
|
|
70
112
|
<!--<el-button v-if="showToolButton('exportCodeButton')" type="text" @click="exportCode">{{ i18nt('designer.toolbar.exportCode') }}</el-button>
|
|
71
113
|
<el-button v-if="showToolButton('generateSFCButton')" type="text" @click="generateSFC">
|
|
@@ -92,12 +134,21 @@
|
|
|
92
134
|
:modal-append-to-body="true"
|
|
93
135
|
class="small-padding-dialog preview-dialog"
|
|
94
136
|
width="75%"
|
|
95
|
-
:fullscreen=
|
|
96
|
-
@close="showPreviewDialogFlag=false"
|
|
137
|
+
:fullscreen="true"
|
|
138
|
+
@close="showPreviewDialogFlag = false"
|
|
97
139
|
>
|
|
98
140
|
<div>
|
|
99
|
-
<div
|
|
100
|
-
|
|
141
|
+
<div
|
|
142
|
+
class="form-render-wrapper"
|
|
143
|
+
id="containt"
|
|
144
|
+
:class="[
|
|
145
|
+
layoutType === 'H5'
|
|
146
|
+
? 'h5-layout'
|
|
147
|
+
: layoutType === 'Pad'
|
|
148
|
+
? 'pad-layout'
|
|
149
|
+
: '',
|
|
150
|
+
]"
|
|
151
|
+
>
|
|
101
152
|
<VFormRender
|
|
102
153
|
ref="preForm"
|
|
103
154
|
:form-json="formJson"
|
|
@@ -108,7 +159,10 @@
|
|
|
108
159
|
@buttonClick="testOnButtonClick"
|
|
109
160
|
@formChange="handleFormChange"
|
|
110
161
|
:reportTemplate.sync="reportTemplate"
|
|
111
|
-
v-if="showRender"
|
|
162
|
+
v-if="showRender"
|
|
163
|
+
visible-key="showRender"
|
|
164
|
+
:parent-target="_self"
|
|
165
|
+
@reload="$reloadHandle"
|
|
112
166
|
>
|
|
113
167
|
<!--
|
|
114
168
|
<div slot="testSlot">aaaa</div>
|
|
@@ -239,10 +293,18 @@
|
|
|
239
293
|
<el-button type="primary" @click="setFormDisabled" class="button-sty">{{ i18nt('designer.hint.disableForm') }}</el-button>
|
|
240
294
|
<el-button type="primary" @click="setFormEnabled" class="button-sty">{{ i18nt('designer.hint.enableForm') }}</el-button>
|
|
241
295
|
<el-button type="" @click="showPreviewDialogFlag = false" class="button-sty">{{ i18nt('designer.hint.closePreview') }}</el-button> -->
|
|
242
|
-
<el-button v-if="false" @click="printFormJson" class="button-sty"
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
<el-button @click="
|
|
296
|
+
<el-button v-if="false" @click="printFormJson" class="button-sty"
|
|
297
|
+
>PrintFormJson</el-button
|
|
298
|
+
>
|
|
299
|
+
<el-button v-if="false" @click="testValidate" class="button-sty"
|
|
300
|
+
>TestValidate</el-button
|
|
301
|
+
>
|
|
302
|
+
<el-button v-if="false" @click="testSetFormData" class="button-sty"
|
|
303
|
+
>TestSF</el-button
|
|
304
|
+
>
|
|
305
|
+
<el-button @click="$refs['preForm'].saveForm()" class="button-sty"
|
|
306
|
+
>测试保存</el-button
|
|
307
|
+
>
|
|
246
308
|
</div>
|
|
247
309
|
</el-dialog>
|
|
248
310
|
|
|
@@ -260,16 +322,23 @@
|
|
|
260
322
|
:append-to-body="true"
|
|
261
323
|
:modal-append-to-body="true"
|
|
262
324
|
>
|
|
263
|
-
<el-alert
|
|
264
|
-
|
|
325
|
+
<el-alert
|
|
326
|
+
type="info"
|
|
327
|
+
:title="i18nt('designer.hint.importJsonHint')"
|
|
328
|
+
show-icon
|
|
329
|
+
class="alert-padding"
|
|
330
|
+
></el-alert>
|
|
331
|
+
<code-editor
|
|
332
|
+
:mode="'json'"
|
|
333
|
+
:readonly="false"
|
|
334
|
+
v-model="importTemplate"
|
|
335
|
+
></code-editor>
|
|
265
336
|
<div slot="footer" class="dialog-footer">
|
|
266
|
-
<el-button type="primary" @click="doJsonImport" class="button-sty"
|
|
267
|
-
|
|
268
|
-
}}
|
|
337
|
+
<el-button type="primary" @click="doJsonImport" class="button-sty"
|
|
338
|
+
>{{ i18nt("designer.hint.import") }}
|
|
269
339
|
</el-button>
|
|
270
|
-
<el-button @click="showImportJsonDialogFlag = false" class="button-sty"
|
|
271
|
-
|
|
272
|
-
}}
|
|
340
|
+
<el-button @click="showImportJsonDialogFlag = false" class="button-sty"
|
|
341
|
+
>{{ i18nt("designer.hint.cancel") }}
|
|
273
342
|
</el-button>
|
|
274
343
|
</div>
|
|
275
344
|
</el-dialog>
|
|
@@ -288,14 +357,28 @@
|
|
|
288
357
|
:append-to-body="true"
|
|
289
358
|
:modal-append-to-body="true"
|
|
290
359
|
>
|
|
291
|
-
<code-editor
|
|
360
|
+
<code-editor
|
|
361
|
+
:mode="'json'"
|
|
362
|
+
:readonly="true"
|
|
363
|
+
v-model="jsonContent"
|
|
364
|
+
></code-editor>
|
|
292
365
|
<div slot="footer" class="dialog-footer">
|
|
293
|
-
<el-button
|
|
294
|
-
|
|
366
|
+
<el-button
|
|
367
|
+
type="primary"
|
|
368
|
+
class="copy-json-btn button-sty"
|
|
369
|
+
:data-clipboard-text="jsonRawContent"
|
|
370
|
+
@click="copyFormJson"
|
|
371
|
+
>{{ i18nt("designer.hint.copyJson") }}
|
|
295
372
|
</el-button>
|
|
296
|
-
<el-button @click="saveFormJson" class="button-sty">{{
|
|
297
|
-
|
|
298
|
-
|
|
373
|
+
<el-button @click="saveFormJson" class="button-sty">{{
|
|
374
|
+
i18nt("designer.hint.saveFormJson")
|
|
375
|
+
}}</el-button>
|
|
376
|
+
<el-button
|
|
377
|
+
type=""
|
|
378
|
+
@click="showExportJsonDialogFlag = false"
|
|
379
|
+
class="button-sty"
|
|
380
|
+
>
|
|
381
|
+
{{ i18nt("designer.hint.closePreview") }}
|
|
299
382
|
</el-button>
|
|
300
383
|
</div>
|
|
301
384
|
</el-dialog>
|
|
@@ -315,25 +398,56 @@
|
|
|
315
398
|
:append-to-body="true"
|
|
316
399
|
:modal-append-to-body="true"
|
|
317
400
|
>
|
|
318
|
-
<el-tabs
|
|
401
|
+
<el-tabs
|
|
402
|
+
type="border-card"
|
|
403
|
+
class="no-box-shadow no-padding"
|
|
404
|
+
v-model="activeCodeTab"
|
|
405
|
+
>
|
|
319
406
|
<el-tab-pane label="Vue" name="vue">
|
|
320
|
-
<code-editor
|
|
407
|
+
<code-editor
|
|
408
|
+
:mode="'html'"
|
|
409
|
+
:readonly="true"
|
|
410
|
+
v-model="vueCode"
|
|
411
|
+
:user-worker="false"
|
|
412
|
+
></code-editor>
|
|
321
413
|
</el-tab-pane>
|
|
322
414
|
<el-tab-pane label="HTML" name="html">
|
|
323
|
-
<code-editor
|
|
415
|
+
<code-editor
|
|
416
|
+
:mode="'html'"
|
|
417
|
+
:readonly="true"
|
|
418
|
+
v-model="htmlCode"
|
|
419
|
+
:user-worker="false"
|
|
420
|
+
></code-editor>
|
|
324
421
|
</el-tab-pane>
|
|
325
422
|
</el-tabs>
|
|
326
423
|
<div slot="footer" class="dialog-footer">
|
|
327
|
-
<el-button
|
|
328
|
-
|
|
424
|
+
<el-button
|
|
425
|
+
type="primary"
|
|
426
|
+
class="copy-vue-btn button-sty"
|
|
427
|
+
:data-clipboard-text="vueCode"
|
|
428
|
+
@click="copyVueCode"
|
|
429
|
+
>
|
|
430
|
+
{{ i18nt("designer.hint.copyVueCode") }}
|
|
329
431
|
</el-button>
|
|
330
|
-
<el-button
|
|
331
|
-
|
|
432
|
+
<el-button
|
|
433
|
+
type="primary"
|
|
434
|
+
class="copy-html-btn button-sty"
|
|
435
|
+
:data-clipboard-text="htmlCode"
|
|
436
|
+
@click="copyHtmlCode"
|
|
437
|
+
>{{ i18nt("designer.hint.copyHtmlCode") }}
|
|
332
438
|
</el-button>
|
|
333
|
-
<el-button @click="saveVueCode" class="button-sty">{{
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
439
|
+
<el-button @click="saveVueCode" class="button-sty">{{
|
|
440
|
+
i18nt("designer.hint.saveVueCode")
|
|
441
|
+
}}</el-button>
|
|
442
|
+
<el-button @click="saveHtmlCode" class="button-sty">{{
|
|
443
|
+
i18nt("designer.hint.saveHtmlCode")
|
|
444
|
+
}}</el-button>
|
|
445
|
+
<el-button
|
|
446
|
+
type=""
|
|
447
|
+
@click="showExportCodeDialogFlag = false"
|
|
448
|
+
class="button-sty"
|
|
449
|
+
>
|
|
450
|
+
{{ i18nt("designer.hint.closePreview") }}
|
|
337
451
|
</el-button>
|
|
338
452
|
</div>
|
|
339
453
|
</el-dialog>
|
|
@@ -352,17 +466,31 @@
|
|
|
352
466
|
:append-to-body="true"
|
|
353
467
|
:modal-append-to-body="true"
|
|
354
468
|
>
|
|
355
|
-
<div style="border: 1px solid #
|
|
356
|
-
<code-editor
|
|
469
|
+
<div style="border: 1px solid #dcdfe6">
|
|
470
|
+
<code-editor
|
|
471
|
+
:mode="'json'"
|
|
472
|
+
:readonly="true"
|
|
473
|
+
v-model="formDataJson"
|
|
474
|
+
></code-editor>
|
|
357
475
|
</div>
|
|
358
476
|
<div slot="footer" class="dialog-footer">
|
|
359
|
-
<el-button
|
|
360
|
-
|
|
361
|
-
|
|
477
|
+
<el-button
|
|
478
|
+
type="primary"
|
|
479
|
+
class="copy-form-data-json-btn button-sty"
|
|
480
|
+
:data-clipboard-text="formDataRawJson"
|
|
481
|
+
@click="copyFormDataJson"
|
|
482
|
+
>
|
|
483
|
+
{{ i18nt("designer.hint.copyFormData") }}
|
|
362
484
|
</el-button>
|
|
363
|
-
<el-button @click="saveFormData" class="button-sty">{{
|
|
364
|
-
|
|
365
|
-
|
|
485
|
+
<el-button @click="saveFormData" class="button-sty">{{
|
|
486
|
+
i18nt("designer.hint.saveFormData")
|
|
487
|
+
}}</el-button>
|
|
488
|
+
<el-button
|
|
489
|
+
type=""
|
|
490
|
+
@click="showFormDataDialogFlag = false"
|
|
491
|
+
class="button-sty"
|
|
492
|
+
>
|
|
493
|
+
{{ i18nt("designer.hint.closePreview") }}
|
|
366
494
|
</el-button>
|
|
367
495
|
</div>
|
|
368
496
|
</el-dialog>
|
|
@@ -382,25 +510,55 @@
|
|
|
382
510
|
:append-to-body="true"
|
|
383
511
|
:modal-append-to-body="true"
|
|
384
512
|
>
|
|
385
|
-
<el-tabs
|
|
513
|
+
<el-tabs
|
|
514
|
+
type="border-card"
|
|
515
|
+
class="no-box-shadow no-padding"
|
|
516
|
+
v-model="activeSFCTab"
|
|
517
|
+
>
|
|
386
518
|
<el-tab-pane label="Vue2" name="vue2">
|
|
387
|
-
<code-editor
|
|
519
|
+
<code-editor
|
|
520
|
+
:mode="'html'"
|
|
521
|
+
:readonly="true"
|
|
522
|
+
v-model="sfcCode"
|
|
523
|
+
:user-worker="false"
|
|
524
|
+
></code-editor>
|
|
388
525
|
</el-tab-pane>
|
|
389
526
|
<el-tab-pane label="Vue3" name="vue3">
|
|
390
|
-
<code-editor
|
|
527
|
+
<code-editor
|
|
528
|
+
:mode="'html'"
|
|
529
|
+
:readonly="true"
|
|
530
|
+
v-model="sfcCodeV3"
|
|
531
|
+
:user-worker="false"
|
|
532
|
+
></code-editor>
|
|
391
533
|
</el-tab-pane>
|
|
392
534
|
</el-tabs>
|
|
393
535
|
<div slot="footer" class="dialog-footer">
|
|
394
|
-
<el-button
|
|
395
|
-
|
|
536
|
+
<el-button
|
|
537
|
+
type="primary"
|
|
538
|
+
class="copy-vue2-sfc-btn button-sty"
|
|
539
|
+
:data-clipboard-text="sfcCode"
|
|
540
|
+
@click="copyV2SFC"
|
|
541
|
+
>{{ i18nt("designer.hint.copyVue2SFC") }}
|
|
396
542
|
</el-button>
|
|
397
|
-
<el-button
|
|
398
|
-
|
|
543
|
+
<el-button
|
|
544
|
+
type="primary"
|
|
545
|
+
class="copy-vue3-sfc-btn button-sty"
|
|
546
|
+
:data-clipboard-text="sfcCodeV3"
|
|
547
|
+
@click="copyV3SFC"
|
|
548
|
+
>{{ i18nt("designer.hint.copyVue3SFC") }}
|
|
399
549
|
</el-button>
|
|
400
|
-
<el-button @click="saveV2SFC" class="button-sty">{{
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
550
|
+
<el-button @click="saveV2SFC" class="button-sty">{{
|
|
551
|
+
i18nt("designer.hint.saveVue2SFC")
|
|
552
|
+
}}</el-button>
|
|
553
|
+
<el-button @click="saveV3SFC" class="button-sty">{{
|
|
554
|
+
i18nt("designer.hint.saveVue3SFC")
|
|
555
|
+
}}</el-button>
|
|
556
|
+
<el-button
|
|
557
|
+
type=""
|
|
558
|
+
@click="showExportSFCDialogFlag = false"
|
|
559
|
+
class="button-sty"
|
|
560
|
+
>
|
|
561
|
+
{{ i18nt("designer.hint.closePreview") }}
|
|
404
562
|
</el-button>
|
|
405
563
|
</div>
|
|
406
564
|
</el-dialog>
|
|
@@ -417,9 +575,12 @@
|
|
|
417
575
|
v-el-drag-dialog
|
|
418
576
|
v-el-dialog-center
|
|
419
577
|
>
|
|
420
|
-
<div class="cont" style="height: auto;max-height: 500px
|
|
578
|
+
<div class="cont" style="height: auto; max-height: 500px">
|
|
421
579
|
<el-scrollbar class="setting-scrollbar">
|
|
422
|
-
<form-setting
|
|
580
|
+
<form-setting
|
|
581
|
+
:designer="designer"
|
|
582
|
+
:form-config="designer.formConfig"
|
|
583
|
+
></form-setting>
|
|
423
584
|
</el-scrollbar>
|
|
424
585
|
</div>
|
|
425
586
|
</el-dialog>
|
|
@@ -427,31 +588,31 @@
|
|
|
427
588
|
</template>
|
|
428
589
|
|
|
429
590
|
<script>
|
|
430
|
-
import VFormRender from
|
|
431
|
-
import indexMixin from
|
|
432
|
-
import FormSetting from
|
|
591
|
+
import VFormRender from "../../../../components/xform/form-render/index";
|
|
592
|
+
import indexMixin from "./indexMixin.js";
|
|
593
|
+
import FormSetting from "../../../../components/xform/form-designer/setting-panel/form-setting";
|
|
433
594
|
|
|
434
595
|
export default {
|
|
435
|
-
name:
|
|
596
|
+
name: "ToolbarPanel",
|
|
436
597
|
components: {
|
|
437
598
|
VFormRender,
|
|
438
|
-
FormSetting
|
|
599
|
+
FormSetting,
|
|
439
600
|
},
|
|
440
|
-
inject:["readonly"],
|
|
601
|
+
inject: ["readonly"],
|
|
441
602
|
mixins: [indexMixin],
|
|
442
603
|
data() {
|
|
443
604
|
return {
|
|
444
605
|
defaultProps: {
|
|
445
|
-
label:
|
|
606
|
+
label: "name", //这里是树结构中需显示的数据(即接口返回的需展示在页面上的参数)
|
|
446
607
|
children: [],
|
|
447
|
-
isLeaf:
|
|
608
|
+
isLeaf: "leaf",
|
|
448
609
|
},
|
|
449
610
|
treeOption: {
|
|
450
611
|
title: "机构分类",
|
|
451
612
|
defaultProps: {
|
|
452
|
-
label:
|
|
613
|
+
label: "name",
|
|
453
614
|
children: [],
|
|
454
|
-
isLeaf:
|
|
615
|
+
isLeaf: "leaf",
|
|
455
616
|
},
|
|
456
617
|
url1: "/user/sale_org/getAllList",
|
|
457
618
|
url2: "/user/sale_org/getChildren",
|
|
@@ -465,18 +626,18 @@ export default {
|
|
|
465
626
|
treeNodeParam(row) {
|
|
466
627
|
return {
|
|
467
628
|
parent: row.id,
|
|
468
|
-
enabled: true
|
|
629
|
+
enabled: true,
|
|
469
630
|
};
|
|
470
631
|
},
|
|
471
|
-
}
|
|
472
|
-
}
|
|
632
|
+
},
|
|
633
|
+
};
|
|
473
634
|
},
|
|
474
635
|
methods: {
|
|
475
636
|
handleNodeClick(data, node, v) {
|
|
476
637
|
let treeOption = this.treeOption;
|
|
477
638
|
let formRewriteMap = treeOption.formRewriteMap || {};
|
|
478
639
|
let formData = {};
|
|
479
|
-
Object.keys(formRewriteMap).forEach(key => {
|
|
640
|
+
Object.keys(formRewriteMap).forEach((key) => {
|
|
480
641
|
// this.$set(this.formData, key, data[formRewriteMap[key]]);
|
|
481
642
|
formData[key] = data[formRewriteMap[key]];
|
|
482
643
|
});
|
|
@@ -488,25 +649,27 @@ export default {
|
|
|
488
649
|
// 异步树叶子节点懒加载逻辑
|
|
489
650
|
loadNode(node, resolve) {
|
|
490
651
|
let treeOption = this.treeOption;
|
|
491
|
-
let id = node && node.data && node.data.id ? node.data.id ||
|
|
492
|
-
let param = (treeOption.treeNodeParam
|
|
652
|
+
let id = node && node.data && node.data.id ? node.data.id || "" : "";
|
|
653
|
+
let param = (treeOption.treeNodeParam
|
|
654
|
+
? treeOption.treeNodeParam(node?.data || {})
|
|
655
|
+
: null) || {
|
|
493
656
|
parent: id,
|
|
494
|
-
enabled: true
|
|
657
|
+
enabled: true,
|
|
495
658
|
};
|
|
496
659
|
let url = !id ? treeOption.url1 : treeOption.url2;
|
|
497
660
|
this.$http({
|
|
498
661
|
url: url,
|
|
499
|
-
method:
|
|
662
|
+
method: "post",
|
|
500
663
|
data: param,
|
|
501
|
-
success: res => {
|
|
502
|
-
res.objx.forEach(value => {
|
|
664
|
+
success: (res) => {
|
|
665
|
+
res.objx.forEach((value) => {
|
|
503
666
|
treeOption.preHadnleData(value);
|
|
504
667
|
});
|
|
505
668
|
resolve(res.objx);
|
|
506
|
-
}
|
|
669
|
+
},
|
|
507
670
|
});
|
|
508
671
|
},
|
|
509
|
-
}
|
|
672
|
+
},
|
|
510
673
|
};
|
|
511
674
|
</script>
|
|
512
675
|
|
|
@@ -668,7 +831,7 @@ div.toolbar-container {
|
|
|
668
831
|
}
|
|
669
832
|
|
|
670
833
|
.el-tree-node:before {
|
|
671
|
-
content:
|
|
834
|
+
content: "";
|
|
672
835
|
left: -4px;
|
|
673
836
|
position: absolute;
|
|
674
837
|
right: auto;
|
|
@@ -676,7 +839,7 @@ div.toolbar-container {
|
|
|
676
839
|
}
|
|
677
840
|
|
|
678
841
|
.el-tree-node:after {
|
|
679
|
-
content:
|
|
842
|
+
content: "";
|
|
680
843
|
left: -4px;
|
|
681
844
|
position: absolute;
|
|
682
845
|
right: auto;
|