cloud-web-corejs 1.0.54-dev.78 → 1.0.54-dev.781
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 +200 -183
- package/src/App.vue +73 -75
- package/src/api/user.js +85 -40
- package/src/components/Qrcode/fileParse.vue +0 -1
- package/src/components/Tinymce/index.vue +112 -71
- package/src/components/VabUpload/fileLibraryDialog.vue +296 -0
- package/src/components/VabUpload/image-viewer.vue +2 -2
- package/src/components/VabUpload/index.js +69 -1
- package/src/components/VabUpload/index.vue +13 -2
- package/src/components/VabUpload/mixins/fileLibraryDialog.js +1112 -0
- package/src/components/VabUpload/mixins.js +1964 -2
- package/src/components/VabUpload/propertiesDialog.vue +1 -1
- package/src/components/VabUpload/view.vue +209 -120
- package/src/components/advancedSearchDialog/mixins.js +28 -1
- package/src/components/base-textarea/index.vue +104 -0
- package/src/components/baseAlert/index.js +44 -1
- package/src/components/baseAlert/index.vue +24 -20
- package/src/components/baseAlert/mixins.js +61 -1
- package/src/components/baseArea/index.vue +1628 -0
- package/src/components/baseAttachment/index.vue +49 -40
- package/src/components/baseAttachment/install.js +21 -5
- package/src/components/baseAttachment/mixins.js +310 -1
- package/src/components/baseInputBatch/mixins.js +58 -1
- package/src/components/baseInputExport/index.vue +21 -14
- package/src/components/baseInputExport/mixins.js +391 -1
- package/src/components/baseInputNumber/index.vue +9 -9
- package/src/components/baseTabs/index.vue +16 -8
- package/src/components/baseTabs/mixins.js +177 -1
- package/src/components/cnPrint/index.js +44 -1
- package/src/components/cnPrint/mixins.js +189 -1
- package/src/components/code-editor/index.vue +131 -62
- package/src/components/confirmDialog/index.js +41 -1
- package/src/components/confirmDialog/index.vue +24 -17
- package/src/components/confirmDialog/mixins.js +31 -1
- package/src/components/errorMsg/index.js +47 -3
- package/src/components/errorMsg/index.vue +78 -70
- package/src/components/errorMsg/mixins.js +103 -5
- package/src/components/excelExport/button.vue +86 -24
- package/src/components/excelExport/exportFieldDialog.vue +246 -90
- package/src/components/excelExport/index.js +65 -6
- package/src/components/excelExport/index.vue +109 -26
- package/src/components/excelExport/mixins.js +1132 -8
- package/src/components/excelImport/index.js +13 -13
- package/src/components/excelImport/mixins.js +2 -1
- package/src/components/fileLibrary/categoryMoveDialog.vue +109 -109
- package/src/components/fileLibrary/fileObjAuthDialog.vue +297 -208
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -0
- package/src/components/fileLibrary/filterDialog.vue +454 -0
- package/src/components/fileLibrary/index.vue +1109 -687
- package/src/components/fileLibrary/mixins/categoryMoveDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileCategoryDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileHistoryDialogMixins.js +2 -2
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +339 -211
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +31 -27
- package/src/components/fileLibrary/mixins/fileObjAuthEditMixin.js +4 -4
- package/src/components/fileLibrary/mixins/indexMixins.js +230 -101
- package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +62 -3
- package/src/components/fileLibrary/mixins/recycleBinDialogMixins.js +3 -3
- package/src/components/fileLibrary/propertiesDialog.vue +190 -145
- package/src/components/fileLibrary/recycleBinDialog.vue +237 -236
- package/src/components/fileLibrary/shareDialog.vue +1 -1
- package/src/components/formDialog/README.md +241 -0
- package/src/components/formDialog/index.js +35 -0
- package/src/components/formDialog/index.vue +724 -0
- package/src/components/formOplog/mixins.js +85 -4
- package/src/components/hiprint/css/bootstrap.min.css +6 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.eot +0 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.svg +288 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.woff +0 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/src/components/hiprint/hiprint.bundle.js +15 -3
- package/src/components/hiprint/view/design/index.vue +140 -47
- package/src/components/hiprint/view/design/mixins.js +611 -1
- package/src/components/hiprint/view/design/preview.vue +75 -52
- package/src/components/hiprint/view/json-view.vue +31 -31
- package/src/components/jdPrint/index.js +44 -1
- package/src/components/jdPrint/mixins.js +208 -1
- package/src/components/jsonImport/exportUtil.js +106 -0
- package/src/components/jsonImport/index.js +212 -17
- package/src/components/jsonImport/mixins.js +350 -16
- package/src/components/langImport/index.js +80 -1
- package/src/components/langImport/mixins.js +487 -1
- package/src/components/langTag/mixins/addButton.js +51 -5
- package/src/components/langTag/mixins/deleteButton.js +55 -5
- package/src/components/langTag/mixins/view.js +47 -5
- package/src/components/luckysheet/dialog.vue +159 -0
- package/src/components/luckysheet/export.js +595 -0
- package/src/components/luckysheet/fileUtils.js +147 -0
- package/src/components/luckysheet/index.js +72 -0
- package/src/components/luckysheet/templateJson.js +12078 -0
- package/src/components/luckysheet/view.vue +210 -0
- package/src/components/micro-view-host/contract.js +66 -0
- package/src/components/micro-view-host/index.vue +148 -0
- package/src/components/mobile/file/index.vue +10 -0
- package/src/components/mobile/wf/mixins/wfModifyDialogMixin.js +51 -47
- package/src/components/obsUpload/index.js +34 -0
- package/src/components/obsUpload/index.vue +234 -0
- package/src/components/obsUpload/mixins.js +1542 -0
- package/src/components/onlineTalk/index.vue +1 -1
- package/src/components/onlineTalk/mixins.js +852 -1
- package/src/components/onlineTalk/talkUserDialog.vue +280 -0
- package/src/components/oplogTable/mixins.js +83 -4
- package/src/components/pddPrint/index.js +44 -1
- package/src/components/pddPrint/mixins.js +252 -1
- package/src/components/projectTag/mixins/addButton.js +52 -1
- package/src/components/projectTag/mixins/deleteButton.js +52 -1
- package/src/components/projectTag/mixins/view.js +43 -1
- package/src/components/scriptDescription/button.vue +12 -4
- package/src/components/scriptDescription/mixins.js +30 -1
- package/src/components/scriptTest/mixins.js +90 -1
- package/src/components/statusTag/mixins.js +66 -1
- package/src/components/table/CellSlot.vue +12 -9
- package/src/components/table/config.js +74 -1
- package/src/components/table/index.js +1215 -11
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.es6.min.js +11028 -0
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.min.css +200 -0
- package/src/components/table/tableForm.vue +99 -63
- package/src/components/table/tableFormMixin.js +285 -1
- package/src/components/table/util/index.js +337 -0
- package/src/components/table/vxeFilter/index.js +153 -1
- package/src/components/table/vxeFilter/mixin.js +310 -6
- package/src/components/tempStorage/index.vue +76 -55
- package/src/components/tempStorage/tempStorageDialog.vue +179 -54
- package/src/components/vb-tabs/x-tabs.vue +57 -30
- package/src/components/vipPrint/index.js +44 -1
- package/src/components/vipPrint/mixins.js +268 -1
- package/src/components/wf/addOpinionButton.vue +57 -0
- package/src/components/wf/content.vue +834 -362
- package/src/components/wf/mixins/addOpinionButton.js +53 -0
- package/src/components/wf/mixins/setCandidateButton.js +161 -0
- package/src/components/wf/mixins/setCandidateDialog.js +217 -5
- package/src/components/wf/mixins/setCandidateDialog2.js +252 -0
- package/src/components/wf/mixins/wfFlowEleScriptDialog.js +131 -0
- package/src/components/wf/mixins/wfTaskUserRangeDialog.js +69 -0
- package/src/components/wf/setCandidateButton.vue +40 -0
- package/src/components/wf/setCandidateDialog.vue +10 -0
- package/src/components/wf/setCandidateDialog2.vue +105 -0
- package/src/components/wf/wf.js +2224 -30
- package/src/components/wf/wfFlowEleScriptDialog.vue +89 -0
- package/src/components/wf/wfStartDialog.vue +66 -42
- package/src/components/wf/wfTaskUserRangeDialog.vue +65 -0
- package/src/components/wf/wfUtil.js +280 -1
- 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/220/216/345/217/260/345/255/227/346/256/265/357/274/210/345/212/250/346/200/201/347/224/237/346/210/220/357/274/211JSON /350/257/264/346/230/216.md" +1286 -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/form-designer/designer.js +2027 -29
- package/src/components/xform/form-designer/form-widget/components/gantt/index.vue +434 -0
- package/src/components/xform/form-designer/form-widget/container-widget/containerMixin.js +108 -1
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +291 -8
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +14 -1
- package/src/components/xform/form-designer/form-widget/container-widget/detail-pane-widget.vue +3 -2
- package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +3 -3
- package/src/components/xform/form-designer/form-widget/dialog/baseFormulaDialog copy.vue +971 -0
- package/src/components/xform/form-designer/form-widget/dialog/baseFormulaDialog.vue +971 -0
- package/src/components/xform/form-designer/form-widget/dialog/exportDialog.vue +13 -0
- package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +320 -0
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +85 -49
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +6 -3
- package/src/components/xform/form-designer/form-widget/dialog/formulaDialog.vue +799 -0
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +30 -8
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1774 -19
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +222 -76
- package/src/components/xform/form-designer/form-widget/field-widget/a-link-widget.vue +67 -54
- package/src/components/xform/form-designer/form-widget/field-widget/a-text-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/area-select-widget.vue +272 -0
- package/src/components/xform/form-designer/form-widget/field-widget/autocomplete-widget.vue +119 -0
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +217 -184
- 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 +209 -90
- package/src/components/xform/form-designer/form-widget/field-widget/census-widget.vue +41 -35
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +18 -7
- package/src/components/xform/form-designer/form-widget/field-widget/color-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/field-widget/copy_button-widget.vue +95 -0
- package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +14 -3
- package/src/components/xform/form-designer/form-widget/field-widget/date-widget.vue +48 -5
- package/src/components/xform/form-designer/form-widget/field-widget/download-button-widget.vue +133 -0
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-item-widget.vue +86 -0
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-widget.vue +170 -0
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1941 -16
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +657 -108
- package/src/components/xform/form-designer/form-widget/field-widget/gantt-widget.vue +964 -0
- package/src/components/xform/form-designer/form-widget/field-widget/html-text-widget.vue +6 -2
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +22 -11
- package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +90 -0
- package/src/components/xform/form-designer/form-widget/field-widget/input-widget.vue +7 -2
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/autocomplete-mixin.js +451 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/date-limit-mixin.js +157 -0
- 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/utc-transform-mixin.js +75 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/vabsearch-mixin.js +192 -0
- package/src/components/xform/form-designer/form-widget/field-widget/multiSearch-widget.vue +53 -0
- package/src/components/xform/form-designer/form-widget/field-widget/number-widget.vue +119 -81
- package/src/components/xform/form-designer/form-widget/field-widget/oplog-widget.vue +186 -0
- package/src/components/xform/form-designer/form-widget/field-widget/print-button-widget.vue +55 -28
- package/src/components/xform/form-designer/form-widget/field-widget/print-detail-button-widget.vue +119 -0
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +156 -54
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +26 -6
- package/src/components/xform/form-designer/form-widget/field-widget/save_submit_wf_button-widget.vue +112 -0
- package/src/components/xform/form-designer/form-widget/field-widget/script-input-widget.vue +146 -0
- package/src/components/xform/form-designer/form-widget/field-widget/search_button-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-button-widget.vue +86 -0
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +92 -0
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +24 -9
- package/src/components/xform/form-designer/form-widget/field-widget/singerSearch-widget.vue +53 -0
- package/src/components/xform/form-designer/form-widget/field-widget/singleUpload-widget.vue +145 -0
- package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +16 -1
- package/src/components/xform/form-designer/form-widget/field-widget/static-text-widget.vue +8 -3
- package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +93 -49
- 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/table-export-button-widget.vue +38 -38
- package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +147 -0
- package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +111 -34
- package/src/components/xform/form-designer/form-widget/field-widget/time-range-widget.vue +4 -3
- package/src/components/xform/form-designer/form-widget/field-widget/time-widget.vue +2 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabSearch-widget.vue +3 -171
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +188 -70
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload2-widget.vue +753 -0
- package/src/components/xform/form-designer/form-widget/field-widget/vue-page-widget.vue +231 -0
- package/src/components/xform/form-designer/form-widget/index.vue +6 -1
- package/src/components/xform/form-designer/form-widget/indexMixin.js +184 -2
- package/src/components/xform/form-designer/index.vue +195 -191
- package/src/components/xform/form-designer/indexMixin.js +855 -24
- package/src/components/xform/form-designer/refMixinDesign.js +27 -28
- package/src/components/xform/form-designer/setting-panel/form-dynamicField-setting.vue +601 -0
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +1553 -629
- package/src/components/xform/form-designer/setting-panel/index.vue +313 -305
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +370 -12
- package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +585 -302
- package/src/components/xform/form-designer/setting-panel/property-editor/a-link-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/a-text-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/autoValueEnabled-editor.vue +38 -0
- 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 +6 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/colorClass-editor.vue +28 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/commonAttributeEnabled-editor.vue +41 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +124 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +1154 -1048
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/edit-tree-button-group-config-dialog.vue +281 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/exportItemColumns-dialog.vue +432 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/onCheckboxChange-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +1632 -592
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail-pane/detail-pane-editor.vue +3 -3
- 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-list-h5/list-h5-editor.vue +34 -46
- package/src/components/xform/form-designer/setting-panel/property-editor/container-table/table-dynamicField-editor.vue +344 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tree/tree-customClass-editor.vue +31 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/copyButton-editor.vue +36 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/downloadButtonFlag-editor.vue +32 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +133 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/eventMixin.js +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +23 -8
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaDataType-editor.vue +25 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaMinLevel-editor.vue +50 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaName-editor.vue +20 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-autocomplete/autocomplete-vabSearchName-editor.vue +199 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-baseAttachment/baseAttachment-fileTypes-editor.vue +23 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindEvent-editor.vue +35 -20
- 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 +64 -5
- package/src/components/xform/form-designer/setting-panel/property-editor/field-cascader/cascader-multiple-editor.vue +8 -3
- 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-cascader/showAllLevels-editor.vue +21 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-dateLimit-editor.vue +157 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-item-editor.vue +21 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-menu-editor.vue +59 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-gantt/gantt-editor.vue +36 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +75 -21
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +96 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +44 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +115 -0
- 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-script-input/script-input-editor.vue +55 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/preWrap-editor.vue +23 -0
- 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 +67 -41
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-button-editor.vue +56 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +71 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchName-editor.vue +13 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +33 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/vabUpload-fileTypes-editor.vue +23 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload2/field-vabUpload2-editor.vue +66 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vue-page/vue-page-editor.vue +48 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/fileTypesEditorMixin.js +116 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/fileTypesSelect.vue +130 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +107 -19
- package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +137 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/formula-editor.vue +721 -466
- package/src/components/xform/form-designer/setting-panel/property-editor/labelColor-editor.vue +20 -11
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconClass-editor.vue +17 -16
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +25 -25
- package/src/components/xform/form-designer/setting-panel/property-editor/labelTooltip-editor.vue +67 -13
- 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/multiple-editor.vue +19 -14
- 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 +127 -50
- package/src/components/xform/form-designer/setting-panel/property-editor/oplog-editor.vue +31 -0
- 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 +349 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/required-editor.vue +10 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/requiredHint-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/showViewButton-editor.vue +29 -0
- 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 +42 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +304 -19
- package/src/components/xform/form-designer/setting-panel/property-editor/utcTransformEnabled-editor.vue +19 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/validation-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/validationHint-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +372 -50
- package/src/components/xform/form-designer/setting-panel/property-editor/widgetShowRuleFlag-editor.vue +263 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +369 -324
- package/src/components/xform/form-designer/setting-panel/widgetPropertyDialogMixin.js +186 -0
- package/src/components/xform/form-designer/toolbar-panel/index.vue +267 -103
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +655 -24
- package/src/components/xform/form-designer/widget-panel/index.vue +389 -321
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +334 -2
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +4535 -3141
- package/src/components/xform/form-render/compareDelList.vue +83 -0
- package/src/components/xform/form-render/compareView.vue +76 -0
- package/src/components/xform/form-render/container-item/containerItemMixin.js +404 -11
- package/src/components/xform/form-render/container-item/data-table-item.vue +221 -203
- package/src/components/xform/form-render/container-item/data-table-mixin.js +3716 -858
- package/src/components/xform/form-render/container-item/detail-h5-item.vue +173 -172
- package/src/components/xform/form-render/container-item/detail-item.vue +287 -158
- package/src/components/xform/form-render/container-item/detail-pane-item.vue +17 -3
- package/src/components/xform/form-render/container-item/dynamicFieldEngine.js +285 -0
- package/src/components/xform/form-render/container-item/dynamicFieldMixin.js +416 -0
- package/src/components/xform/form-render/container-item/grid-col-item.vue +10 -3
- package/src/components/xform/form-render/container-item/grid-item.vue +1 -1
- package/src/components/xform/form-render/container-item/list-h5-item.vue +1184 -419
- package/src/components/xform/form-render/container-item/sub-form-item.vue +10 -2
- package/src/components/xform/form-render/container-item/tab-item.vue +125 -88
- package/src/components/xform/form-render/container-item/table-cell-item.vue +38 -32
- package/src/components/xform/form-render/container-item/table-item.vue +7 -7
- package/src/components/xform/form-render/container-item/table2-cell-item.vue +53 -34
- package/src/components/xform/form-render/container-item/table2-item.vue +198 -99
- package/src/components/xform/form-render/container-item/tree-item.vue +32 -11
- package/src/components/xform/form-render/dynamicDialogRender.js +238 -3
- package/src/components/xform/form-render/dynamicDrawerRender.js +229 -0
- package/src/components/xform/form-render/formDynamicFieldMixin.js +131 -0
- package/src/components/xform/form-render/index.vue +86 -21
- package/src/components/xform/form-render/indexMixin.js +5093 -37
- package/src/components/xform/form-render/refMixin.js +34 -3
- package/src/components/xform/icon-picker/icons.json +284 -0
- package/src/components/xform/icon-picker/index.vue +145 -0
- package/src/components/xform/lang/en-US.js +470 -438
- package/src/components/xform/lang/en-US_extension.js +4 -0
- package/src/components/xform/lang/zh-CN.js +641 -593
- package/src/components/xform/mixins/defaultHandle.js +474 -2
- package/src/components/xform/mixins/scriptHttp.js +179 -3
- package/src/components/xform/utils/dynamicSchemaUtil.js +361 -0
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/formHttp.js +162 -0
- package/src/components/xform/utils/format.js +205 -172
- package/src/components/xform/utils/formula-util.js +969 -0
- package/src/components/xform/utils/sfc-generator.js +2 -2
- package/src/components/xform/utils/smart-vue-i18n/index.js +2 -1
- package/src/components/xform/utils/tableCellValidateUtil.js +148 -0
- package/src/components/xform/utils/tableColumnHelper.js +155 -0
- package/src/components/xform/utils/util.js +1591 -1
- package/src/components/xform/utils/validators.js +185 -4
- package/src/components/xform/utils/vue2js-generator.js +2 -2
- package/src/components/xhsPrint/index.js +44 -1
- package/src/components/xhsPrint/mixins.js +269 -1
- package/src/directive/LimitNumber/index.js +144 -1
- package/src/directive/el-dialog-center/index.js +34 -1
- package/src/directive/el-drag-dialog/drag.js +86 -1
- package/src/directive/el-readonly/index.js +15 -1
- package/src/directive/permission/hasPermi.js +34 -1
- package/src/index.js +472 -190
- package/src/lang/index.js +56 -51
- package/src/lang/locale/en/login.js +27 -0
- package/src/lang/locale/zh/login.js +26 -0
- package/src/layout/components/AppMain.vue +147 -111
- package/src/layout/components/Sidebar/default.vue +1655 -1222
- package/src/layout/components/Sidebar/index.vue +6 -1
- package/src/layout/components/TagsView/index.vue +57 -15
- package/src/layout/components/createCompany/createCompanyDialog.vue +157 -0
- package/src/layout/components/extractedCode/createDialog.vue +92 -0
- package/src/layout/components/extractedCode/queryDialog.vue +103 -0
- package/src/layout/components/extractedCode/viewDialog.vue +207 -0
- package/src/layout/components/langTool.vue +128 -120
- package/src/layout/components/watermark/index.vue +83 -0
- package/src/layout/defaultLayout.vue +170 -150
- package/src/microRouter/index.js +444 -0
- package/src/mixins/selectDialog/index.js +266 -1
- package/src/mixins/tableTree/index.js +199 -4
- package/src/mixins/wf/index.js +33 -1
- package/src/permission.js +158 -16
- package/src/public-path.js +38 -0
- package/src/resources/js/base/common.js +109 -109
- package/src/router/index.js +4 -7
- package/src/router/modules/customer.js +21 -18
- package/src/router/modules/system.js +4 -0
- package/src/store/config/index.js +667 -600
- package/src/store/getters.js +4 -1
- package/src/store/modules/micro.js +57 -0
- package/src/store/modules/permission.js +517 -23
- package/src/store/modules/settings.js +26 -1
- package/src/store/modules/tagsView.js +206 -5
- package/src/store/modules/user.js +418 -28
- package/src/utils/aes.js +21 -1
- package/src/utils/auth.js +27 -1
- package/src/utils/componentDialog.js +339 -0
- package/src/utils/global.js +370 -8
- package/src/utils/index.js +579 -7
- package/src/utils/keepAlive.js +185 -1
- package/src/utils/menuAdapter.js +277 -0
- package/src/utils/pddLog.js +92 -0
- package/src/utils/pdfUtil.js +71 -0
- package/src/utils/repeatOpen.js +48 -0
- package/src/utils/request.js +417 -28
- package/src/utils/resolveViewComponent.js +203 -0
- package/src/utils/vab.js +1276 -27
- package/src/utils/validate.js +104 -1
- package/src/views/bd/setting/bd_attach_setting/edit.vue +5 -5
- package/src/views/bd/setting/bd_attach_setting/list.vue +28 -55
- package/src/views/bd/setting/bd_attach_setting/mixins/dialog.js +84 -1
- package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +116 -5
- package/src/views/bd/setting/bd_attach_setting/mixins/list.js +239 -1
- package/src/views/bd/setting/bd_company_env/dialog.vue +174 -0
- package/src/views/bd/setting/bd_company_env/edit.vue +193 -0
- package/src/views/bd/setting/bd_company_env/list.vue +175 -0
- package/src/views/bd/setting/config_manage/list.vue +83 -0
- package/src/views/bd/setting/formVersion/button.vue +55 -0
- package/src/views/bd/setting/formVersion/compareBasicSection.vue +125 -0
- package/src/views/bd/setting/formVersion/compareCodeSection.vue +539 -0
- package/src/views/bd/setting/formVersion/compareContMixin.scss +65 -0
- package/src/views/bd/setting/formVersion/compareContent.vue +63 -0
- package/src/views/bd/setting/formVersion/compareDialog.vue +88 -0
- package/src/views/bd/setting/formVersion/compareMixin.js +93 -0
- package/src/views/bd/setting/formVersion/fieldCompare.vue +54 -0
- package/src/views/bd/setting/formVersion/formScriptCompareView.vue +94 -0
- package/src/views/bd/setting/formVersion/formTemplateCompareView.vue +74 -0
- package/src/views/bd/setting/formVersion/ftHistoryDialog.vue +483 -0
- package/src/views/bd/setting/formVersion/link.vue +58 -0
- package/src/views/bd/setting/formVersion/preformDialog.vue +87 -0
- package/src/views/bd/setting/formVersion/reverButton.vue +82 -0
- package/src/views/bd/setting/formVersion/tableDetailDiff.js +99 -0
- package/src/views/bd/setting/formVersion/tableModelCompareView.vue +514 -0
- package/src/views/bd/setting/formVersion/textDiff.js +102 -0
- package/src/views/bd/setting/form_import_log/edit.vue +130 -0
- package/src/views/bd/setting/form_import_log/list.vue +211 -0
- package/src/views/bd/setting/form_script/edit.vue +196 -74
- package/src/views/bd/setting/form_script/edit1.vue +410 -187
- package/src/views/bd/setting/form_script/form_list.vue +174 -85
- package/src/views/bd/setting/form_script/list.vue +95 -21
- package/src/views/bd/setting/form_script/list1.vue +205 -118
- package/src/views/bd/setting/form_script/mixins/dialog.js +130 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +265 -7
- package/src/views/bd/setting/form_script/mixins/edit1.js +259 -9
- package/src/views/bd/setting/form_script/mixins/form_list.js +320 -4
- package/src/views/bd/setting/form_script/mixins/list.js +307 -4
- package/src/views/bd/setting/form_script/mixins/list1.js +512 -14
- package/src/views/bd/setting/form_script/mixins/list2.js +10 -1
- package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +194 -0
- package/src/views/bd/setting/form_script/mixins/preformDialog.js +34 -1
- package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +3 -3
- package/src/views/bd/setting/form_template/edit.vue +355 -184
- package/src/views/bd/setting/form_template/formDesignerDialog.vue +171 -0
- package/src/views/bd/setting/form_template/list.vue +301 -214
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +279 -1
- package/src/views/bd/setting/form_template/mixins/dialog.js +103 -1
- package/src/views/bd/setting/form_template/mixins/edit.js +277 -9
- package/src/views/bd/setting/form_template/mixins/editWfObjConfigDialog.js +92 -1
- package/src/views/bd/setting/form_template/mixins/ftHistoryDialog.js +91 -1
- package/src/views/bd/setting/form_template/mixins/itemEdit.js +104 -1
- package/src/views/bd/setting/form_template/mixins/itemList.js +234 -1
- package/src/views/bd/setting/form_template/mixins/list.js +721 -22
- package/src/views/bd/setting/form_template/mixins/list2.js +411 -0
- package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +193 -0
- package/src/views/bd/setting/form_template/mixins/preformDialog.js +28 -3
- package/src/views/bd/setting/form_template/mixins/wf_list.js +421 -3
- package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +253 -254
- package/src/views/bd/setting/form_template/wf_list.vue +161 -127
- package/src/views/bd/setting/logic_param/edit.vue +146 -0
- package/src/views/bd/setting/logic_param/edit1.vue +106 -0
- package/src/views/bd/setting/logic_param/edit2.vue +139 -0
- package/src/views/bd/setting/logic_param/list.vue +74 -0
- package/src/views/bd/setting/logic_param/list1.vue +12 -0
- package/src/views/bd/setting/logic_param/list2.vue +12 -0
- package/src/views/bd/setting/logic_param/mixins/edit.js +93 -0
- package/src/views/bd/setting/logic_param/mixins/list.js +376 -0
- package/src/views/bd/setting/menu_kind/list.vue +172 -83
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +300 -7
- package/src/views/bd/setting/menu_kind/mixins/dialog.js +139 -1
- package/src/views/bd/setting/menu_kind/mixins/list.js +201 -1
- package/src/views/bd/setting/push_data/edit.vue +139 -0
- package/src/views/bd/setting/push_data/list.vue +283 -0
- package/src/views/bd/setting/push_data_h/edit.vue +153 -0
- package/src/views/bd/setting/push_data_h/list.vue +293 -0
- package/src/views/bd/setting/request_async_setting/edit.vue +320 -0
- package/src/views/bd/setting/request_async_setting/list.vue +372 -0
- package/src/views/bd/setting/request_setting/edit.vue +300 -0
- package/src/views/bd/setting/request_setting/list.vue +301 -0
- package/src/views/bd/setting/table_model/edit.vue +1079 -426
- package/src/views/bd/setting/table_model/list.vue +218 -128
- package/src/views/bd/setting/table_model/mixins/dialog.js +71 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +1309 -13
- package/src/views/bd/setting/table_model/mixins/list.js +463 -2
- package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +201 -0
- package/src/views/bd/setting/table_model/mixins/zdDialog.js +114 -3
- package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/utils/index.js +75 -1
- package/src/views/support/form-dialog-demo/demoPickerDialog.vue +72 -0
- package/src/views/support/form-dialog-demo/index.vue +537 -0
- package/src/views/user/access_log/list.vue +418 -349
- package/src/views/user/area/dialog.vue +223 -117
- package/src/views/user/area/list.vue +318 -0
- package/src/views/user/commMenu/index.vue +2 -2
- package/src/views/user/common_attribute/list.vue +4 -1
- package/src/views/user/company_info/dialog.vue +195 -163
- package/src/views/user/extend_datasource/dialog.vue +3 -0
- package/src/views/user/extend_datasource/edit.vue +2 -1
- package/src/views/user/extend_datasource/list.vue +3 -0
- package/src/views/user/fieldTranslation/editDialog.vue +8 -8
- package/src/views/user/fieldTranslation/list.vue +33 -33
- package/src/views/user/file_view_ins/list.vue +22 -1
- package/src/views/user/form/vform/designer.vue +792 -749
- package/src/views/user/form/vform/formFieldMapping.js +2 -3
- package/src/views/user/form/vform/out_render.vue +1 -1
- package/src/views/user/form/vform/render.vue +65 -52
- package/src/views/user/form/view/edit.vue +56 -37
- package/src/views/user/form/view/list.vue +474 -54
- package/src/views/user/home/default.vue +1117 -979
- package/src/views/user/home/default2.vue +1158 -0
- package/src/views/user/home/dev.vue +29 -0
- package/src/views/user/home/index.vue +20 -16
- package/src/views/user/login/default.vue +165 -44
- package/src/views/user/login/index.vue +4 -6
- package/src/views/user/login/indexMixin.js +582 -380
- package/src/views/user/menu/list.vue +50 -1
- package/src/views/user/menuFallback/index.vue +123 -0
- package/src/views/user/notify_message/dialog.vue +65 -22
- package/src/views/user/notify_template/edit.vue +188 -187
- package/src/views/user/notify_template/edit2.vue +176 -0
- package/src/views/user/notify_template/list.vue +4 -1
- package/src/views/user/notify_template/list2.vue +190 -0
- package/src/views/user/outLink/form_view.vue +202 -211
- package/src/views/user/outLink/index.vue +62 -19
- package/src/views/user/outLink/view.vue +5 -13
- package/src/views/user/position/list.vue +4 -4
- package/src/views/user/project_tag/dialog.vue +9 -4
- package/src/views/user/project_tag/edit.vue +2 -2
- package/src/views/user/project_tag/list.vue +9 -4
- package/src/views/user/request_setting/edit.vue +258 -0
- package/src/views/user/request_setting/list.vue +248 -0
- package/src/views/user/role/authConfig.vue +89 -0
- package/src/views/user/role/dialog.vue +70 -48
- package/src/views/user/role/edit.vue +609 -429
- package/src/views/user/role/list.vue +4 -4
- package/src/views/user/sale_org/dialog.vue +1 -1
- package/src/views/user/sale_org/list.vue +4 -1
- package/src/views/user/system_notice/infoDialog.vue +61 -1
- package/src/views/user/user/dialog.vue +46 -23
- package/src/views/user/user/edit.vue +1391 -1021
- package/src/views/user/user/form_dialog.vue +158 -0
- package/src/views/user/user/form_info.vue +210 -0
- package/src/views/user/user/info.vue +253 -140
- package/src/views/user/user/list.vue +652 -563
- package/src/views/user/user/modifyPasswordDialog.vue +64 -53
- package/src/views/user/wf/iframe/index.vue +6 -1
- package/src/views/user/wf/iframe/index2.vue +6 -1
- package/src/views/user/wf/wfReport/index.vue +625 -0
- package/src/views/user/wf/wf_auto_submit_data/list.vue +2 -0
- package/src/views/user/wf/wf_manage/list.vue +678 -256
- package/src/views/user/wf/wf_manage/list2.vue +875 -0
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +47 -22
- package/src/views/user/wf/wf_obj_config/importItemDialog.vue +109 -0
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +25 -1
- package/src/views/user/wf/wf_obj_config/list.vue +114 -9
- package/src/views/user/wf/wf_transfer_setting/edit.vue +282 -0
- package/src/views/user/wf/wf_transfer_setting/list.vue +319 -0
- package/src/views/user/workbench_menu/list.vue +555 -0
- package/src/components/xform/form-render/container-item/list-h5-item2.vue +0 -1347
- package/src/utils/wf.js +0 -21
|
@@ -1,593 +1,641 @@
|
|
|
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
|
-
"
|
|
177
|
-
|
|
178
|
-
1
|
|
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
|
-
|
|
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-pane": "详情tab",
|
|
96
|
+
"detail-h5": "H5详情",
|
|
97
|
+
"list-h5": "H5列表",
|
|
98
|
+
text: "文本",
|
|
99
|
+
"tree-pane": "树/列表布局",
|
|
100
|
+
"h5-card": "h5卡片",
|
|
101
|
+
"h5-card-pane": "h5卡片选项卡",
|
|
102
|
+
"h5-table": "h5表格",
|
|
103
|
+
tree: "树形",
|
|
104
|
+
"table-export-button": "列表导出",
|
|
105
|
+
"select-export-item-button": "列表导出(明细)",
|
|
106
|
+
"select-export-button": "明细导出",
|
|
107
|
+
status: "状态",
|
|
108
|
+
"a-link": "超链接按钮",
|
|
109
|
+
"a-text": "超链接文本",
|
|
110
|
+
"project-tag": "标签",
|
|
111
|
+
dropdown: "下拉按钮",
|
|
112
|
+
|
|
113
|
+
"create_by-text": "创建人",
|
|
114
|
+
"modify_by-text": "更新人",
|
|
115
|
+
"create_date-text": "创建时间",
|
|
116
|
+
"modify_date-text": "更新时间",
|
|
117
|
+
"compare-change-button": "变更",
|
|
118
|
+
"compare-button": "对比",
|
|
119
|
+
"compare-close-button": "关闭对比",
|
|
120
|
+
"compare-del-button": "查看删除明细",
|
|
121
|
+
"user-vabsearch": "用户(单选)",
|
|
122
|
+
"saleOrg-vabsearch": "机构(单选)",
|
|
123
|
+
"user-project-tag": "用户(多选)",
|
|
124
|
+
"saleOrg-project-tag": "机构(多选)",
|
|
125
|
+
tempStorage: "暂存按钮",
|
|
126
|
+
oplog: "操作日志",
|
|
127
|
+
gantt: "甘特图",
|
|
128
|
+
"download-button": "附件下载",
|
|
129
|
+
cascader: "级联选择",
|
|
130
|
+
childrenKeyName: "子节点属性名称",
|
|
131
|
+
},
|
|
132
|
+
hint: {
|
|
133
|
+
formulaSetting: "公式设置",
|
|
134
|
+
formulaModel: "模式",
|
|
135
|
+
formulaModelView: "查看",
|
|
136
|
+
formulaModelEdit: "编辑",
|
|
137
|
+
formulaSize: "大小",
|
|
138
|
+
formulaSizeLarge: "大",
|
|
139
|
+
formulaSizeMedium: "中",
|
|
140
|
+
formulaSizeSmall: "小",
|
|
141
|
+
formulaSizeMini: "迷你",
|
|
142
|
+
formulaClear: "清除",
|
|
143
|
+
formulaNum: "数字",
|
|
144
|
+
formulaStr: "字符",
|
|
145
|
+
formulaOK: "确定",
|
|
146
|
+
formulaSearch: "搜索...",
|
|
147
|
+
formulaWidgetList: "组件列表",
|
|
148
|
+
formulaFunctionList: "函数列表",
|
|
149
|
+
formulaFunctionExplain: "函数说明",
|
|
150
|
+
formulaFunctionMaths: "数学函数",
|
|
151
|
+
formulaFunctionLogic: "逻辑函数",
|
|
152
|
+
formulaFunctionTime: "时间函数",
|
|
153
|
+
formulaFunctionString: "字符串函数",
|
|
154
|
+
formulaNumber: "数字",
|
|
155
|
+
formulaObject: "对象",
|
|
156
|
+
formulaDate: "日期",
|
|
157
|
+
formulaChar: "文字",
|
|
158
|
+
formulaPleaseSelect: "请选择组件名和函数",
|
|
159
|
+
formulaSample: "公式编辑举例",
|
|
160
|
+
formulaPara: "参数",
|
|
161
|
+
formulaINT: "将数值去掉小数,举例:INT(-8.9)=-9",
|
|
162
|
+
formulaSUM: "返回一组数据的和,举例:SUM(1,2,3,...)=6",
|
|
163
|
+
formulaSUMIF: `根据单个条件对指定区域内的数值求和,举例:SUMIF([10, 20, 30], ">10", [80, 120, 90])=210`,
|
|
164
|
+
formulaSUMIFS: `根据多个条件对指定区域内的数值求和(条件需同时满足),举例:SUMIFS([1000, 2000, 1500, 3000], [400, 600, 700, 800], '>500', [2022, 2023, 2023, 2024], 2023)=3500`,
|
|
165
|
+
formulaAVERAGE: "返回一组数据的平均数,举例:AVERAGE(1,2,3,...)=2",
|
|
166
|
+
formulaMAX: "返回一组数中的最大值,举例:MAX(1,2,3,...)=3",
|
|
167
|
+
formulaMIN: "返回一组数中的最小值,举例:MIN(1,2,3,...)=1",
|
|
168
|
+
formulaABS: "求一个数的绝对值,举例:ABS(-5)=5",
|
|
169
|
+
formulaROUND: "将数值保留指定小数位,举例:ROUND(8.999,2)=9.00",
|
|
170
|
+
formulaCEILING: "将一个数向上取整,举例:CEILING(8.9)=9",
|
|
171
|
+
formulaLOG:
|
|
172
|
+
"返回以参数2为底参数1的对数,举例:LOG(8,2)=3,以2为底8的对数为3",
|
|
173
|
+
formulaMOD: "求两数相除的余数,举例:MOD(2,6)=2",
|
|
174
|
+
formulaPOWER: "求数字的N次方,举例:POWER(5, 3)=125",
|
|
175
|
+
formulaAND:
|
|
176
|
+
"当所有条件都符合时,返回true,否则返回false,举例:AND(1>0,2>1,...)=TRUE",
|
|
177
|
+
formulaIF:
|
|
178
|
+
"判断一个条件能否满足,如果满足则返回一个值,如果不满足则返回另一个值,举例:IF(1>2,1,0)=0",
|
|
179
|
+
formulaIFS: "举例:IFS(false, 'Hello!', true, 'Goodbye!')=Goodbye!",
|
|
180
|
+
formulaIFERROR: "举例:IFERROR('#DIV/0!', 'Error')",
|
|
181
|
+
formulaIFNA: "举例:IFNA('#N/A', 'Error')",
|
|
182
|
+
formulaNOT: "举例:NOT(true)=false",
|
|
183
|
+
formulaOR: "举例: OR (true, false, true)=true",
|
|
184
|
+
formulaSWITCH:
|
|
185
|
+
"SWITCH(参数值,条件1,'条件值1',条件2,'条件值2'[,条件N,'条件值N',]),举例:SWITCH(7, 9, 'Nine', 7, 'Seven')=Seven",
|
|
186
|
+
formulaXOR: "举例:XOR(true, false, true)=false",
|
|
187
|
+
formulaYEAR: '举例:YEAR("2022-10-1")=2022',
|
|
188
|
+
formulaMONTH: '举例:MONTH("2022-10-1")=10',
|
|
189
|
+
formulaDAY: '举例:DAY("2022-10-11")=11',
|
|
190
|
+
formulaTODAY: '举例: TODAY()="2022-10-11"',
|
|
191
|
+
formulaNOW: '举例: NOW="2022-10-11 17:04:33"',
|
|
192
|
+
formulaEMONTH: "举例: EMONTH ('2022-12-13 ', -1)='2022-11-13 '",
|
|
193
|
+
formulaEDAY: "举例: EMONTH ('2022-12-13 ', -1)='2022-12-12 '",
|
|
194
|
+
formulaFIND: `查找字符串(参数:
|
|
195
|
+
1、查找句柄 2、查找目标字符串 3、开始查找下标),
|
|
196
|
+
举例:FIND('M', 'Miriam McGovern', 3)=8`,
|
|
197
|
+
formulaLEFT:
|
|
198
|
+
"获取字符串左侧N个字符,LEFT(字符串,截取长度),举例:LEFT('Sale Price', 4)=Sale",
|
|
199
|
+
formulaRIGHT:
|
|
200
|
+
"获取字符串右侧N个字符 RIGHT(字符串,截取长度),举例:RIGHT('Sale Price', 5)=Price",
|
|
201
|
+
formulaLEN: "统计字符串长度,举例:LEN('abcdefgh')=8",
|
|
202
|
+
formulaLOWER:
|
|
203
|
+
"字符串转小写,举例:LOWER('E. E. Cummings')=e. e. cummings",
|
|
204
|
+
formulaUPPER: "字符串转大写,举例:UPPER('total')=TOTAL",
|
|
205
|
+
formulaMID:
|
|
206
|
+
"截取字符串 MID(字符串,开始下标,截取长度),举例:MID('Fluid Flow', 7, 20)=Flow",
|
|
207
|
+
formulaTRIM:
|
|
208
|
+
"字符串去除多余空格 TRIM(字符串),举例:TRIM(' First Quarter ')=First Quarter",
|
|
209
|
+
formulaDateError: "日期格式不正确",
|
|
210
|
+
formulaDateErrorMsg: "日期转换错误明细",
|
|
211
|
+
|
|
212
|
+
selectParentWidget: "选中父组件",
|
|
213
|
+
moveUpWidget: "上移组件",
|
|
214
|
+
moveDownWidget: "下移组件",
|
|
215
|
+
cloneWidget: "复制组件",
|
|
216
|
+
insertRow: "插入新行",
|
|
217
|
+
insertColumn: "插入新列",
|
|
218
|
+
remove: "移除组件",
|
|
219
|
+
cellSetting: "单元格操作",
|
|
220
|
+
dragHandler: "拖拽手柄",
|
|
221
|
+
copyField: "复制字段组件",
|
|
222
|
+
onlyFieldWidgetAcceptable: "子表单只能接收字段组件",
|
|
223
|
+
moveUpFirstChildHint: "已经移动到最上面",
|
|
224
|
+
moveDownLastChildHint: "已经移动到最下面",
|
|
225
|
+
closePreview: "关闭",
|
|
226
|
+
copyJson: "复制JSON",
|
|
227
|
+
saveFormJson: "保存为文件",
|
|
228
|
+
copyVueCode: "复制Vue代码",
|
|
229
|
+
copyHtmlCode: "复制HTML代码",
|
|
230
|
+
copyJsonSuccess: "复制JSON成功",
|
|
231
|
+
importJsonSuccess: "导入JSON成功",
|
|
232
|
+
copyJsonFail: "复制JSON失败",
|
|
233
|
+
copyVueCodeSuccess: "复制Vue代码成功",
|
|
234
|
+
copyVueCodeFail: "复制Vue代码失败",
|
|
235
|
+
copyHtmlCodeSuccess: "复制HTML代码成功",
|
|
236
|
+
copyHtmlCodeFail: "复制HTML代码失败",
|
|
237
|
+
saveVueCode: "保存Vue文件",
|
|
238
|
+
saveHtmlCode: "保存Html文件",
|
|
239
|
+
getFormData: "获取数据",
|
|
240
|
+
resetForm: "重置表单",
|
|
241
|
+
disableForm: "禁用编辑",
|
|
242
|
+
enableForm: "恢复编辑",
|
|
243
|
+
switchReadMode: "只读查看",
|
|
244
|
+
exportFormData: "表单数据",
|
|
245
|
+
copyFormData: "复制JSON",
|
|
246
|
+
saveFormData: "保存为文件",
|
|
247
|
+
copyVue2SFC: "复制Vue2代码",
|
|
248
|
+
copyVue3SFC: "复制Vue3代码",
|
|
249
|
+
copySFCFail: "复制SFC代码失败",
|
|
250
|
+
copySFCSuccess: "复制SFC代码成功",
|
|
251
|
+
saveVue2SFC: "保存为Vue2组件",
|
|
252
|
+
saveVue3SFC: "保存为Vue3组件",
|
|
253
|
+
fileNameForSave: "文件名:",
|
|
254
|
+
saveFileTitle: "保存为文件",
|
|
255
|
+
fileNameInputPlaceholder: "请输入文件名",
|
|
256
|
+
sampleLoadedSuccess: "表单示例加载成功",
|
|
257
|
+
sampleLoadedFail: "表单示例加载失败",
|
|
258
|
+
loadFormTemplate: "加载此模板",
|
|
259
|
+
loadFormTemplateHint:
|
|
260
|
+
"是否加载这个模板?加载后会覆盖设计器当前表单,你可以使用“撤销”功能恢复。",
|
|
261
|
+
loadFormTemplateSuccess: "表单模板加载成功",
|
|
262
|
+
loadFormTemplateFailed: "表单模板加载失败",
|
|
263
|
+
currentNodeCannotBeSelected: "当前组件节点不可选择",
|
|
264
|
+
noSelectedWidgetHint: "当前没有选中设置的组件",
|
|
265
|
+
widgetSetting: "组件设置",
|
|
266
|
+
formSetting: "表单设置",
|
|
267
|
+
prompt: "提示",
|
|
268
|
+
confirm: "确定",
|
|
269
|
+
cancel: "取消",
|
|
270
|
+
import: "导入",
|
|
271
|
+
importJsonHint: "导入的JSON内容须符合下述格式,以保证顺利导入.",
|
|
272
|
+
invalidOptionsData: "无效的选项数据:",
|
|
273
|
+
lastPaneCannotBeDeleted: "仅剩一个选项卡页不可删除.",
|
|
274
|
+
duplicateName: "组件名称已存在: ",
|
|
275
|
+
nameRequired: "组件名称不可为空",
|
|
276
|
+
numberValidator: "数字",
|
|
277
|
+
letterValidator: "字母",
|
|
278
|
+
letterAndNumberValidator: "数字字母",
|
|
279
|
+
mobilePhoneValidator: "手机号码",
|
|
280
|
+
emailValidator: "邮箱",
|
|
281
|
+
urlValidator: "网址",
|
|
282
|
+
noChineseValidator: "非中文字符",
|
|
283
|
+
chineseValidator: "仅中文字符",
|
|
284
|
+
rowspanNotConsistentForMergeEntireRow:
|
|
285
|
+
"存在行高不一致的单元格, 无法合并整行.",
|
|
286
|
+
colspanNotConsistentForMergeEntireColumn:
|
|
287
|
+
"存在列宽不一致的单元格, 无法合并整列.",
|
|
288
|
+
rowspanNotConsistentForDeleteEntireRow:
|
|
289
|
+
"存在行高不一致的单元格, 不可删除整行.",
|
|
290
|
+
colspanNotConsistentForDeleteEntireColumn:
|
|
291
|
+
"存在列宽不一致的单元格, 不可删除整列.",
|
|
292
|
+
lastColCannotBeDeleted: "最后一列不可删除.",
|
|
293
|
+
lastRowCannotBeDeleted: "最后一行不可删除.",
|
|
294
|
+
},
|
|
295
|
+
toolbar: {
|
|
296
|
+
undoHint: "撤销",
|
|
297
|
+
redoHint: "重做",
|
|
298
|
+
pcLayout: "PC",
|
|
299
|
+
padLayout: "Pad",
|
|
300
|
+
mobileLayout: "H5",
|
|
301
|
+
nodeTreeHint: "组件层次结构树",
|
|
302
|
+
nodeTreeTitle: "组件层次结构树",
|
|
303
|
+
clear: "清空",
|
|
304
|
+
preview: "预览",
|
|
305
|
+
importJson: "导入JSON",
|
|
306
|
+
exportJson: "导出JSON",
|
|
307
|
+
exportCode: "导出代码",
|
|
308
|
+
generateCode: "生成代码",
|
|
309
|
+
generateSFC: "生成SFC",
|
|
310
|
+
},
|
|
311
|
+
setting: {
|
|
312
|
+
basicSetting: "基本属性",
|
|
313
|
+
attributeSetting: "属性设置",
|
|
314
|
+
commonSetting: "常见属性",
|
|
315
|
+
advancedSetting: "高级属性",
|
|
316
|
+
eventSetting: "事件属性",
|
|
317
|
+
uniqueName: "唯一名称",
|
|
318
|
+
editNameHelp: "修改名称后需按回车确认",
|
|
319
|
+
label: "标签",
|
|
320
|
+
displayType: "显示类型",
|
|
321
|
+
defaultValue: "默认值",
|
|
322
|
+
placeholder: "占位内容",
|
|
323
|
+
startPlaceholder: "起始占位内容",
|
|
324
|
+
endPlaceholder: "截止占位内容",
|
|
325
|
+
widgetColumnWidth: "组件列宽",
|
|
326
|
+
widgetSize: "组件大小",
|
|
327
|
+
fontSize: "字体大小",
|
|
328
|
+
showStops: "显示间断点",
|
|
329
|
+
displayStyle: "显示样式",
|
|
330
|
+
inlineLayout: "行内",
|
|
331
|
+
blockLayout: "块",
|
|
332
|
+
buttonStyle: "显示为按钮",
|
|
333
|
+
border: "带有边框",
|
|
334
|
+
labelWidth: "标签宽度",
|
|
335
|
+
rows: "行数",
|
|
336
|
+
labelHidden: "隐藏字段标签",
|
|
337
|
+
required: "必填字段",
|
|
338
|
+
validation: "字段校验",
|
|
339
|
+
requiredHint: "必填校验提示",
|
|
340
|
+
validationHelp: "支持输入正则表达式",
|
|
341
|
+
validationHint: "校验失败提示",
|
|
342
|
+
readonly: "只读",
|
|
343
|
+
disabled: "禁用",
|
|
344
|
+
hidden: "隐藏",
|
|
345
|
+
textContent: "静态文字",
|
|
346
|
+
preWrap: "自动换行",
|
|
347
|
+
htmlContent: "HTML",
|
|
348
|
+
clearable: "可清除",
|
|
349
|
+
areaDataType: "地区层级",
|
|
350
|
+
areaDataType0: "省",
|
|
351
|
+
areaDataType1: "省/市",
|
|
352
|
+
areaDataType2: "省/市/区",
|
|
353
|
+
areaDataType3: "省/市/区/乡镇",
|
|
354
|
+
areaName: "地区名称字段",
|
|
355
|
+
areaNameHint: "用于保存地区全称的表单字段名",
|
|
356
|
+
areaMinLevel: "至少选择层级",
|
|
357
|
+
areaMinLevelHint:
|
|
358
|
+
"选择结果至少要到该层级才能选中(该地区无下级数据时除外)",
|
|
359
|
+
areaMinLevelNone: "不限",
|
|
360
|
+
areaMinLevel0: "省",
|
|
361
|
+
areaMinLevel1: "市",
|
|
362
|
+
areaMinLevel2: "区",
|
|
363
|
+
areaMinLevel3: "乡镇",
|
|
364
|
+
editable: "可输入",
|
|
365
|
+
format: "显示格式",
|
|
366
|
+
valueFormat: "绑定值格式",
|
|
367
|
+
showPassword: "可显示密码",
|
|
368
|
+
filterable: "可搜索选项",
|
|
369
|
+
allowCreate: "允许创建选项",
|
|
370
|
+
remote: "可远程搜索",
|
|
371
|
+
automaticDropdown: "自动弹出选项",
|
|
372
|
+
multiple: "选项可多选",
|
|
373
|
+
multipleLimit: "多选数量限制",
|
|
374
|
+
checkStrictly: "任意级节点可选",
|
|
375
|
+
showAllLevels: "显示完整路径",
|
|
376
|
+
contentPosition: "文字位置",
|
|
377
|
+
dividerDirection: "分割线方向",
|
|
378
|
+
plain: "朴素按钮",
|
|
379
|
+
round: "圆角按钮",
|
|
380
|
+
circle: "圆形按钮",
|
|
381
|
+
space: "间隔(px)",
|
|
382
|
+
icon: "图标",
|
|
383
|
+
optionsSetting: "选项设置",
|
|
384
|
+
addOption: "增加选项",
|
|
385
|
+
importOptions: "导入选项",
|
|
386
|
+
resetDefault: "重设选中项",
|
|
387
|
+
uploadSetting: "上传参数设置",
|
|
388
|
+
uploadURL: "上传地址",
|
|
389
|
+
uploadTip: "上传提示内容",
|
|
390
|
+
withCredentials: "发送cookie凭证",
|
|
391
|
+
multipleSelect: "文件可多选",
|
|
392
|
+
showFileList: "显示文件列表",
|
|
393
|
+
limit: "最大上传数量",
|
|
394
|
+
fileMaxSize: "文件大小限制(MB)",
|
|
395
|
+
fileTypes: "上传文件类型",
|
|
396
|
+
fileTypesHelp: "支持添加其他文件类型",
|
|
397
|
+
fileTypesCategoryHelp: "勾选分类可批量选择该类下的全部格式,也支持手工输入其他后缀;留空表示不限制",
|
|
398
|
+
fileTypesPlaceholder: "不限制上传格式",
|
|
399
|
+
fileTypeCategory: {
|
|
400
|
+
image: "图片",
|
|
401
|
+
video: "视频",
|
|
402
|
+
audio: "音频",
|
|
403
|
+
word: "Word",
|
|
404
|
+
excel: "Excel",
|
|
405
|
+
ppt: "PPT",
|
|
406
|
+
pdf: "PDF",
|
|
407
|
+
text: "文本",
|
|
408
|
+
archive: "压缩包",
|
|
409
|
+
},
|
|
410
|
+
headers: "上传请求头",
|
|
411
|
+
formulaEnabled: "启用计算公式",
|
|
412
|
+
formula: "计算公式",
|
|
413
|
+
cellWidth: "宽度",
|
|
414
|
+
cellHeight: "高度",
|
|
415
|
+
// gridColHeight: "外层栅格高度(px/%)",
|
|
416
|
+
gutter: "栅格间隔(px)",
|
|
417
|
+
columnSetting: "栅格属性设置",
|
|
418
|
+
colsOfGrid: "当前栅格列:",
|
|
419
|
+
colSpanTitle: "栅格宽度",
|
|
420
|
+
colOffsetTitle: "左侧间隔格数",
|
|
421
|
+
colPushTitle: "右移栅格数",
|
|
422
|
+
colPullTitle: "左移栅格数",
|
|
423
|
+
colHeight: "栅格高度(px或%)",
|
|
424
|
+
addColumn: "增加栅格",
|
|
425
|
+
responsive: "响应式布局",
|
|
426
|
+
tabPaneSetting: "选项卡设置",
|
|
427
|
+
addTabPane: "增加选项卡页",
|
|
428
|
+
tabClass: "选项卡样式",
|
|
429
|
+
paneActive: "激活",
|
|
430
|
+
customLabelIcon: "定制字段标签",
|
|
431
|
+
labelIconClass: "标签Icon样式",
|
|
432
|
+
labelIconPosition: "标签Icon位置",
|
|
433
|
+
labelTooltip: "标签文字提示",
|
|
434
|
+
minValue: "最小值",
|
|
435
|
+
maxValue: "最大值",
|
|
436
|
+
precision: "精度",
|
|
437
|
+
step: "增减步长",
|
|
438
|
+
controlsPosition: "控制按钮位置",
|
|
439
|
+
showbutton: "是否显示按钮",
|
|
440
|
+
minLength: "最小长度",
|
|
441
|
+
maxLength: "最大长度",
|
|
442
|
+
showWordLimit: "显示字数统计",
|
|
443
|
+
prefixIcon: "头部Icon",
|
|
444
|
+
suffixIcon: "尾部Icon",
|
|
445
|
+
inputButton: "输入框按钮设置",
|
|
446
|
+
appendButton: "添加后置按钮",
|
|
447
|
+
appendButtonDisabled: "后置按钮禁用",
|
|
448
|
+
appendButtonIcon: "后置按钮Icon",
|
|
449
|
+
buttonIcon: "按钮Icon",
|
|
450
|
+
switchWidth: "开关宽度(像素)",
|
|
451
|
+
activeText: "开启时文字描述",
|
|
452
|
+
inactiveText: "关闭时文字描述",
|
|
453
|
+
labelColor: "标签文本颜色",
|
|
454
|
+
activeColor: "开启时背景色",
|
|
455
|
+
inactiveColor: "关闭时背景色",
|
|
456
|
+
maxStars: "最大评分值",
|
|
457
|
+
lowThreshold: "低分界限值",
|
|
458
|
+
highThreshold: "高分界限值",
|
|
459
|
+
allowHalf: "允许半选",
|
|
460
|
+
showText: "显示辅助文字",
|
|
461
|
+
showScore: "显示当前分数",
|
|
462
|
+
range: "是否为范围选择",
|
|
463
|
+
vertical: "是否竖向显示",
|
|
464
|
+
showBlankRow: "默认显示新行",
|
|
465
|
+
showRowNumber: "显示行号",
|
|
466
|
+
actionColumnPosition: "操作列位置",
|
|
467
|
+
insertColumnToLeft: "插入左侧列",
|
|
468
|
+
insertColumnToRight: "插入右侧列",
|
|
469
|
+
insertRowAbove: "插入上方行",
|
|
470
|
+
insertRowBelow: "插入下方行",
|
|
471
|
+
mergeLeftColumn: "合并左侧单元格",
|
|
472
|
+
mergeRightColumn: "合并右侧单元格",
|
|
473
|
+
mergeEntireRow: "合并整行",
|
|
474
|
+
mergeRowAbove: "合并上方单元格",
|
|
475
|
+
mergeRowBelow: "合并下方单元格",
|
|
476
|
+
mergeEntireColumn: "合并整列",
|
|
477
|
+
undoMergeCol: "撤销列合并",
|
|
478
|
+
undoMergeRow: "撤销行合并",
|
|
479
|
+
deleteEntireCol: "删除整列",
|
|
480
|
+
deleteEntireRow: "删除整行",
|
|
481
|
+
widgetName: "组件唯一名称",
|
|
482
|
+
formSize: "全局组件大小",
|
|
483
|
+
labelPosition: "字段标签位置",
|
|
484
|
+
topPosition: "顶部",
|
|
485
|
+
leftPosition: "左边",
|
|
486
|
+
labelAlign: "标签对齐",
|
|
487
|
+
leftAlign: "居左",
|
|
488
|
+
centerAlign: "居中",
|
|
489
|
+
rightAlign: "居右",
|
|
490
|
+
formCss: "表单全局CSS",
|
|
491
|
+
addCss: "编写CSS",
|
|
492
|
+
customClass: "自定义CSS样式",
|
|
493
|
+
containerClass: "容器样式",
|
|
494
|
+
styleTitClass: "样式选择",
|
|
495
|
+
styleTableClass: "表格样式",
|
|
496
|
+
iconClass: "图标样式",
|
|
497
|
+
globalFunctions: "表单全局函数",
|
|
498
|
+
addEventHandler: "编写代码",
|
|
499
|
+
editWidgetEventHandler: "组件事件处理",
|
|
500
|
+
editFormEventHandler: "表单事件处理",
|
|
501
|
+
formSFCSetting: "生成SFC设置",
|
|
502
|
+
formModelName: "数据对象名称",
|
|
503
|
+
formRefName: "引用名称",
|
|
504
|
+
formRulesName: "验证规则名称",
|
|
505
|
+
syntaxCheckWarning: "JS代码存在语法错误,请仔细检查!",
|
|
506
|
+
title: "标题",
|
|
507
|
+
dialogWidth: "弹窗宽度(px/%)",
|
|
508
|
+
fullscreen: "全屏显示弹窗",
|
|
509
|
+
showModal: "显示遮罩层",
|
|
510
|
+
showClose: "显示关闭按钮",
|
|
511
|
+
closeOnClickModal: "点击遮罩层关闭",
|
|
512
|
+
closeOnPressEscape: "按Esc键关闭",
|
|
513
|
+
center: "头部底部居中",
|
|
514
|
+
readMode: "弹窗表单只读",
|
|
515
|
+
disabledMode: "弹窗表单禁用",
|
|
516
|
+
okButtonLabel: "确认按钮文字",
|
|
517
|
+
okButtonHidden: "隐藏确认按钮",
|
|
518
|
+
cancelButtonLabel: "取消按钮文字",
|
|
519
|
+
cancelButtonHidden: "隐藏取消按钮",
|
|
520
|
+
drawSize: "抽屉大小(px/%)",
|
|
521
|
+
drawDirection: "抽屉滑出方向",
|
|
522
|
+
tableWidth: "宽度(px/%)",
|
|
523
|
+
tableHeight: "高度(px/%)",
|
|
524
|
+
showCheckBox: "是否显示复选框列",
|
|
525
|
+
showIndex: "是否显示行号",
|
|
526
|
+
showPagination: "是否显示分页",
|
|
527
|
+
smallPagination: "小型分页",
|
|
528
|
+
tableColEdit: "表格列编辑",
|
|
529
|
+
tableDataEdit: "表格数据编辑",
|
|
530
|
+
showSummary: "是否合计",
|
|
531
|
+
stripe: "是否斑马线",
|
|
532
|
+
rowSpacing: "行距(px)",
|
|
533
|
+
editAction: "编辑...",
|
|
534
|
+
columnName: "字段名称",
|
|
535
|
+
columnLabel: "显示名称",
|
|
536
|
+
columnWidth: "列宽(px/%)",
|
|
537
|
+
visibleColumn: "是否显示",
|
|
538
|
+
sortableColumn: "是否排序",
|
|
539
|
+
fixedColumn: "是否固定",
|
|
540
|
+
alignType: "对齐方式",
|
|
541
|
+
alignTypeOfColumn: "对齐方式",
|
|
542
|
+
formatOfColumn: "格式化",
|
|
543
|
+
customRenderGroup: "动态渲染",
|
|
544
|
+
renderFunction: "渲染函数",
|
|
545
|
+
actionColumn: "操作",
|
|
546
|
+
addTableColumn: "增加列",
|
|
547
|
+
deleteTableColumn: "删除列",
|
|
548
|
+
onlyOneColumnCannotBeDeleted: "表格只有一列时不可删除.",
|
|
549
|
+
showButtonsColumn: "显示操作按钮列",
|
|
550
|
+
buttonsColumnEdit: "操作按钮编辑",
|
|
551
|
+
buttonsColumnTitle: "列标题",
|
|
552
|
+
buttonsColumnWidth: "列宽度(px)",
|
|
553
|
+
operationButtonsSetting: "操作按钮设置",
|
|
554
|
+
operationButtonName: "名称",
|
|
555
|
+
operationButtonLabel: "文字",
|
|
556
|
+
operationButtonType: "类型",
|
|
557
|
+
operationButtonSize: "大小",
|
|
558
|
+
operationButtonRound: "圆角",
|
|
559
|
+
operationButtonHidden: "隐藏",
|
|
560
|
+
operationButtonDisabled: "禁用",
|
|
561
|
+
addOperationButton: "增加按钮",
|
|
562
|
+
deleteOperationButtonHint: "确定删除该按钮?",
|
|
563
|
+
operationButtonDuplicatedNameError: "按钮名称不可重复",
|
|
564
|
+
dsEnabled: "请求设置",
|
|
565
|
+
dsName: "指定数据源",
|
|
566
|
+
labelKeyName: "选项标签名",
|
|
567
|
+
valueKeyName: "选项值名",
|
|
568
|
+
childrenKeyName: "子节点属性名称",
|
|
569
|
+
dataSource: "数据源",
|
|
570
|
+
noDataSource: "暂无数据源",
|
|
571
|
+
addDataSource: "新增数据源",
|
|
572
|
+
dataSourceSetting: "数据源设置",
|
|
573
|
+
deleteDataSourceHint: "确认删除该数据源?",
|
|
574
|
+
fieldValueRequired: "输入内容不可为空",
|
|
575
|
+
dsUniqueName: "唯一名称",
|
|
576
|
+
dsRequestURL: "请求地址",
|
|
577
|
+
dsRequestaccessType: "请求URL类型",
|
|
578
|
+
dsURLStringType: "固定字符串",
|
|
579
|
+
dsURLVariableType: "变量或表达式",
|
|
580
|
+
dsDescription: "描述信息",
|
|
581
|
+
dsRequestMethod: "请求方法",
|
|
582
|
+
dsRequestHeaders: "请求头(headers)",
|
|
583
|
+
addRequestHeader: "新增请求头",
|
|
584
|
+
dsRequestParams: "参数(params)",
|
|
585
|
+
addRequestParam: "新增请求参数",
|
|
586
|
+
dsRequestData: "发送数据(data)",
|
|
587
|
+
addRequestData: "新增发送数据",
|
|
588
|
+
dsRequestValueStringType: "字符串类型",
|
|
589
|
+
dsRequestValueNumberType: "数值类型",
|
|
590
|
+
dsRequestValueBooleanType: "布尔类型",
|
|
591
|
+
dsRequestValueVariableType: "变量或表达式",
|
|
592
|
+
dsRequestNameInputPlaceholder: "名称",
|
|
593
|
+
dsRequestTypeInputPlaceholder: "类型",
|
|
594
|
+
dsRequestValueInputPlaceholder: "值",
|
|
595
|
+
dsConfigHandlerTitle: "1. 请求配置",
|
|
596
|
+
dsDataHandlerTitle: "2. 数据处理",
|
|
597
|
+
dsErrorHandlerTitle: "3. 错误处理",
|
|
598
|
+
testDataSource: "测试数据源",
|
|
599
|
+
saveDataSource: "保存数据源",
|
|
600
|
+
dsvTitle: "DSV数据源变量",
|
|
601
|
+
dsRequestResult: "返回数据",
|
|
602
|
+
executeDataSource: "立即执行",
|
|
603
|
+
clearRequestResult: "清空结果",
|
|
604
|
+
dsRequestNumberTypeError: "数据类型值错误",
|
|
605
|
+
dsRequestBooleanTypeError: "布尔类型值错误",
|
|
606
|
+
dsValidationError: "数据源设置存在错误,请修改",
|
|
607
|
+
dsDuplicatedNameError: "数据源名称重复,请修改!",
|
|
608
|
+
echartHeight: "高度",
|
|
609
|
+
isFullscreen: "是否全屏",
|
|
610
|
+
widgetWidth: "组件宽度",
|
|
611
|
+
isFixbottom: "是否固定到最底",
|
|
612
|
+
|
|
613
|
+
showTreeCheckBox: "显示复选框",
|
|
614
|
+
lazy: "懒加载",
|
|
615
|
+
treeDataEdit: "树数据编辑",
|
|
616
|
+
defaultExpandAllNode: "默认展开所有节点",
|
|
617
|
+
expandRetractAllNode: "展开/收缩",
|
|
618
|
+
selectClearAllNode: "选中/取消选中",
|
|
619
|
+
nodeEdit: "允许添加删除节点",
|
|
620
|
+
expandAllNode: "展开所有",
|
|
621
|
+
retractAllNode: "收缩所有",
|
|
622
|
+
selectAllNode: "选择所有",
|
|
623
|
+
clearAllNode: "清除所有",
|
|
624
|
+
draggable: "允许拖拽节点",
|
|
625
|
+
filter: "显示过滤框",
|
|
626
|
+
expandOnClickNode: "点击节点可收缩",
|
|
627
|
+
treeNodeCheckStrictly: "禁止父子节点联动",
|
|
628
|
+
inputNodeName: "请输入节点名",
|
|
629
|
+
deleteNode: "确定删除节点?",
|
|
630
|
+
nodeDeleted: "节点已删除",
|
|
631
|
+
tips: "提示",
|
|
632
|
+
onNodeCheckRemark: "树节点选择事件",
|
|
633
|
+
onNodeClickRemark: "树节点点击事件",
|
|
634
|
+
onNodeContextmenuRemark: "树节点右击事件",
|
|
635
|
+
enterForQuery: "输入关键字进行过滤",
|
|
636
|
+
add: "添加",
|
|
637
|
+
delete: "删除",
|
|
638
|
+
censusClass: "统计样式",
|
|
639
|
+
},
|
|
640
|
+
},
|
|
641
|
+
};
|