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,620 +1,646 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
application: {
|
|
3
|
-
"zh-CN": "简体中文",
|
|
4
|
-
"en-US": "English",
|
|
5
|
-
productTitle: "表单设计器",
|
|
6
|
-
github: "GitHub",
|
|
7
|
-
document: "文档",
|
|
8
|
-
qqGroup: "技术WX群",
|
|
9
|
-
deployment: "私有部署",
|
|
10
|
-
subscription: "订阅Pro"
|
|
11
|
-
},
|
|
12
|
-
designer: {
|
|
13
|
-
componentLib: "组件库",
|
|
14
|
-
metadataLib: "通用组件",
|
|
15
|
-
formLib: "表单模板",
|
|
16
|
-
containerTitle: "容器",
|
|
17
|
-
dragHandlerHint: "鼠标拖拽容器组件或字段组件并放置于表单中",
|
|
18
|
-
dragAction: "拖动",
|
|
19
|
-
basicFieldTitle: "基础字段",
|
|
20
|
-
advancedFieldTitle: "高级字段",
|
|
21
|
-
customFieldTitle: "自定义扩展字段",
|
|
22
|
-
noWidgetHint: "请从左侧列表中选择一个组件, 然后用鼠标拖动组件放置于此处.",
|
|
23
|
-
widgetLabel: {
|
|
24
|
-
grid: "栅格",
|
|
25
|
-
table: "表格",
|
|
26
|
-
table2: "动态表格",
|
|
27
|
-
tab: "标签页",
|
|
28
|
-
section: "区块",
|
|
29
|
-
"sub-form": "单行子表单",
|
|
30
|
-
"grid-sub-form": "多行子表单",
|
|
31
|
-
"grid-col": "栅格列",
|
|
32
|
-
"table-cell": "单元格",
|
|
33
|
-
"tab-pane": "选项卡页",
|
|
34
|
-
"data-table": "数据表格",
|
|
35
|
-
"table-column": "表格列",
|
|
36
|
-
"vf-box": "盒子",
|
|
37
|
-
"vf-dialog": "弹出窗口",
|
|
38
|
-
"vf-drawer": "侧滑抽屉",
|
|
39
|
-
input: "单行输入",
|
|
40
|
-
|
|
41
|
-
textarea: "多行输入",
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
formulaPOWER:
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
"
|
|
209
|
-
|
|
210
|
-
"
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
1
|
+
export default {
|
|
2
|
+
application: {
|
|
3
|
+
"zh-CN": "简体中文",
|
|
4
|
+
"en-US": "English",
|
|
5
|
+
productTitle: "表单设计器",
|
|
6
|
+
github: "GitHub",
|
|
7
|
+
document: "文档",
|
|
8
|
+
qqGroup: "技术WX群",
|
|
9
|
+
deployment: "私有部署",
|
|
10
|
+
subscription: "订阅Pro",
|
|
11
|
+
},
|
|
12
|
+
designer: {
|
|
13
|
+
componentLib: "组件库",
|
|
14
|
+
metadataLib: "通用组件",
|
|
15
|
+
formLib: "表单模板",
|
|
16
|
+
containerTitle: "容器",
|
|
17
|
+
dragHandlerHint: "鼠标拖拽容器组件或字段组件并放置于表单中",
|
|
18
|
+
dragAction: "拖动",
|
|
19
|
+
basicFieldTitle: "基础字段",
|
|
20
|
+
advancedFieldTitle: "高级字段",
|
|
21
|
+
customFieldTitle: "自定义扩展字段",
|
|
22
|
+
noWidgetHint: "请从左侧列表中选择一个组件, 然后用鼠标拖动组件放置于此处.",
|
|
23
|
+
widgetLabel: {
|
|
24
|
+
grid: "栅格",
|
|
25
|
+
table: "表格",
|
|
26
|
+
table2: "动态表格",
|
|
27
|
+
tab: "标签页",
|
|
28
|
+
section: "区块",
|
|
29
|
+
"sub-form": "单行子表单",
|
|
30
|
+
"grid-sub-form": "多行子表单",
|
|
31
|
+
"grid-col": "栅格列",
|
|
32
|
+
"table-cell": "单元格",
|
|
33
|
+
"tab-pane": "选项卡页",
|
|
34
|
+
"data-table": "数据表格",
|
|
35
|
+
"table-column": "表格列",
|
|
36
|
+
"vf-box": "盒子",
|
|
37
|
+
"vf-dialog": "弹出窗口",
|
|
38
|
+
"vf-drawer": "侧滑抽屉",
|
|
39
|
+
input: "单行输入",
|
|
40
|
+
"input-batch": "批量输入",
|
|
41
|
+
textarea: "多行输入",
|
|
42
|
+
"script-input": "脚本输入框",
|
|
43
|
+
number: "计数器",
|
|
44
|
+
radio: "单选项",
|
|
45
|
+
checkbox: "多选项",
|
|
46
|
+
select: "下拉选项",
|
|
47
|
+
time: "时间",
|
|
48
|
+
"time-range": "时间范围",
|
|
49
|
+
date: "日期",
|
|
50
|
+
"date-range": "日期范围",
|
|
51
|
+
switch: "开关",
|
|
52
|
+
rate: "评分",
|
|
53
|
+
color: "颜色选择器",
|
|
54
|
+
slider: "滑块",
|
|
55
|
+
"static-text": "静态文字",
|
|
56
|
+
"tips-text": "提示文字",
|
|
57
|
+
"html-text": "HTML",
|
|
58
|
+
"vue-page": "Vue页面",
|
|
59
|
+
button: "按钮",
|
|
60
|
+
divider: "分隔线",
|
|
61
|
+
census: "统计",
|
|
62
|
+
"title-head": "标题头",
|
|
63
|
+
"picture-upload": "图片",
|
|
64
|
+
"file-upload": "文件",
|
|
65
|
+
vabUpload: "凭证",
|
|
66
|
+
vabUpload2: "凭证(海信)",
|
|
67
|
+
vabsearch: "搜索框",
|
|
68
|
+
autocomplete: "自动完成",
|
|
69
|
+
search_button: "搜索按钮",
|
|
70
|
+
save_button: "保存按钮",
|
|
71
|
+
reset_button: "刷新按钮",
|
|
72
|
+
add_button: "新增按钮",
|
|
73
|
+
export_button: "导出按钮",
|
|
74
|
+
import_button: "导入按钮",
|
|
75
|
+
"import-button": "导入按钮",
|
|
76
|
+
"import2-button": "明细导入按钮",
|
|
77
|
+
"print-button": "导出/打印(列表)",
|
|
78
|
+
"print-detail-button": "导出/打印(详情)",
|
|
79
|
+
copy_button: "复制按钮",
|
|
80
|
+
save_submit_wf_button: "保存并提交流程",
|
|
81
|
+
"rich-editor": "富文本",
|
|
82
|
+
cascader: "级联选择",
|
|
83
|
+
"area-select": "地区选择",
|
|
84
|
+
slot: "插槽",
|
|
85
|
+
echart: "图表",
|
|
86
|
+
"echart-pie": "饼图",
|
|
87
|
+
"echart-bar": "柱状图",
|
|
88
|
+
"echart-category": "折线图",
|
|
89
|
+
custom: "Custom Component",
|
|
90
|
+
"news-list": "列表",
|
|
91
|
+
descriptions: "描述列表",
|
|
92
|
+
panel: "面板",
|
|
93
|
+
query: "查询模块",
|
|
94
|
+
detail: "详情模块",
|
|
95
|
+
"detail-tabs": "详情模块(标签)",
|
|
96
|
+
"detail-plain": "详情模块(简洁)",
|
|
97
|
+
"detail-pane": "内容模块",
|
|
98
|
+
"detail-h5": "H5详情",
|
|
99
|
+
"list-h5": "H5列表",
|
|
100
|
+
text: "文本",
|
|
101
|
+
"tree-pane": "树/列表布局",
|
|
102
|
+
"h5-card": "h5卡片",
|
|
103
|
+
"h5-card-pane": "h5卡片选项卡",
|
|
104
|
+
"h5-table": "h5表格",
|
|
105
|
+
tree: "树形",
|
|
106
|
+
"table-export-button": "列表导出",
|
|
107
|
+
"select-export-item-button": "列表导出(明细)",
|
|
108
|
+
"select-export-button": "明细导出",
|
|
109
|
+
status: "状态",
|
|
110
|
+
"a-link": "超链接按钮",
|
|
111
|
+
"a-text": "超链接文本",
|
|
112
|
+
"project-tag": "标签",
|
|
113
|
+
dropdown: "下拉按钮",
|
|
114
|
+
|
|
115
|
+
"create_by-text": "创建人",
|
|
116
|
+
"modify_by-text": "更新人",
|
|
117
|
+
"create_date-text": "创建时间",
|
|
118
|
+
"modify_date-text": "更新时间",
|
|
119
|
+
"compare-change-button": "变更",
|
|
120
|
+
"compare-button": "对比",
|
|
121
|
+
"compare-close-button": "关闭对比",
|
|
122
|
+
"compare-del-button": "查看删除明细",
|
|
123
|
+
"user-vabsearch": "用户(单选)",
|
|
124
|
+
"saleOrg-vabsearch": "机构(单选)",
|
|
125
|
+
"user-project-tag": "用户(多选)",
|
|
126
|
+
"saleOrg-project-tag": "机构(多选)",
|
|
127
|
+
tempStorage: "暂存按钮",
|
|
128
|
+
oplog: "操作日志",
|
|
129
|
+
gantt: "甘特图",
|
|
130
|
+
"download-button": "附件下载",
|
|
131
|
+
cascader: "级联选择",
|
|
132
|
+
childrenKeyName: "子节点属性名称",
|
|
133
|
+
},
|
|
134
|
+
hint: {
|
|
135
|
+
formulaSetting: "公式设置",
|
|
136
|
+
formulaModel: "模式",
|
|
137
|
+
formulaModelView: "查看",
|
|
138
|
+
formulaModelEdit: "编辑",
|
|
139
|
+
formulaSize: "大小",
|
|
140
|
+
formulaSizeLarge: "大",
|
|
141
|
+
formulaSizeMedium: "中",
|
|
142
|
+
formulaSizeSmall: "小",
|
|
143
|
+
formulaSizeMini: "迷你",
|
|
144
|
+
formulaClear: "清除",
|
|
145
|
+
formulaNum: "数字",
|
|
146
|
+
formulaStr: "字符",
|
|
147
|
+
formulaOK: "确定",
|
|
148
|
+
formulaSearch: "搜索...",
|
|
149
|
+
formulaWidgetList: "组件列表",
|
|
150
|
+
formulaFunctionList: "函数列表",
|
|
151
|
+
formulaFunctionExplain: "函数说明",
|
|
152
|
+
formulaFunctionMaths: "数学函数",
|
|
153
|
+
formulaFunctionLogic: "逻辑函数",
|
|
154
|
+
formulaFunctionTime: "时间函数",
|
|
155
|
+
formulaFunctionString: "字符串函数",
|
|
156
|
+
formulaNumber: "数字",
|
|
157
|
+
formulaObject: "对象",
|
|
158
|
+
formulaDate: "日期",
|
|
159
|
+
formulaChar: "文字",
|
|
160
|
+
formulaPleaseSelect: "请选择组件名和函数",
|
|
161
|
+
formulaSample: "公式编辑举例",
|
|
162
|
+
formulaPara: "参数",
|
|
163
|
+
formulaINT: "将数值去掉小数,举例:INT(-8.9)=-9",
|
|
164
|
+
formulaSUM: "返回一组数据的和,举例:SUM(1,2,3,...)=6",
|
|
165
|
+
formulaSUMIF: `根据单个条件对指定区域内的数值求和,举例:SUMIF([10, 20, 30], ">10", [80, 120, 90])=210`,
|
|
166
|
+
formulaSUMIFS: `根据多个条件对指定区域内的数值求和(条件需同时满足),举例:SUMIFS([1000, 2000, 1500, 3000], [400, 600, 700, 800], '>500', [2022, 2023, 2023, 2024], 2023)=3500`,
|
|
167
|
+
formulaAVERAGE: "返回一组数据的平均数,举例:AVERAGE(1,2,3,...)=2",
|
|
168
|
+
formulaMAX: "返回一组数中的最大值,举例:MAX(1,2,3,...)=3",
|
|
169
|
+
formulaMIN: "返回一组数中的最小值,举例:MIN(1,2,3,...)=1",
|
|
170
|
+
formulaABS: "求一个数的绝对值,举例:ABS(-5)=5",
|
|
171
|
+
formulaROUND: "将数值保留指定小数位,举例:ROUND(8.999,2)=9.00",
|
|
172
|
+
formulaCEILING: "将一个数向上取整,举例:CEILING(8.9)=9",
|
|
173
|
+
formulaLOG:
|
|
174
|
+
"返回以参数2为底参数1的对数,举例:LOG(8,2)=3,以2为底8的对数为3",
|
|
175
|
+
formulaMOD: "求两数相除的余数,举例:MOD(2,6)=2",
|
|
176
|
+
formulaPOWER: "求数字的N次方,举例:POWER(5, 3)=125",
|
|
177
|
+
formulaAND:
|
|
178
|
+
"当所有条件都符合时,返回true,否则返回false,举例:AND(1>0,2>1,...)=TRUE",
|
|
179
|
+
formulaIF:
|
|
180
|
+
"判断一个条件能否满足,如果满足则返回一个值,如果不满足则返回另一个值,举例:IF(1>2,1,0)=0",
|
|
181
|
+
formulaIFS: "举例:IFS(false, 'Hello!', true, 'Goodbye!')=Goodbye!",
|
|
182
|
+
formulaIFERROR: "举例:IFERROR('#DIV/0!', 'Error')",
|
|
183
|
+
formulaIFNA: "举例:IFNA('#N/A', 'Error')",
|
|
184
|
+
formulaNOT: "举例:NOT(true)=false",
|
|
185
|
+
formulaOR: "举例: OR (true, false, true)=true",
|
|
186
|
+
formulaSWITCH:
|
|
187
|
+
"SWITCH(参数值,条件1,'条件值1',条件2,'条件值2'[,条件N,'条件值N',]),举例:SWITCH(7, 9, 'Nine', 7, 'Seven')=Seven",
|
|
188
|
+
formulaXOR: "举例:XOR(true, false, true)=false",
|
|
189
|
+
formulaYEAR: '举例:YEAR("2022-10-1")=2022',
|
|
190
|
+
formulaMONTH: '举例:MONTH("2022-10-1")=10',
|
|
191
|
+
formulaDAY: '举例:DAY("2022-10-11")=11',
|
|
192
|
+
formulaTODAY: '举例: TODAY()="2022-10-11"',
|
|
193
|
+
formulaNOW: '举例: NOW="2022-10-11 17:04:33"',
|
|
194
|
+
formulaEMONTH: "举例: EMONTH ('2022-12-13 ', -1)='2022-11-13 '",
|
|
195
|
+
formulaEDAY: "举例: EMONTH ('2022-12-13 ', -1)='2022-12-12 '",
|
|
196
|
+
formulaFIND: `查找字符串(参数:
|
|
197
|
+
1、查找句柄 2、查找目标字符串 3、开始查找下标),
|
|
198
|
+
举例:FIND('M', 'Miriam McGovern', 3)=8`,
|
|
199
|
+
formulaLEFT:
|
|
200
|
+
"获取字符串左侧N个字符,LEFT(字符串,截取长度),举例:LEFT('Sale Price', 4)=Sale",
|
|
201
|
+
formulaRIGHT:
|
|
202
|
+
"获取字符串右侧N个字符 RIGHT(字符串,截取长度),举例:RIGHT('Sale Price', 5)=Price",
|
|
203
|
+
formulaLEN: "统计字符串长度,举例:LEN('abcdefgh')=8",
|
|
204
|
+
formulaLOWER:
|
|
205
|
+
"字符串转小写,举例:LOWER('E. E. Cummings')=e. e. cummings",
|
|
206
|
+
formulaUPPER: "字符串转大写,举例:UPPER('total')=TOTAL",
|
|
207
|
+
formulaMID:
|
|
208
|
+
"截取字符串 MID(字符串,开始下标,截取长度),举例:MID('Fluid Flow', 7, 20)=Flow",
|
|
209
|
+
formulaTRIM:
|
|
210
|
+
"字符串去除多余空格 TRIM(字符串),举例:TRIM(' First Quarter ')=First Quarter",
|
|
211
|
+
formulaDateError: "日期格式不正确",
|
|
212
|
+
formulaDateErrorMsg: "日期转换错误明细",
|
|
213
|
+
|
|
214
|
+
selectParentWidget: "选中父组件",
|
|
215
|
+
moveUpWidget: "上移组件",
|
|
216
|
+
moveDownWidget: "下移组件",
|
|
217
|
+
cloneWidget: "复制组件",
|
|
218
|
+
insertRow: "插入新行",
|
|
219
|
+
insertColumn: "插入新列",
|
|
220
|
+
remove: "移除组件",
|
|
221
|
+
cellSetting: "单元格操作",
|
|
222
|
+
dragHandler: "拖拽手柄",
|
|
223
|
+
copyField: "复制字段组件",
|
|
224
|
+
onlyFieldWidgetAcceptable: "子表单只能接收字段组件",
|
|
225
|
+
moveUpFirstChildHint: "已经移动到最上面",
|
|
226
|
+
moveDownLastChildHint: "已经移动到最下面",
|
|
227
|
+
closePreview: "关闭",
|
|
228
|
+
copyJson: "复制JSON",
|
|
229
|
+
saveFormJson: "保存为文件",
|
|
230
|
+
copyVueCode: "复制Vue代码",
|
|
231
|
+
copyHtmlCode: "复制HTML代码",
|
|
232
|
+
copyJsonSuccess: "复制JSON成功",
|
|
233
|
+
importJsonSuccess: "导入JSON成功",
|
|
234
|
+
copyJsonFail: "复制JSON失败",
|
|
235
|
+
copyVueCodeSuccess: "复制Vue代码成功",
|
|
236
|
+
copyVueCodeFail: "复制Vue代码失败",
|
|
237
|
+
copyHtmlCodeSuccess: "复制HTML代码成功",
|
|
238
|
+
copyHtmlCodeFail: "复制HTML代码失败",
|
|
239
|
+
saveVueCode: "保存Vue文件",
|
|
240
|
+
saveHtmlCode: "保存Html文件",
|
|
241
|
+
getFormData: "获取数据",
|
|
242
|
+
resetForm: "重置表单",
|
|
243
|
+
disableForm: "禁用编辑",
|
|
244
|
+
enableForm: "恢复编辑",
|
|
245
|
+
switchReadMode: "只读查看",
|
|
246
|
+
exportFormData: "表单数据",
|
|
247
|
+
copyFormData: "复制JSON",
|
|
248
|
+
saveFormData: "保存为文件",
|
|
249
|
+
copyVue2SFC: "复制Vue2代码",
|
|
250
|
+
copyVue3SFC: "复制Vue3代码",
|
|
251
|
+
copySFCFail: "复制SFC代码失败",
|
|
252
|
+
copySFCSuccess: "复制SFC代码成功",
|
|
253
|
+
saveVue2SFC: "保存为Vue2组件",
|
|
254
|
+
saveVue3SFC: "保存为Vue3组件",
|
|
255
|
+
fileNameForSave: "文件名:",
|
|
256
|
+
saveFileTitle: "保存为文件",
|
|
257
|
+
fileNameInputPlaceholder: "请输入文件名",
|
|
258
|
+
sampleLoadedSuccess: "表单示例加载成功",
|
|
259
|
+
sampleLoadedFail: "表单示例加载失败",
|
|
260
|
+
loadFormTemplate: "加载此模板",
|
|
261
|
+
loadFormTemplateHint:
|
|
262
|
+
"是否加载这个模板?加载后会覆盖设计器当前表单,你可以使用“撤销”功能恢复。",
|
|
263
|
+
loadFormTemplateSuccess: "表单模板加载成功",
|
|
264
|
+
loadFormTemplateFailed: "表单模板加载失败",
|
|
265
|
+
currentNodeCannotBeSelected: "当前组件节点不可选择",
|
|
266
|
+
noSelectedWidgetHint: "当前没有选中设置的组件",
|
|
267
|
+
widgetSetting: "组件设置",
|
|
268
|
+
formSetting: "表单设置",
|
|
269
|
+
prompt: "提示",
|
|
270
|
+
confirm: "确定",
|
|
271
|
+
cancel: "取消",
|
|
272
|
+
import: "导入",
|
|
273
|
+
importJsonHint: "导入的JSON内容须符合下述格式,以保证顺利导入.",
|
|
274
|
+
invalidOptionsData: "无效的选项数据:",
|
|
275
|
+
lastPaneCannotBeDeleted: "仅剩一个选项卡页不可删除.",
|
|
276
|
+
duplicateName: "组件名称已存在: ",
|
|
277
|
+
nameRequired: "组件名称不可为空",
|
|
278
|
+
numberValidator: "数字",
|
|
279
|
+
letterValidator: "字母",
|
|
280
|
+
letterAndNumberValidator: "数字字母",
|
|
281
|
+
mobilePhoneValidator: "手机号码",
|
|
282
|
+
emailValidator: "邮箱",
|
|
283
|
+
urlValidator: "网址",
|
|
284
|
+
noChineseValidator: "非中文字符",
|
|
285
|
+
chineseValidator: "仅中文字符",
|
|
286
|
+
rowspanNotConsistentForMergeEntireRow:
|
|
287
|
+
"存在行高不一致的单元格, 无法合并整行.",
|
|
288
|
+
colspanNotConsistentForMergeEntireColumn:
|
|
289
|
+
"存在列宽不一致的单元格, 无法合并整列.",
|
|
290
|
+
rowspanNotConsistentForDeleteEntireRow:
|
|
291
|
+
"存在行高不一致的单元格, 不可删除整行.",
|
|
292
|
+
colspanNotConsistentForDeleteEntireColumn:
|
|
293
|
+
"存在列宽不一致的单元格, 不可删除整列.",
|
|
294
|
+
lastColCannotBeDeleted: "最后一列不可删除.",
|
|
295
|
+
lastRowCannotBeDeleted: "最后一行不可删除.",
|
|
296
|
+
},
|
|
297
|
+
toolbar: {
|
|
298
|
+
undoHint: "撤销",
|
|
299
|
+
redoHint: "重做",
|
|
300
|
+
pcLayout: "PC",
|
|
301
|
+
padLayout: "Pad",
|
|
302
|
+
mobileLayout: "H5",
|
|
303
|
+
nodeTreeHint: "组件层次结构树",
|
|
304
|
+
nodeTreeTitle: "组件层次结构树",
|
|
305
|
+
clear: "清空",
|
|
306
|
+
preview: "预览",
|
|
307
|
+
importJson: "导入JSON",
|
|
308
|
+
exportJson: "导出JSON",
|
|
309
|
+
exportCode: "导出代码",
|
|
310
|
+
generateCode: "生成代码",
|
|
311
|
+
generateSFC: "生成SFC",
|
|
312
|
+
},
|
|
313
|
+
setting: {
|
|
314
|
+
basicSetting: "基本属性",
|
|
315
|
+
attributeSetting: "属性设置",
|
|
316
|
+
commonSetting: "常见属性",
|
|
317
|
+
advancedSetting: "高级属性",
|
|
318
|
+
eventSetting: "事件属性",
|
|
319
|
+
uniqueName: "唯一名称",
|
|
320
|
+
editNameHelp: "修改名称后需按回车确认",
|
|
321
|
+
label: "标签",
|
|
322
|
+
displayType: "显示类型",
|
|
323
|
+
defaultValue: "默认值",
|
|
324
|
+
placeholder: "占位内容",
|
|
325
|
+
startPlaceholder: "起始占位内容",
|
|
326
|
+
endPlaceholder: "截止占位内容",
|
|
327
|
+
widgetColumnWidth: "组件列宽",
|
|
328
|
+
widgetSize: "组件大小",
|
|
329
|
+
fontSize: "字体大小",
|
|
330
|
+
showStops: "显示间断点",
|
|
331
|
+
displayStyle: "显示样式",
|
|
332
|
+
inlineLayout: "行内",
|
|
333
|
+
blockLayout: "块",
|
|
334
|
+
buttonStyle: "显示为按钮",
|
|
335
|
+
border: "带有边框",
|
|
336
|
+
labelWidth: "标签宽度",
|
|
337
|
+
rows: "行数",
|
|
338
|
+
labelHidden: "隐藏字段标签",
|
|
339
|
+
required: "必填字段",
|
|
340
|
+
validation: "字段校验",
|
|
341
|
+
requiredHint: "必填校验提示",
|
|
342
|
+
validationHelp: "支持输入正则表达式",
|
|
343
|
+
validationHint: "校验失败提示",
|
|
344
|
+
readonly: "只读",
|
|
345
|
+
disabled: "禁用",
|
|
346
|
+
hidden: "隐藏",
|
|
347
|
+
fixedQuery: "固定查询条件",
|
|
348
|
+
fixedQueryHelp:
|
|
349
|
+
"开启后该条件不被刷新、查询条件设置的还原/确定清空,且在查询条件设置里只读",
|
|
350
|
+
textContent: "静态文字",
|
|
351
|
+
preWrap: "自动换行",
|
|
352
|
+
htmlContent: "HTML",
|
|
353
|
+
clearable: "可清除",
|
|
354
|
+
areaDataType: "地区层级",
|
|
355
|
+
areaDataType0: "省",
|
|
356
|
+
areaDataType1: "省/市",
|
|
357
|
+
areaDataType2: "省/市/区",
|
|
358
|
+
areaDataType3: "省/市/区/乡镇",
|
|
359
|
+
areaName: "地区名称字段",
|
|
360
|
+
areaNameHint: "用于保存地区全称的表单字段名",
|
|
361
|
+
areaMinLevel: "至少选择层级",
|
|
362
|
+
areaMinLevelHint:
|
|
363
|
+
"选择结果至少要到该层级才能选中(该地区无下级数据时除外)",
|
|
364
|
+
areaMinLevelNone: "不限",
|
|
365
|
+
areaMinLevel0: "省",
|
|
366
|
+
areaMinLevel1: "市",
|
|
367
|
+
areaMinLevel2: "区",
|
|
368
|
+
areaMinLevel3: "乡镇",
|
|
369
|
+
editable: "可输入",
|
|
370
|
+
format: "显示格式",
|
|
371
|
+
valueFormat: "绑定值格式",
|
|
372
|
+
showPassword: "可显示密码",
|
|
373
|
+
filterable: "可搜索选项",
|
|
374
|
+
allowCreate: "允许创建选项",
|
|
375
|
+
remote: "可远程搜索",
|
|
376
|
+
automaticDropdown: "自动弹出选项",
|
|
377
|
+
multiple: "选项可多选",
|
|
378
|
+
multipleLimit: "多选数量限制",
|
|
379
|
+
checkStrictly: "任意级节点可选",
|
|
380
|
+
showAllLevels: "显示完整路径",
|
|
381
|
+
contentPosition: "文字位置",
|
|
382
|
+
dividerDirection: "分割线方向",
|
|
383
|
+
plain: "朴素按钮",
|
|
384
|
+
round: "圆角按钮",
|
|
385
|
+
circle: "圆形按钮",
|
|
386
|
+
space: "间隔(px)",
|
|
387
|
+
icon: "图标",
|
|
388
|
+
optionsSetting: "选项设置",
|
|
389
|
+
addOption: "增加选项",
|
|
390
|
+
importOptions: "导入选项",
|
|
391
|
+
resetDefault: "重设选中项",
|
|
392
|
+
uploadSetting: "上传参数设置",
|
|
393
|
+
uploadURL: "上传地址",
|
|
394
|
+
uploadTip: "上传提示内容",
|
|
395
|
+
withCredentials: "发送cookie凭证",
|
|
396
|
+
multipleSelect: "文件可多选",
|
|
397
|
+
showFileList: "显示文件列表",
|
|
398
|
+
limit: "最大上传数量",
|
|
399
|
+
fileMaxSize: "文件大小限制(MB)",
|
|
400
|
+
fileTypes: "上传文件类型",
|
|
401
|
+
fileTypesHelp: "支持添加其他文件类型",
|
|
402
|
+
fileTypesCategoryHelp: "勾选分类可批量选择该类下的全部格式,也支持手工输入其他后缀;留空表示不限制",
|
|
403
|
+
fileTypesPlaceholder: "不限制上传格式",
|
|
404
|
+
fileTypeCategory: {
|
|
405
|
+
image: "图片",
|
|
406
|
+
video: "视频",
|
|
407
|
+
audio: "音频",
|
|
408
|
+
word: "Word",
|
|
409
|
+
excel: "Excel",
|
|
410
|
+
ppt: "PPT",
|
|
411
|
+
pdf: "PDF",
|
|
412
|
+
text: "文本",
|
|
413
|
+
archive: "压缩包",
|
|
414
|
+
},
|
|
415
|
+
headers: "上传请求头",
|
|
416
|
+
formulaEnabled: "启用计算公式",
|
|
417
|
+
formula: "计算公式",
|
|
418
|
+
cellWidth: "宽度",
|
|
419
|
+
cellHeight: "高度",
|
|
420
|
+
// gridColHeight: "外层栅格高度(px/%)",
|
|
421
|
+
gutter: "栅格间隔(px)",
|
|
422
|
+
columnSetting: "栅格属性设置",
|
|
423
|
+
colsOfGrid: "当前栅格列:",
|
|
424
|
+
colSpanTitle: "栅格宽度",
|
|
425
|
+
colOffsetTitle: "左侧间隔格数",
|
|
426
|
+
colPushTitle: "右移栅格数",
|
|
427
|
+
colPullTitle: "左移栅格数",
|
|
428
|
+
colHeight: "栅格高度(px或%)",
|
|
429
|
+
addColumn: "增加栅格",
|
|
430
|
+
responsive: "响应式布局",
|
|
431
|
+
tabPaneSetting: "选项卡设置",
|
|
432
|
+
addTabPane: "增加选项卡页",
|
|
433
|
+
tabClass: "选项卡样式",
|
|
434
|
+
paneActive: "激活",
|
|
435
|
+
customLabelIcon: "定制字段标签",
|
|
436
|
+
labelIconClass: "标签Icon样式",
|
|
437
|
+
labelIconPosition: "标签Icon位置",
|
|
438
|
+
labelTooltip: "标签文字提示",
|
|
439
|
+
minValue: "最小值",
|
|
440
|
+
maxValue: "最大值",
|
|
441
|
+
precision: "精度",
|
|
442
|
+
step: "增减步长",
|
|
443
|
+
controlsPosition: "控制按钮位置",
|
|
444
|
+
showbutton: "是否显示按钮",
|
|
445
|
+
minLength: "最小长度",
|
|
446
|
+
maxLength: "最大长度",
|
|
447
|
+
showWordLimit: "显示字数统计",
|
|
448
|
+
prefixIcon: "头部Icon",
|
|
449
|
+
suffixIcon: "尾部Icon",
|
|
450
|
+
inputButton: "输入框按钮设置",
|
|
451
|
+
appendButton: "添加后置按钮",
|
|
452
|
+
appendButtonDisabled: "后置按钮禁用",
|
|
453
|
+
appendButtonIcon: "后置按钮Icon",
|
|
454
|
+
buttonIcon: "按钮Icon",
|
|
455
|
+
switchWidth: "开关宽度(像素)",
|
|
456
|
+
activeText: "开启时文字描述",
|
|
457
|
+
inactiveText: "关闭时文字描述",
|
|
458
|
+
labelColor: "标签文本颜色",
|
|
459
|
+
activeColor: "开启时背景色",
|
|
460
|
+
inactiveColor: "关闭时背景色",
|
|
461
|
+
maxStars: "最大评分值",
|
|
462
|
+
lowThreshold: "低分界限值",
|
|
463
|
+
highThreshold: "高分界限值",
|
|
464
|
+
allowHalf: "允许半选",
|
|
465
|
+
showText: "显示辅助文字",
|
|
466
|
+
showScore: "显示当前分数",
|
|
467
|
+
range: "是否为范围选择",
|
|
468
|
+
vertical: "是否竖向显示",
|
|
469
|
+
showBlankRow: "默认显示新行",
|
|
470
|
+
showRowNumber: "显示行号",
|
|
471
|
+
actionColumnPosition: "操作列位置",
|
|
472
|
+
insertColumnToLeft: "插入左侧列",
|
|
473
|
+
insertColumnToRight: "插入右侧列",
|
|
474
|
+
insertRowAbove: "插入上方行",
|
|
475
|
+
insertRowBelow: "插入下方行",
|
|
476
|
+
mergeLeftColumn: "合并左侧单元格",
|
|
477
|
+
mergeRightColumn: "合并右侧单元格",
|
|
478
|
+
mergeEntireRow: "合并整行",
|
|
479
|
+
mergeRowAbove: "合并上方单元格",
|
|
480
|
+
mergeRowBelow: "合并下方单元格",
|
|
481
|
+
mergeEntireColumn: "合并整列",
|
|
482
|
+
undoMergeCol: "撤销列合并",
|
|
483
|
+
undoMergeRow: "撤销行合并",
|
|
484
|
+
deleteEntireCol: "删除整列",
|
|
485
|
+
deleteEntireRow: "删除整行",
|
|
486
|
+
widgetName: "组件唯一名称",
|
|
487
|
+
formSize: "全局组件大小",
|
|
488
|
+
labelPosition: "字段标签位置",
|
|
489
|
+
topPosition: "顶部",
|
|
490
|
+
leftPosition: "左边",
|
|
491
|
+
labelAlign: "标签对齐",
|
|
492
|
+
leftAlign: "居左",
|
|
493
|
+
centerAlign: "居中",
|
|
494
|
+
rightAlign: "居右",
|
|
495
|
+
formCss: "表单全局CSS",
|
|
496
|
+
addCss: "编写CSS",
|
|
497
|
+
customClass: "自定义CSS样式",
|
|
498
|
+
containerClass: "容器样式",
|
|
499
|
+
styleTitClass: "样式选择",
|
|
500
|
+
styleTableClass: "表格样式",
|
|
501
|
+
iconClass: "图标样式",
|
|
502
|
+
globalFunctions: "表单全局函数",
|
|
503
|
+
addEventHandler: "编写代码",
|
|
504
|
+
editWidgetEventHandler: "组件事件处理",
|
|
505
|
+
editFormEventHandler: "表单事件处理",
|
|
506
|
+
formSFCSetting: "生成SFC设置",
|
|
507
|
+
formModelName: "数据对象名称",
|
|
508
|
+
formRefName: "引用名称",
|
|
509
|
+
formRulesName: "验证规则名称",
|
|
510
|
+
syntaxCheckWarning: "JS代码存在语法错误,请仔细检查!",
|
|
511
|
+
title: "标题",
|
|
512
|
+
dialogWidth: "弹窗宽度(px/%)",
|
|
513
|
+
fullscreen: "全屏显示弹窗",
|
|
514
|
+
showModal: "显示遮罩层",
|
|
515
|
+
showClose: "显示关闭按钮",
|
|
516
|
+
closeOnClickModal: "点击遮罩层关闭",
|
|
517
|
+
closeOnPressEscape: "按Esc键关闭",
|
|
518
|
+
center: "头部底部居中",
|
|
519
|
+
readMode: "弹窗表单只读",
|
|
520
|
+
disabledMode: "弹窗表单禁用",
|
|
521
|
+
okButtonLabel: "确认按钮文字",
|
|
522
|
+
okButtonHidden: "隐藏确认按钮",
|
|
523
|
+
cancelButtonLabel: "取消按钮文字",
|
|
524
|
+
cancelButtonHidden: "隐藏取消按钮",
|
|
525
|
+
drawSize: "抽屉大小(px/%)",
|
|
526
|
+
drawDirection: "抽屉滑出方向",
|
|
527
|
+
tableWidth: "宽度(px/%)",
|
|
528
|
+
tableHeight: "高度(px/%)",
|
|
529
|
+
showCheckBox: "是否显示复选框列",
|
|
530
|
+
showIndex: "是否显示行号",
|
|
531
|
+
showPagination: "是否显示分页",
|
|
532
|
+
smallPagination: "小型分页",
|
|
533
|
+
tableColEdit: "表格列编辑",
|
|
534
|
+
tableDataEdit: "表格数据编辑",
|
|
535
|
+
showSummary: "是否合计",
|
|
536
|
+
stripe: "是否斑马线",
|
|
537
|
+
rowSpacing: "行距(px)",
|
|
538
|
+
editAction: "编辑...",
|
|
539
|
+
columnName: "字段名称",
|
|
540
|
+
columnLabel: "显示名称",
|
|
541
|
+
columnWidth: "列宽(px/%)",
|
|
542
|
+
visibleColumn: "是否显示",
|
|
543
|
+
sortableColumn: "是否排序",
|
|
544
|
+
fixedColumn: "是否固定",
|
|
545
|
+
alignType: "对齐方式",
|
|
546
|
+
alignTypeOfColumn: "对齐方式",
|
|
547
|
+
formatOfColumn: "格式化",
|
|
548
|
+
customRenderGroup: "动态渲染",
|
|
549
|
+
renderFunction: "渲染函数",
|
|
550
|
+
actionColumn: "操作",
|
|
551
|
+
addTableColumn: "增加列",
|
|
552
|
+
deleteTableColumn: "删除列",
|
|
553
|
+
onlyOneColumnCannotBeDeleted: "表格只有一列时不可删除.",
|
|
554
|
+
showButtonsColumn: "显示操作按钮列",
|
|
555
|
+
buttonsColumnEdit: "操作按钮编辑",
|
|
556
|
+
buttonsColumnTitle: "列标题",
|
|
557
|
+
buttonsColumnWidth: "列宽度(px)",
|
|
558
|
+
operationButtonsSetting: "操作按钮设置",
|
|
559
|
+
operationButtonName: "名称",
|
|
560
|
+
operationButtonLabel: "文字",
|
|
561
|
+
operationButtonType: "类型",
|
|
562
|
+
operationButtonSize: "大小",
|
|
563
|
+
operationButtonRound: "圆角",
|
|
564
|
+
operationButtonHidden: "隐藏",
|
|
565
|
+
operationButtonDisabled: "禁用",
|
|
566
|
+
addOperationButton: "增加按钮",
|
|
567
|
+
deleteOperationButtonHint: "确定删除该按钮?",
|
|
568
|
+
operationButtonDuplicatedNameError: "按钮名称不可重复",
|
|
569
|
+
dsEnabled: "请求设置",
|
|
570
|
+
dsName: "指定数据源",
|
|
571
|
+
labelKeyName: "选项标签名",
|
|
572
|
+
valueKeyName: "选项值名",
|
|
573
|
+
childrenKeyName: "子节点属性名称",
|
|
574
|
+
dataSource: "数据源",
|
|
575
|
+
noDataSource: "暂无数据源",
|
|
576
|
+
addDataSource: "新增数据源",
|
|
577
|
+
dataSourceSetting: "数据源设置",
|
|
578
|
+
deleteDataSourceHint: "确认删除该数据源?",
|
|
579
|
+
fieldValueRequired: "输入内容不可为空",
|
|
580
|
+
dsUniqueName: "唯一名称",
|
|
581
|
+
dsRequestURL: "请求地址",
|
|
582
|
+
dsRequestaccessType: "请求URL类型",
|
|
583
|
+
dsURLStringType: "固定字符串",
|
|
584
|
+
dsURLVariableType: "变量或表达式",
|
|
585
|
+
dsDescription: "描述信息",
|
|
586
|
+
dsRequestMethod: "请求方法",
|
|
587
|
+
dsRequestHeaders: "请求头(headers)",
|
|
588
|
+
addRequestHeader: "新增请求头",
|
|
589
|
+
dsRequestParams: "参数(params)",
|
|
590
|
+
addRequestParam: "新增请求参数",
|
|
591
|
+
dsRequestData: "发送数据(data)",
|
|
592
|
+
addRequestData: "新增发送数据",
|
|
593
|
+
dsRequestValueStringType: "字符串类型",
|
|
594
|
+
dsRequestValueNumberType: "数值类型",
|
|
595
|
+
dsRequestValueBooleanType: "布尔类型",
|
|
596
|
+
dsRequestValueVariableType: "变量或表达式",
|
|
597
|
+
dsRequestNameInputPlaceholder: "名称",
|
|
598
|
+
dsRequestTypeInputPlaceholder: "类型",
|
|
599
|
+
dsRequestValueInputPlaceholder: "值",
|
|
600
|
+
dsConfigHandlerTitle: "1. 请求配置",
|
|
601
|
+
dsDataHandlerTitle: "2. 数据处理",
|
|
602
|
+
dsErrorHandlerTitle: "3. 错误处理",
|
|
603
|
+
testDataSource: "测试数据源",
|
|
604
|
+
saveDataSource: "保存数据源",
|
|
605
|
+
dsvTitle: "DSV数据源变量",
|
|
606
|
+
dsRequestResult: "返回数据",
|
|
607
|
+
executeDataSource: "立即执行",
|
|
608
|
+
clearRequestResult: "清空结果",
|
|
609
|
+
dsRequestNumberTypeError: "数据类型值错误",
|
|
610
|
+
dsRequestBooleanTypeError: "布尔类型值错误",
|
|
611
|
+
dsValidationError: "数据源设置存在错误,请修改",
|
|
612
|
+
dsDuplicatedNameError: "数据源名称重复,请修改!",
|
|
613
|
+
echartHeight: "高度",
|
|
614
|
+
isFullscreen: "是否全屏",
|
|
615
|
+
widgetWidth: "组件宽度",
|
|
616
|
+
isFixbottom: "是否固定到最底",
|
|
617
|
+
|
|
618
|
+
showTreeCheckBox: "显示复选框",
|
|
619
|
+
lazy: "懒加载",
|
|
620
|
+
treeDataEdit: "树数据编辑",
|
|
621
|
+
defaultExpandAllNode: "默认展开所有节点",
|
|
622
|
+
expandRetractAllNode: "展开/收缩",
|
|
623
|
+
selectClearAllNode: "选中/取消选中",
|
|
624
|
+
nodeEdit: "允许添加删除节点",
|
|
625
|
+
expandAllNode: "展开所有",
|
|
626
|
+
retractAllNode: "收缩所有",
|
|
627
|
+
selectAllNode: "选择所有",
|
|
628
|
+
clearAllNode: "清除所有",
|
|
629
|
+
draggable: "允许拖拽节点",
|
|
630
|
+
filter: "显示过滤框",
|
|
631
|
+
expandOnClickNode: "点击节点可收缩",
|
|
632
|
+
treeNodeCheckStrictly: "禁止父子节点联动",
|
|
633
|
+
inputNodeName: "请输入节点名",
|
|
634
|
+
deleteNode: "确定删除节点?",
|
|
635
|
+
nodeDeleted: "节点已删除",
|
|
636
|
+
tips: "提示",
|
|
637
|
+
onNodeCheckRemark: "树节点选择事件",
|
|
638
|
+
onNodeClickRemark: "树节点点击事件",
|
|
639
|
+
onNodeContextmenuRemark: "树节点右击事件",
|
|
640
|
+
enterForQuery: "输入关键字进行过滤",
|
|
641
|
+
add: "添加",
|
|
642
|
+
delete: "删除",
|
|
643
|
+
censusClass: "统计样式",
|
|
644
|
+
},
|
|
645
|
+
},
|
|
646
|
+
};
|