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,438 +1,473 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
application: {
|
|
3
|
-
"zh-CN": "简体中文",
|
|
4
|
-
"en-US": "English",
|
|
5
|
-
productTitle: "Online Form Designer",
|
|
6
|
-
github: "GitHub",
|
|
7
|
-
document: "Docs",
|
|
8
|
-
qqGroup: "WeChat Group",
|
|
9
|
-
deployment: "Deployment",
|
|
10
|
-
subscription: "Subscription"
|
|
11
|
-
},
|
|
12
|
-
designer: {
|
|
13
|
-
componentLib: "Components",
|
|
14
|
-
formLib: "Templates",
|
|
15
|
-
containerTitle: "Container",
|
|
16
|
-
dragHandlerHint: "drag container or field to layout center",
|
|
17
|
-
dragAction: "drag",
|
|
18
|
-
basicFieldTitle: "Basic Field",
|
|
19
|
-
advancedFieldTitle: "Advanced Field",
|
|
20
|
-
customFieldTitle: "Customized Field",
|
|
21
|
-
noWidgetHint: "Please select a widget from the left list, drag and drop to this container.",
|
|
22
|
-
widgetLabel: {
|
|
23
|
-
grid: "Grid",
|
|
24
|
-
table: "Table",
|
|
25
|
-
tab: "Tab",
|
|
26
|
-
section: "Section",
|
|
27
|
-
"sub-form": "SubForm",
|
|
28
|
-
"grid-sub-form": "GridSubForm",
|
|
29
|
-
"grid-col": "GridCol",
|
|
30
|
-
"table-cell": "TableCell",
|
|
31
|
-
"tab-pane": "TabPane",
|
|
32
|
-
"data-table": "DataTable",
|
|
33
|
-
"vf-dialog": "Dialog",
|
|
34
|
-
"vf-drawer": "Drawer",
|
|
35
|
-
input: "Input",
|
|
36
|
-
textarea: "Textarea",
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1
|
+
export default {
|
|
2
|
+
application: {
|
|
3
|
+
"zh-CN": "简体中文",
|
|
4
|
+
"en-US": "English",
|
|
5
|
+
productTitle: "Online Form Designer",
|
|
6
|
+
github: "GitHub",
|
|
7
|
+
document: "Docs",
|
|
8
|
+
qqGroup: "WeChat Group",
|
|
9
|
+
deployment: "Deployment",
|
|
10
|
+
subscription: "Subscription"
|
|
11
|
+
},
|
|
12
|
+
designer: {
|
|
13
|
+
componentLib: "Components",
|
|
14
|
+
formLib: "Templates",
|
|
15
|
+
containerTitle: "Container",
|
|
16
|
+
dragHandlerHint: "drag container or field to layout center",
|
|
17
|
+
dragAction: "drag",
|
|
18
|
+
basicFieldTitle: "Basic Field",
|
|
19
|
+
advancedFieldTitle: "Advanced Field",
|
|
20
|
+
customFieldTitle: "Customized Field",
|
|
21
|
+
noWidgetHint: "Please select a widget from the left list, drag and drop to this container.",
|
|
22
|
+
widgetLabel: {
|
|
23
|
+
grid: "Grid",
|
|
24
|
+
table: "Table",
|
|
25
|
+
tab: "Tab",
|
|
26
|
+
section: "Section",
|
|
27
|
+
"sub-form": "SubForm",
|
|
28
|
+
"grid-sub-form": "GridSubForm",
|
|
29
|
+
"grid-col": "GridCol",
|
|
30
|
+
"table-cell": "TableCell",
|
|
31
|
+
"tab-pane": "TabPane",
|
|
32
|
+
"data-table": "DataTable",
|
|
33
|
+
"vf-dialog": "Dialog",
|
|
34
|
+
"vf-drawer": "Drawer",
|
|
35
|
+
input: "Input",
|
|
36
|
+
textarea: "Textarea",
|
|
37
|
+
"script-input": "Script Input",
|
|
38
|
+
number: "InputNumber",
|
|
39
|
+
radio: "Radio",
|
|
40
|
+
checkbox: "Checkbox",
|
|
41
|
+
select: "Select",
|
|
42
|
+
time: "Time",
|
|
43
|
+
"time-range": "Time range",
|
|
44
|
+
date: "Date",
|
|
45
|
+
"date-range": "Date range",
|
|
46
|
+
switch: "Switch",
|
|
47
|
+
rate: "Rate",
|
|
48
|
+
color: "ColorPicker",
|
|
49
|
+
slider: "Slider",
|
|
50
|
+
"static-text": "Text",
|
|
51
|
+
"html-text": "HTML",
|
|
52
|
+
"vue-page": "Vue Page",
|
|
53
|
+
button: "Button",
|
|
54
|
+
divider: "Divider",
|
|
55
|
+
"picture-upload": "Picture",
|
|
56
|
+
"file-upload": "File",
|
|
57
|
+
"rich-editor": "Rich Editor",
|
|
58
|
+
cascader: "Cascader",
|
|
59
|
+
"area-select": "Area Select",
|
|
60
|
+
slot: "Slot",
|
|
61
|
+
custom: "Custom Component",
|
|
62
|
+
autocomplete: "Autocomplete"
|
|
63
|
+
},
|
|
64
|
+
hint: {
|
|
65
|
+
selectParentWidget: "Select parent of this widget",
|
|
66
|
+
moveUpWidget: "Move up this widget",
|
|
67
|
+
moveDownWidget: "Move down this widget",
|
|
68
|
+
cloneWidget: "Clone this widget",
|
|
69
|
+
insertRow: "Insert new row",
|
|
70
|
+
insertColumn: "Insert new column",
|
|
71
|
+
remove: "Remove this widget",
|
|
72
|
+
cellSetting: "Cell setting",
|
|
73
|
+
dragHandler: "Drag handler",
|
|
74
|
+
copyField: "Copy field widget",
|
|
75
|
+
onlyFieldWidgetAcceptable: "Only field widget can be dragged into sub-form",
|
|
76
|
+
moveUpFirstChildHint: "First child can not be move up",
|
|
77
|
+
moveDownLastChildHint: "Last child can not be move down",
|
|
78
|
+
closePreview: "Close",
|
|
79
|
+
copyJson: "Copy",
|
|
80
|
+
saveFormJson: "Save As File",
|
|
81
|
+
copyVueCode: "Copy Vue Code",
|
|
82
|
+
copyHtmlCode: "Copy HTML Code",
|
|
83
|
+
copyJsonSuccess: "Copy succeed",
|
|
84
|
+
importJsonSuccess: "Import succeed",
|
|
85
|
+
copyJsonFail: "Copy failed",
|
|
86
|
+
copyVueCodeSuccess: "Copy succeed",
|
|
87
|
+
copyVueCodeFail: "Copy failed",
|
|
88
|
+
copyHtmlCodeSuccess: "Copy succeed",
|
|
89
|
+
copyHtmlCodeFail: "Copy failed",
|
|
90
|
+
saveVueCode: "Save Vue File",
|
|
91
|
+
saveHtmlCode: "Save Html File",
|
|
92
|
+
getFormData: "Get Data",
|
|
93
|
+
resetForm: "Reset",
|
|
94
|
+
disableForm: "Disable",
|
|
95
|
+
enableForm: "Enable",
|
|
96
|
+
switchReadMode: "Read Mode",
|
|
97
|
+
exportFormData: "Form Data",
|
|
98
|
+
copyFormData: "Copy",
|
|
99
|
+
saveFormData: "Save As File",
|
|
100
|
+
copyVue2SFC: "Copy Vue2",
|
|
101
|
+
copyVue3SFC: "Copy Vue3",
|
|
102
|
+
copySFCFail: "Copy failed",
|
|
103
|
+
copySFCSuccess: "Copy succeed",
|
|
104
|
+
saveVue2SFC: "Save As Vue2",
|
|
105
|
+
saveVue3SFC: "Save As Vue3",
|
|
106
|
+
fileNameForSave: "File name:",
|
|
107
|
+
saveFileTitle: "Save as File",
|
|
108
|
+
fileNameInputPlaceholder: "Enter the file name",
|
|
109
|
+
sampleLoadedSuccess: "Example loaded successfully",
|
|
110
|
+
sampleLoadedFail: "Sample load failed",
|
|
111
|
+
loadFormTemplate: "Load This",
|
|
112
|
+
loadFormTemplateHint: "Are you sure to load this template?",
|
|
113
|
+
loadFormTemplateSuccess: "Load form template success!",
|
|
114
|
+
loadFormTemplateFailed: "Load form template failed.",
|
|
115
|
+
currentNodeCannotBeSelected: "The current node cannot be selected.",
|
|
116
|
+
noSelectedWidgetHint: "No selected widget.",
|
|
117
|
+
widgetSetting: "Widget Prop",
|
|
118
|
+
formSetting: "Form Prop",
|
|
119
|
+
prompt: "Prompt",
|
|
120
|
+
confirm: "OK",
|
|
121
|
+
cancel: "Cancel",
|
|
122
|
+
import: "Import",
|
|
123
|
+
importJsonHint: "The code to be imported should have the following JSON format.",
|
|
124
|
+
invalidOptionsData: "Invalid data of options:",
|
|
125
|
+
lastPaneCannotBeDeleted: "The last pane cannot be deleted.",
|
|
126
|
+
duplicateName: "Duplicate name: ",
|
|
127
|
+
nameRequired: "Name required.",
|
|
128
|
+
numberValidator: "Number",
|
|
129
|
+
letterValidator: "Letter",
|
|
130
|
+
letterAndNumberValidator: "LetterAndNumber",
|
|
131
|
+
mobilePhoneValidator: "MobilePhone",
|
|
132
|
+
emailValidator: "Email",
|
|
133
|
+
urlValidator: "URL",
|
|
134
|
+
noChineseValidator: "Non-Chinese",
|
|
135
|
+
chineseValidator: "Chinese",
|
|
136
|
+
rowspanNotConsistentForMergeEntireRow: "Cells in this row don't have the same rowspan, operation failed.",
|
|
137
|
+
colspanNotConsistentForMergeEntireColumn: "Cells in this column don't have the same colspan, operation failed.",
|
|
138
|
+
rowspanNotConsistentForDeleteEntireRow: "Cells in this row don't have the same rowspan, operation failed.",
|
|
139
|
+
colspanNotConsistentForDeleteEntireColumn: "Cells in this column don't have the same colspan, operation failed.",
|
|
140
|
+
lastColCannotBeDeleted: "The last col cannot be deleted.",
|
|
141
|
+
lastRowCannotBeDeleted: "The last row cannot be deleted."
|
|
142
|
+
},
|
|
143
|
+
toolbar: {
|
|
144
|
+
undoHint: "Undo",
|
|
145
|
+
redoHint: "Redo",
|
|
146
|
+
pcLayout: "PC",
|
|
147
|
+
padLayout: "Pad",
|
|
148
|
+
mobileLayout: "H5",
|
|
149
|
+
nodeTreeHint: "Tree View Of Component Hierarchy",
|
|
150
|
+
nodeTreeTitle: "Tree View Of Component Hierarchy",
|
|
151
|
+
clear: "Clear",
|
|
152
|
+
preview: "Preview",
|
|
153
|
+
importJson: "Import",
|
|
154
|
+
exportJson: "Export",
|
|
155
|
+
exportCode: "Codes",
|
|
156
|
+
generateCode: "Generate Code",
|
|
157
|
+
generateSFC: "Generate SFC"
|
|
158
|
+
},
|
|
159
|
+
setting: {
|
|
160
|
+
basicSetting: "Basic Setting",
|
|
161
|
+
attributeSetting: "Attribute Setting",
|
|
162
|
+
commonSetting: "Common Setting",
|
|
163
|
+
advancedSetting: "Advanced Setting",
|
|
164
|
+
eventSetting: "Event Setting",
|
|
165
|
+
uniqueName: "Unique Name",
|
|
166
|
+
editNameHelp: "Press enter to confirm the modification",
|
|
167
|
+
label: "Label",
|
|
168
|
+
displayType: "Type",
|
|
169
|
+
defaultValue: "Default Value",
|
|
170
|
+
placeholder: "Placeholder",
|
|
171
|
+
startPlaceholder: "Start Placeholder",
|
|
172
|
+
endPlaceholder: "End Placeholder",
|
|
173
|
+
widgetColumnWidth: "Width",
|
|
174
|
+
widgetSize: "Size",
|
|
175
|
+
fontSize: "Font Size",
|
|
176
|
+
showStops: "Show Stops",
|
|
177
|
+
displayStyle: "Display Style",
|
|
178
|
+
inlineLayout: "inline",
|
|
179
|
+
blockLayout: "block",
|
|
180
|
+
buttonStyle: "Show As Button",
|
|
181
|
+
border: "Show Border",
|
|
182
|
+
labelWidth: "Width Of Label",
|
|
183
|
+
rows: "Rows",
|
|
184
|
+
labelHidden: "Hide Label",
|
|
185
|
+
required: "Required",
|
|
186
|
+
requiredHint: "Failure Hint",
|
|
187
|
+
validation: "Validation",
|
|
188
|
+
validationHelp: "Regular expressions supported",
|
|
189
|
+
validationHint: "Validation Hint",
|
|
190
|
+
readonly: "Readonly",
|
|
191
|
+
disabled: "Disabled",
|
|
192
|
+
hidden: "Hidden",
|
|
193
|
+
fixedQuery: "Fixed Query Condition",
|
|
194
|
+
fixedQueryHelp:
|
|
195
|
+
"Keeps its value when Refresh / Revert / Confirm runs, and is read-only in Query Condition Setting",
|
|
196
|
+
textContent: "Text",
|
|
197
|
+
htmlContent: "HTML",
|
|
198
|
+
clearable: "Clearable",
|
|
199
|
+
areaDataType: "Area Level",
|
|
200
|
+
areaDataType0: "Province",
|
|
201
|
+
areaDataType1: "Province/City",
|
|
202
|
+
areaDataType2: "Province/City/District",
|
|
203
|
+
areaDataType3: "Province/City/District/Town",
|
|
204
|
+
areaName: "Area Name Field",
|
|
205
|
+
areaNameHint: "Form field name for area full name",
|
|
206
|
+
areaMinLevel: "Min Area Level",
|
|
207
|
+
areaMinLevelHint:
|
|
208
|
+
"Selection must reach at least this level (unless the area has no children)",
|
|
209
|
+
areaMinLevelNone: "None",
|
|
210
|
+
areaMinLevel0: "Province",
|
|
211
|
+
areaMinLevel1: "City",
|
|
212
|
+
areaMinLevel2: "District",
|
|
213
|
+
areaMinLevel3: "Town",
|
|
214
|
+
editable: "Editable",
|
|
215
|
+
format: "Format",
|
|
216
|
+
valueFormat: "Value Format",
|
|
217
|
+
showPassword: "Show Reveal",
|
|
218
|
+
filterable: "Filterable",
|
|
219
|
+
allowCreate: "Allow Create",
|
|
220
|
+
remote: "Remote Query",
|
|
221
|
+
automaticDropdown: "Automatic Dropdown",
|
|
222
|
+
multiple: "Multiple",
|
|
223
|
+
multipleLimit: "Multiple Limit",
|
|
224
|
+
checkStrictly: "Any Level Selectable",
|
|
225
|
+
contentPosition: "Content Position",
|
|
226
|
+
dividerDirection: "Direction",
|
|
227
|
+
plain: "Plain",
|
|
228
|
+
round: "Round",
|
|
229
|
+
circle: "Circle",
|
|
230
|
+
icon: "Icon",
|
|
231
|
+
optionsSetting: "Options Setting",
|
|
232
|
+
addOption: "Add Option",
|
|
233
|
+
importOptions: "Import Options",
|
|
234
|
+
resetDefault: "Reset Default",
|
|
235
|
+
uploadSetting: "Upload Setting",
|
|
236
|
+
uploadURL: "Upload URL",
|
|
237
|
+
uploadTip: "Tip Content",
|
|
238
|
+
withCredentials: "Send Cookie",
|
|
239
|
+
multipleSelect: "File Multi-select",
|
|
240
|
+
showFileList: "Show File List",
|
|
241
|
+
limit: "Max Upload Number",
|
|
242
|
+
fileMaxSize: "Max Size(MB)",
|
|
243
|
+
fileTypes: "Upload File Types",
|
|
244
|
+
fileTypesHelp: "Allows to add more file types",
|
|
245
|
+
fileTypesCategoryHelp: "Check a category to select all its formats at once, or type in other extensions; empty means no restriction",
|
|
246
|
+
fileTypesPlaceholder: "No format restriction",
|
|
247
|
+
fileTypeCategory: {
|
|
248
|
+
image: "Image",
|
|
249
|
+
video: "Video",
|
|
250
|
+
audio: "Audio",
|
|
251
|
+
word: "Word",
|
|
252
|
+
excel: "Excel",
|
|
253
|
+
ppt: "PPT",
|
|
254
|
+
pdf: "PDF",
|
|
255
|
+
text: "Text",
|
|
256
|
+
archive: "Archive",
|
|
257
|
+
},
|
|
258
|
+
headers: "Request Headers",
|
|
259
|
+
cellWidth: "Width",
|
|
260
|
+
cellHeight: "Height",
|
|
261
|
+
gridColHeight: "Height Of Col(px)",
|
|
262
|
+
gutter: "Gutter(px)",
|
|
263
|
+
columnSetting: "Cols Setting",
|
|
264
|
+
colsOfGrid: "Cols Of Grid:",
|
|
265
|
+
colSpanTitle: "Spans Of Col",
|
|
266
|
+
colOffsetTitle: "Offset Of Col",
|
|
267
|
+
colPushTitle: "Push Of Col",
|
|
268
|
+
colPullTitle: "Pull Of Col",
|
|
269
|
+
addColumn: "Add Column",
|
|
270
|
+
responsive: "Responsive",
|
|
271
|
+
tabPaneSetting: "Tab Panes",
|
|
272
|
+
addTabPane: "Add Tab Pane",
|
|
273
|
+
paneActive: "Active",
|
|
274
|
+
customLabelIcon: "Custom Label",
|
|
275
|
+
labelIconClass: "Label Icon Class",
|
|
276
|
+
labelIconPosition: "Label Icon Position",
|
|
277
|
+
labelTooltip: "Label Tooltip",
|
|
278
|
+
minValue: "Min Value",
|
|
279
|
+
maxValue: "Max Value",
|
|
280
|
+
precision: "Precision",
|
|
281
|
+
step: "Step",
|
|
282
|
+
controlsPosition: "Controls Position",
|
|
283
|
+
minLength: "Min Length",
|
|
284
|
+
maxLength: "Max Length",
|
|
285
|
+
showWordLimit: "Show Word Limit",
|
|
286
|
+
prefixIcon: "Prefix Icon",
|
|
287
|
+
suffixIcon: "Suffix Icon",
|
|
288
|
+
inputButton: "Input Button Setting",
|
|
289
|
+
appendButton: "Append Button",
|
|
290
|
+
appendButtonDisabled: "Button Disabled",
|
|
291
|
+
appendButtonIcon: "Append Button Icon",
|
|
292
|
+
buttonIcon: "Button Icon",
|
|
293
|
+
switchWidth: "Width of Switch(px)",
|
|
294
|
+
activeText: "Active Text",
|
|
295
|
+
inactiveText: "Inactive Text",
|
|
296
|
+
activeColor: "Active Color",
|
|
297
|
+
inactiveColor: "Inactive Color",
|
|
298
|
+
maxStars: "Stars Max Number",
|
|
299
|
+
lowThreshold: "Low Threshold",
|
|
300
|
+
highThreshold: "High Threshold",
|
|
301
|
+
allowHalf: "Allow Half",
|
|
302
|
+
showText: "Show Text",
|
|
303
|
+
showScore: "Show Score",
|
|
304
|
+
range: "Range",
|
|
305
|
+
vertical: "Vertical",
|
|
306
|
+
showBlankRow: "Show Blank Row",
|
|
307
|
+
showRowNumber: "Show Row Number",
|
|
308
|
+
actionColumnPosition: "Position Of Buttons Column",
|
|
309
|
+
insertColumnToLeft: "insert column to left",
|
|
310
|
+
insertColumnToRight: "insert column to right",
|
|
311
|
+
insertRowAbove: "insert row above",
|
|
312
|
+
insertRowBelow: "insert row below",
|
|
313
|
+
mergeLeftColumn: "merge left cell",
|
|
314
|
+
mergeRightColumn: "merge right cell",
|
|
315
|
+
mergeEntireRow: "merge entire row",
|
|
316
|
+
mergeRowAbove: "merge cell above",
|
|
317
|
+
mergeRowBelow: "merge cell below",
|
|
318
|
+
mergeEntireColumn: "merge entire column",
|
|
319
|
+
undoMergeCol: "undo merge column",
|
|
320
|
+
undoMergeRow: "undo merge row",
|
|
321
|
+
deleteEntireCol: "delete entire column",
|
|
322
|
+
deleteEntireRow: "delete entire row",
|
|
323
|
+
widgetName: "Unique Name",
|
|
324
|
+
formSize: "Size",
|
|
325
|
+
labelPosition: "Position Of Label",
|
|
326
|
+
topPosition: "Top",
|
|
327
|
+
leftPosition: "Left",
|
|
328
|
+
labelAlign: "Label Align",
|
|
329
|
+
leftAlign: "Left",
|
|
330
|
+
centerAlign: "Center",
|
|
331
|
+
rightAlign: "Right",
|
|
332
|
+
formCss: "Form CSS",
|
|
333
|
+
addCss: "Edit",
|
|
334
|
+
customClass: "Custom Class",
|
|
335
|
+
globalFunctions: "Global Functions",
|
|
336
|
+
addEventHandler: "Edit",
|
|
337
|
+
editWidgetEventHandler: "Edit Widget Event Handler",
|
|
338
|
+
editFormEventHandler: "Edit Form Event Handler",
|
|
339
|
+
formSFCSetting: "SFC Setting",
|
|
340
|
+
formModelName: "Model Name",
|
|
341
|
+
formRefName: "Ref Name",
|
|
342
|
+
formRulesName: "Rules Name",
|
|
343
|
+
syntaxCheckWarning: "Syntax error in the javascript codes, please check again!",
|
|
344
|
+
title: "Title",
|
|
345
|
+
dialogWidth: "Width(px/%)",
|
|
346
|
+
fullscreen: "Full Screen",
|
|
347
|
+
showModal: "Show Modal",
|
|
348
|
+
showClose: "Show Close",
|
|
349
|
+
closeOnClickModal: "Click Modal To Close ",
|
|
350
|
+
closeOnPressEscape: "Press Esc To Close",
|
|
351
|
+
center: "Center Header And Footer",
|
|
352
|
+
readMode: "Form Readonly",
|
|
353
|
+
disabledMode: "Form Disabled",
|
|
354
|
+
okButtonLabel: "Label Of OK Btn",
|
|
355
|
+
okButtonHidden: "Hide OK Btn",
|
|
356
|
+
cancelButtonLabel: "Label Of Cancel Btn",
|
|
357
|
+
cancelButtonHidden: "Hide Cancel Btn",
|
|
358
|
+
drawSize: "Size(px/%)",
|
|
359
|
+
drawDirection: "Direction",
|
|
360
|
+
tableWidth: "Width(px/%)",
|
|
361
|
+
tableHeight: "Height(px/%)",
|
|
362
|
+
showCheckBox: "Show CheckBox",
|
|
363
|
+
showIndex: "Show Row Number",
|
|
364
|
+
showPagination: "Show Pagination",
|
|
365
|
+
smallPagination: "Small Pagination",
|
|
366
|
+
tableColEdit: "Edit Cols",
|
|
367
|
+
tableDataEdit: "Edit Data",
|
|
368
|
+
stripe: "Stripe",
|
|
369
|
+
showSummary: "Show Summary",
|
|
370
|
+
rowSpacing: "Row Spacing(px)",
|
|
371
|
+
editAction: "Edit...",
|
|
372
|
+
columnName: "Name",
|
|
373
|
+
columnLabel: "Label",
|
|
374
|
+
columnWidth: "Width(px/%)",
|
|
375
|
+
visibleColumn: "Visible",
|
|
376
|
+
sortableColumn: "Sortable",
|
|
377
|
+
fixedColumn: "Fixed",
|
|
378
|
+
alignTypeOfColumn: "Align",
|
|
379
|
+
formatOfColumn: "Format",
|
|
380
|
+
customRenderGroup: "Custom Render",
|
|
381
|
+
renderFunction: "Render",
|
|
382
|
+
actionColumn: "Action",
|
|
383
|
+
addTableColumn: "Add New Column",
|
|
384
|
+
deleteTableColumn: "Delete This Column",
|
|
385
|
+
onlyOneColumnCannotBeDeleted: "The last column cannot be deleted.",
|
|
386
|
+
showButtonsColumn: "Buttons Column",
|
|
387
|
+
buttonsColumnEdit: "Edit Buttons",
|
|
388
|
+
buttonsColumnTitle: "Title",
|
|
389
|
+
buttonsColumnWidth: "Width(px)",
|
|
390
|
+
operationButtonsSetting: "Buttons Setting",
|
|
391
|
+
operationButtonName: "Name",
|
|
392
|
+
operationButtonLabel: "Text",
|
|
393
|
+
operationButtonType: "Type",
|
|
394
|
+
operationButtonSize: "Size",
|
|
395
|
+
operationButtonRound: "Round",
|
|
396
|
+
operationButtonHidden: "Hidden",
|
|
397
|
+
operationButtonDisabled: "Disabled",
|
|
398
|
+
addOperationButton: "Add New Button",
|
|
399
|
+
deleteOperationButtonHint: "Delete this button?",
|
|
400
|
+
operationButtonDuplicatedNameError: "Duplicate button name.",
|
|
401
|
+
dsEnabled: "Use Datasource",
|
|
402
|
+
dsName: "Datasource Name",
|
|
403
|
+
labelKeyName: "Label Key",
|
|
404
|
+
valueKeyName: "Value Key",
|
|
405
|
+
childrenKeyName: "Children Key",
|
|
406
|
+
dataSource: "Datasource",
|
|
407
|
+
noDataSource: "No datasource.",
|
|
408
|
+
addDataSource: "Add Datasource",
|
|
409
|
+
dataSourceSetting: "Datasource Setting",
|
|
410
|
+
deleteDataSourceHint: "Delete this datasource?",
|
|
411
|
+
fieldValueRequired: "Value can not be null",
|
|
412
|
+
dsUniqueName: "Unique Name",
|
|
413
|
+
dsRequestURL: "Request URL",
|
|
414
|
+
dsRequestaccessType: "Request URL Type",
|
|
415
|
+
dsURLStringType: "String",
|
|
416
|
+
dsURLVariableType: "Expression",
|
|
417
|
+
dsDescription: "Description",
|
|
418
|
+
dsRequestMethod: "Request Method",
|
|
419
|
+
dsRequestHeaders: "Headers",
|
|
420
|
+
addRequestHeader: "Add Header",
|
|
421
|
+
dsRequestParams: "Params",
|
|
422
|
+
addRequestParam: "Add Param",
|
|
423
|
+
dsRequestData: "Data",
|
|
424
|
+
addRequestData: "Add Data",
|
|
425
|
+
dsRequestValueStringType: "String",
|
|
426
|
+
dsRequestValueNumberType: "Number",
|
|
427
|
+
dsRequestValueBooleanType: "Boolean",
|
|
428
|
+
dsRequestValueVariableType: "Variable",
|
|
429
|
+
dsRequestNameInputPlaceholder: "Name",
|
|
430
|
+
dsRequestTypeInputPlaceholder: "Type",
|
|
431
|
+
dsRequestValueInputPlaceholder: "Value",
|
|
432
|
+
dsConfigHandlerTitle: "1. Config Handler",
|
|
433
|
+
dsDataHandlerTitle: "2. Data Handler",
|
|
434
|
+
dsErrorHandlerTitle: "3. Error Handler",
|
|
435
|
+
testDataSource: "Test Datasource",
|
|
436
|
+
saveDataSource: "Save Datasource",
|
|
437
|
+
dsvTitle: "Datasource Variable",
|
|
438
|
+
dsRequestResult: "Result Data",
|
|
439
|
+
executeDataSource: "Run Test",
|
|
440
|
+
clearRequestResult: "Clear Result",
|
|
441
|
+
dsRequestNumberTypeError: "Number value error",
|
|
442
|
+
dsRequestBooleanTypeError: "Boolean value error",
|
|
443
|
+
dsValidationError: "Datasource check failure.",
|
|
444
|
+
dsDuplicatedNameError: "Duplicate datasource name.",
|
|
445
|
+
|
|
446
|
+
showTreeCheckBox: "Show CheckBox",
|
|
447
|
+
lazy: "Lazy",
|
|
448
|
+
treeDataEdit: "Tree Data Edit",
|
|
449
|
+
defaultExpandAllNode: "Default Expand All",
|
|
450
|
+
expandRetractAllNode: "Expand/Retract All",
|
|
451
|
+
selectClearAllNode: "Check/Uncheck All",
|
|
452
|
+
nodeEdit: "Show Node Action",
|
|
453
|
+
expandAllNode: "Expand All",
|
|
454
|
+
retractAllNode: "Retract All",
|
|
455
|
+
selectAllNode: "Check All",
|
|
456
|
+
clearAllNode: "Uncheck All",
|
|
457
|
+
draggable: "Node Draggable",
|
|
458
|
+
filter: "Filter",
|
|
459
|
+
expandOnClickNode: "Expand On Click",
|
|
460
|
+
treeNodeCheckStrictly: "Check Node Strictly",
|
|
461
|
+
inputNodeName: "Input Name Of Node",
|
|
462
|
+
deleteNode: "Delete this node?",
|
|
463
|
+
nodeDeleted: "Node deleted",
|
|
464
|
+
tips: "Tips",
|
|
465
|
+
onNodeCheckRemark: "On Node Check",
|
|
466
|
+
onNodeClickRemark: "On Node Click",
|
|
467
|
+
onNodeContextmenuRemark: "ON Node Contextmenu",
|
|
468
|
+
enterForQuery: "Enter For Query",
|
|
469
|
+
add: "Add",
|
|
470
|
+
delete: "Delete"
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}
|