cloud-web-corejs 1.0.54-dev.77 → 1.0.54-dev.770
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 +199 -183
- package/src/App.vue +73 -75
- package/src/api/user.js +85 -40
- package/src/bootstrap/business.js +31 -0
- package/src/bootstrap/businessFeatures.js +108 -0
- 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 +9 -1
- package/src/components/VabUpload/mixins/fileLibraryDialog.js +1112 -0
- package/src/components/VabUpload/mixins.js +1881 -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 +232 -0
- package/src/components/mobile/file/index.vue +10 -0
- package/src/components/obsUpload/index.js +34 -0
- package/src/components/obsUpload/index.vue +231 -0
- package/src/components/obsUpload/mixins.js +1476 -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 +2221 -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 +300 -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 +216 -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 +1939 -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 +117 -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 +187 -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-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-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/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 +4531 -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 +5070 -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 +457 -438
- package/src/components/xform/lang/en-US_extension.js +4 -0
- package/src/components/xform/lang/zh-CN.js +628 -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 +194 -173
- 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 +418 -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 +203 -5
- package/src/public-path.js +8 -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 +497 -23
- package/src/store/modules/settings.js +24 -1
- package/src/store/modules/tagsView.js +205 -5
- package/src/store/modules/user.js +424 -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/externalAssets.js +62 -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/loginVab.js +68 -0
- package/src/utils/menuAdapter.js +273 -0
- package/src/utils/pddLog.js +106 -0
- package/src/utils/pdfUtil.js +71 -0
- package/src/utils/prefixGlobals.js +11 -0
- package/src/utils/repeatOpen.js +48 -0
- package/src/utils/request.js +417 -28
- 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/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 +18 -7
- 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 +712 -418
- 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 +44 -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 +211 -211
- package/src/views/user/outLink/index.vue +64 -15
- 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/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 +657 -256
- package/src/views/user/wf/wf_manage/list2.vue +854 -0
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +25 -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,5 +1,240 @@
|
|
|
1
|
-
import i18n from
|
|
1
|
+
import i18n from "../../../components/xform/utils/i18n";
|
|
2
|
+
|
|
3
|
+
let modules = {};
|
|
4
|
+
const baseRefUtil = {
|
|
5
|
+
i18n,
|
|
6
|
+
};
|
|
7
|
+
modules = {
|
|
8
|
+
name: "dynamic-dialog",
|
|
9
|
+
mixins: [baseRefUtil.i18n],
|
|
10
|
+
props: {
|
|
11
|
+
options: {
|
|
12
|
+
type: Object,
|
|
13
|
+
default: function () {
|
|
14
|
+
return {};
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
formJson: {
|
|
18
|
+
type: Object,
|
|
19
|
+
},
|
|
20
|
+
formData: {
|
|
21
|
+
type: Object,
|
|
22
|
+
default: function () {
|
|
23
|
+
return {};
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
optionData: {
|
|
27
|
+
type: Object,
|
|
28
|
+
default: function () {
|
|
29
|
+
return {};
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
globalDsv: {
|
|
33
|
+
type: Object,
|
|
34
|
+
default: function () {
|
|
35
|
+
return {};
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
parentFormRef: {
|
|
39
|
+
type: Object,
|
|
40
|
+
default: null,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
data: function () {
|
|
44
|
+
return {
|
|
45
|
+
dialogVisible: !1,
|
|
46
|
+
};
|
|
47
|
+
},
|
|
48
|
+
computed: {
|
|
49
|
+
cancelBtnLabel: function () {
|
|
50
|
+
return (
|
|
51
|
+
this.options.cancelButtonLabel || this.i18nt("designer.hint.cancel")
|
|
52
|
+
);
|
|
53
|
+
},
|
|
54
|
+
okBtnLabel: function () {
|
|
55
|
+
return this.options.okButtonLabel || this.i18nt("designer.hint.confirm");
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
mounted: function () {},
|
|
59
|
+
methods: {
|
|
60
|
+
show: function () {
|
|
61
|
+
var e = this;
|
|
62
|
+
(this.dialogVisible = !0),
|
|
63
|
+
this.$nextTick(function () {
|
|
64
|
+
e.options.readMode && e.$refs["dFormRef"].setReadMode(!0),
|
|
65
|
+
e.$refs["dFormRef"].setDialogOrDrawerRef(e);
|
|
66
|
+
});
|
|
67
|
+
},
|
|
68
|
+
close: function () {
|
|
69
|
+
if (this.options.onDialogBeforeClose) {
|
|
70
|
+
var e = new Function("done", this.options.onDialogBeforeClose),
|
|
71
|
+
t = e.call(this);
|
|
72
|
+
if (!1 === t) return;
|
|
73
|
+
}
|
|
74
|
+
this.$destroy();
|
|
75
|
+
},
|
|
76
|
+
handleBeforeClose: function (e) {
|
|
77
|
+
if (this.options.onDialogBeforeClose) {
|
|
78
|
+
var t = new Function("done", this.options.onDialogBeforeClose),
|
|
79
|
+
i = t.call(this);
|
|
80
|
+
return !1 === i ? i : e();
|
|
81
|
+
}
|
|
82
|
+
return e();
|
|
83
|
+
},
|
|
84
|
+
handleCloseEvent: function () {
|
|
85
|
+
this.$destroy();
|
|
86
|
+
},
|
|
87
|
+
handleOpenedEvent: function () {
|
|
88
|
+
if (this.options.onDialogOpened) {
|
|
89
|
+
var e = new Function(this.options.onDialogOpened);
|
|
90
|
+
e.call(this);
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
handleCancelClick: function () {
|
|
94
|
+
if (this.options.onCancelButtonClick) {
|
|
95
|
+
var e = new Function(this.options.onCancelButtonClick),
|
|
96
|
+
t = e.call(this);
|
|
97
|
+
if (!1 === t) return;
|
|
98
|
+
}
|
|
99
|
+
this.$destroy();
|
|
100
|
+
},
|
|
101
|
+
handleOkClick: function () {
|
|
102
|
+
if (this.options.onOkButtonClick) {
|
|
103
|
+
var e = new Function(this.options.onOkButtonClick),
|
|
104
|
+
t = e.call(this);
|
|
105
|
+
if (!1 === t) return;
|
|
106
|
+
}
|
|
107
|
+
this.$destroy();
|
|
108
|
+
},
|
|
109
|
+
getParentFormRef: function () {
|
|
110
|
+
return this.parentFormRef;
|
|
111
|
+
},
|
|
112
|
+
getFormRef: function () {
|
|
113
|
+
return this.$refs["dFormRef"];
|
|
114
|
+
},
|
|
115
|
+
getWidgetRef: function (e) {
|
|
116
|
+
var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1];
|
|
117
|
+
return this.$refs["dFormRef"].getWidgetRef(e, t);
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
render: function (i) {
|
|
121
|
+
let e = this;
|
|
122
|
+
return i(
|
|
123
|
+
"el-dialog",
|
|
124
|
+
{
|
|
125
|
+
directives: [
|
|
126
|
+
{
|
|
127
|
+
name: "dialog-drag",
|
|
128
|
+
rawName: "v-dialog-drag",
|
|
129
|
+
},
|
|
130
|
+
],
|
|
131
|
+
attrs: {
|
|
132
|
+
title: e.options.title,
|
|
133
|
+
visible: e.dialogVisible,
|
|
134
|
+
"append-to-body": "",
|
|
135
|
+
"destroy-on-close": "",
|
|
136
|
+
width: e.options.width,
|
|
137
|
+
fullscreen: e.options.fullscreen,
|
|
138
|
+
modal: e.options.showModal,
|
|
139
|
+
"show-close": e.options.showClose,
|
|
140
|
+
"close-on-click-modal": e.options.closeOnClickModal,
|
|
141
|
+
"close-on-press-escape": e.options.closeOnPressEscape,
|
|
142
|
+
center: e.options.center,
|
|
143
|
+
"before-close": e.handleBeforeClose,
|
|
144
|
+
"custom-class": "dialog-style list-dialog",
|
|
145
|
+
},
|
|
146
|
+
on: {
|
|
147
|
+
"update:visible": function (t) {
|
|
148
|
+
e.dialogVisible = t;
|
|
149
|
+
},
|
|
150
|
+
close: e.handleCloseEvent,
|
|
151
|
+
opened: e.handleOpenedEvent,
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
[
|
|
155
|
+
i(
|
|
156
|
+
"div",
|
|
157
|
+
{
|
|
158
|
+
staticClass: "cont",
|
|
159
|
+
},
|
|
160
|
+
[
|
|
161
|
+
i("VFormRender", {
|
|
162
|
+
ref: "dFormRef",
|
|
163
|
+
attrs: {
|
|
164
|
+
"form-json": e.formJson,
|
|
165
|
+
"form-data": e.formData,
|
|
166
|
+
"option-data": e.optionData,
|
|
167
|
+
"global-dsv": e.globalDsv,
|
|
168
|
+
"parent-form": e.parentFormRef,
|
|
169
|
+
"disabled-mode": e.options.disabledMode,
|
|
170
|
+
"dynamic-creation": !0,
|
|
171
|
+
},
|
|
172
|
+
}),
|
|
173
|
+
]
|
|
174
|
+
),
|
|
175
|
+
i(
|
|
176
|
+
"span",
|
|
177
|
+
{
|
|
178
|
+
staticClass: "dialog-footer",
|
|
179
|
+
attrs: {
|
|
180
|
+
slot: "footer",
|
|
181
|
+
},
|
|
182
|
+
slot: "footer",
|
|
183
|
+
},
|
|
184
|
+
[
|
|
185
|
+
e.options.cancelButtonHidden
|
|
186
|
+
? ""
|
|
187
|
+
: i(
|
|
188
|
+
"el-button",
|
|
189
|
+
{
|
|
190
|
+
attrs: {
|
|
191
|
+
class:
|
|
192
|
+
"button-sty el-button el-button--default el-button--medium is-plain",
|
|
193
|
+
plain: "",
|
|
194
|
+
},
|
|
195
|
+
on: {
|
|
196
|
+
click: e.handleCancelClick,
|
|
197
|
+
},
|
|
198
|
+
},
|
|
199
|
+
[
|
|
200
|
+
i("i", {
|
|
201
|
+
attrs: {
|
|
202
|
+
class: "el-icon-close el-icon",
|
|
203
|
+
},
|
|
204
|
+
}),
|
|
205
|
+
e.options.cancelButtonLabel,
|
|
206
|
+
]
|
|
207
|
+
),
|
|
208
|
+
e.options.okButtonHidden
|
|
209
|
+
? ""
|
|
210
|
+
: i(
|
|
211
|
+
"el-button",
|
|
212
|
+
{
|
|
213
|
+
attrs: {
|
|
214
|
+
type: "primary",
|
|
215
|
+
class:
|
|
216
|
+
"button-sty el-button el-button--primary el-button--medium",
|
|
217
|
+
},
|
|
218
|
+
on: {
|
|
219
|
+
click: e.handleOkClick,
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
[
|
|
223
|
+
i("i", {
|
|
224
|
+
attrs: {
|
|
225
|
+
class: "el-icon-check el-icon",
|
|
226
|
+
},
|
|
227
|
+
}),
|
|
228
|
+
e.options.okButtonLabel,
|
|
229
|
+
]
|
|
230
|
+
),
|
|
231
|
+
],
|
|
232
|
+
1
|
|
233
|
+
),
|
|
234
|
+
],
|
|
235
|
+
1
|
|
236
|
+
);
|
|
237
|
+
},
|
|
238
|
+
};
|
|
2
239
|
|
|
3
|
-
let modules = {}
|
|
4
|
-
function _0x4ff66a(_0x5ebcfd,_0x2f5a3f,_0x26c0d2,_0x2abdbc,_0x3f7477){return _0x46f5(_0x3f7477-0x304,_0x2f5a3f);}function _0x46f5(_0x2d566c,_0x2c1fe4){var _0x410a23=_0x2c1f();_0x46f5=function(_0x192154,_0x295594){_0x192154=_0x192154-0x0;var _0x25fd22=_0x410a23[_0x192154];if(_0x46f5["\u0073\u006d\u0049\u0065\u0074\u0062"]===undefined){var _0x1b743f=function(_0xdc00f7){var _0x447150="=/+9876543210ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba".split("").reverse().join("");var _0x2bbbcb="".split("").reverse().join("");var _0x176898="".split("").reverse().join("");for(var _0x4f4b8c=0x0,_0xab37ad,_0x23b887,_0x156a91=0x0;_0x23b887=_0xdc00f7["\u0063\u0068\u0061\u0072\u0041\u0074"](_0x156a91++);~_0x23b887&&(_0xab37ad=_0x4f4b8c%0x4?_0xab37ad*0x40+_0x23b887:_0x23b887,_0x4f4b8c++%0x4)?_0x2bbbcb+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](0xff&_0xab37ad>>(-0x2*_0x4f4b8c&0x6)):0x0){_0x23b887=_0x447150["\u0069\u006e\u0064\u0065\u0078\u004f\u0066"](_0x23b887);}for(var _0x35d1a3=0x0,_0x51b312=_0x2bbbcb["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x35d1a3<_0x51b312;_0x35d1a3++){_0x176898+="\u0025"+("\u0030\u0030"+_0x2bbbcb['charCodeAt'](_0x35d1a3)["\u0074\u006f\u0053\u0074\u0072\u0069\u006e\u0067"](0x10))["\u0073\u006c\u0069\u0063\u0065"](-0x2);}return decodeURIComponent(_0x176898);};var _0x3f6ea9=function(_0x4f5118,_0x1e86db){var _0x51b009=[],_0x3817d3=0x0,_0x1ef7c9,_0x3c1620="".split("").reverse().join("");_0x4f5118=_0x1b743f(_0x4f5118);var _0x497859;for(_0x497859=0x0;_0x497859<0x100;_0x497859++){_0x51b009[_0x497859]=_0x497859;}for(_0x497859=0x0;_0x497859<0x100;_0x497859++){_0x3817d3=(_0x3817d3+_0x51b009[_0x497859]+_0x1e86db['charCodeAt'](_0x497859%_0x1e86db["\u006c\u0065\u006e\u0067\u0074\u0068"]))%0x100;_0x1ef7c9=_0x51b009[_0x497859];_0x51b009[_0x497859]=_0x51b009[_0x3817d3];_0x51b009[_0x3817d3]=_0x1ef7c9;}_0x497859=0x0;_0x3817d3=0x0;for(var _0x3447c9=0x0;_0x3447c9<_0x4f5118['length'];_0x3447c9++){_0x497859=(_0x497859+0x1)%0x100;_0x3817d3=(_0x3817d3+_0x51b009[_0x497859])%0x100;_0x1ef7c9=_0x51b009[_0x497859];_0x51b009[_0x497859]=_0x51b009[_0x3817d3];_0x51b009[_0x3817d3]=_0x1ef7c9;_0x3c1620+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](_0x4f5118["\u0063\u0068\u0061\u0072\u0043\u006f\u0064\u0065\u0041\u0074"](_0x3447c9)^_0x51b009[(_0x51b009[_0x497859]+_0x51b009[_0x3817d3])%0x100]);}return _0x3c1620;};_0x46f5["\u006f\u0073\u0069\u007a\u0051\u006f"]=_0x3f6ea9;_0x2d566c=arguments;_0x46f5['smIetb']=!![];}var _0x99f0f3=_0x410a23[0x0];var _0xbe8dbf=_0x192154+_0x99f0f3;var _0x46f500=_0x2d566c[_0xbe8dbf];if(!_0x46f500){if(_0x46f5["\u0070\u006e\u0071\u0047\u004e\u0056"]===undefined){_0x46f5["\u0070\u006e\u0071\u0047\u004e\u0056"]=!![];}_0x25fd22=_0x46f5["\u006f\u0073\u0069\u007a\u0051\u006f"](_0x25fd22,_0x295594);_0x2d566c[_0xbe8dbf]=_0x25fd22;}else{_0x25fd22=_0x46f500;}return _0x25fd22;};return _0x46f5(_0x2d566c,_0x2c1fe4);}(function(_0x4c45be,_0xce0dd6){function _0x4bba74(_0x4873ae,_0x347db9,_0x2a3fa9,_0x5e3d5f,_0x4e5c7f){return _0x46f5(_0x4873ae-0x1ed,_0x347db9);}function _0x1b9924(_0x58aa28,_0x4bfa50,_0x3b7bcc,_0x2107b7,_0x9c2e4f){return _0x410a(_0x58aa28-0x275,_0x3b7bcc);}function _0x2b9274(_0x4f5a16,_0x29073f,_0x4c59af,_0x384c4c,_0x28e11d){return _0x410a(_0x4c59af- -0x303,_0x28e11d);}function _0x2f133c(_0x5cd7bb,_0x4c7850,_0x31b7c2,_0xfb88c3,_0x4e1c82){return _0x46f5(_0xfb88c3-0x308,_0x4c7850);}var _0x2d36fb=_0x4c45be();function _0x5449c6(_0x5dd3b2,_0x2bf462,_0x3dff12,_0x40e3e8,_0x5f2e8d){return _0x410a(_0x3dff12- -0x1d5,_0x40e3e8);}function _0x2a362a(_0x1aee71,_0x5c2822,_0x452b24,_0x31e864,_0x24da0a){return _0x410a(_0x24da0a-0x371,_0x5c2822);}function _0x154855(_0x3adef7,_0x398f12,_0x2e99e3,_0x285bde,_0x568654){return _0x46f5(_0x285bde-0x1fb,_0x2e99e3);}function _0x1b33b7(_0x140db8,_0x36c9b2,_0x559e49,_0x272deb,_0x5d8db4){return _0x46f5(_0x36c9b2- -0x387,_0x559e49);}function _0x40f436(_0x166f29,_0x104c92,_0x49554e,_0x301881,_0x301612){return _0x410a(_0x301612- -0x1af,_0x166f29);}while(!![]){try{var _0x529af4=parseInt(_0x154855(0x206,0x265,"xtDw".split("").reverse().join(""),0x215,0x23c))/0x1+parseInt(_0x5449c6(-0x1ab,-0x171,-0x15e,-0x131,-0x150))/0x2*(parseInt(_0x5449c6(-0x16d,-0x18e,-0x187,-0x1c8,-0x1b1))/0x3)+parseInt(_0x2b9274(-0x2d8,-0x24d,-0x28a,-0x267,-0x2c3))/0x4*(parseInt(_0x1b33b7(-0x377,-0x34b,"lp3I".split("").reverse().join(""),-0x33b,-0x369))/0x5)+-parseInt(_0x5449c6(-0x18e,-0x160,-0x16e,-0x198,-0x167))/0x6+-parseInt(_0x4bba74(0x26d,"WbO[".split("").reverse().join(""),0x26b,0x238,0x256))/0x7*(-parseInt(_0x1b9924(0x2e6,0x31c,0x2c6,0x30d,0x30d))/0x8)+-parseInt(_0x40f436(-0x179,-0x152,-0x154,-0x144,-0x179))/0x9*(parseInt(_0x2b9274(-0x27c,-0x2e8,-0x2c2,-0x2de,-0x2c8))/0xa)+-parseInt(_0x2f133c(0x3af,"lp3I".split("").reverse().join(""),0x3ab,0x3a0,0x3e9))/0xb*(-parseInt(_0x2b9274(-0x2ee,-0x2bb,-0x301,-0x2e7,-0x34f))/0xc);if(_0x529af4===_0xce0dd6){break;}else{_0x2d36fb["\u0070\u0075\u0073\u0068"](_0x2d36fb['shift']());}}catch(_0x3dca02){_0x2d36fb["\u0070\u0075\u0073\u0068"](_0x2d36fb['shift']());}}})(_0x2c1f,0x40a74);var _0x575068=0x5+0x8;function _0x2c1f(){var _0x2838e3=["\u0063\u0038\u006b\u0057\u0057\u0051\u0078\u0063\u0047\u0038\u006b\u0037\u007a\u004d\u0037\u0063\u004b\u0053\u006b\u0066","qgOc3KhVomQdZ7Wbo8CpkmIcp6WwWYFpoSF".split("").reverse().join(""),"\u006d\u0074\u0065\u0059\u0044\u0031\u004c\u006d\u0072\u0067\u0031\u0070","OMwY9wt".split("").reverse().join(""),"zfgDLL3u4qtn3Gtm".split("").reverse().join(""),"yMqSDhu".split("").reverse().join(""),"gkmSdJwNc74WMkSFG1NNd/PW".split("").reverse().join(""),"\u007a\u0043\u006f\u0045\u0043\u0063\u0079","uKPWok8yvomt89gLdNHg4ntwsoCOd7QW".split("").reverse().join(""),"nkmTd35WAzHnWkma+GqEtoSRdtITdNenvk8w".split("").reverse().join(""),"\u007a\u0066\u006e\u0071\u0072\u0078\u006d",'W5HkWQddQ8kQWQtdLCow','u8oNya','C3vxDKG',"\u0043\u0066\u0066\u0051\u0068\u0033\u004b\u0062\u0042\u006d\u006b\u0069\u0041\u0038\u006f\u0052","\u0079\u0038\u006b\u0058\u0057\u0036\u0056\u0063\u0049\u0038\u006b\u006a\u0057\u004f\u0046\u0064\u004f\u0061","\u0043\u004d\u0076\u0048\u007a\u0065\u0031\u0056\u007a\u0067\u0075",'u21MuLa',"S2t6jgD".split("").reverse().join(""),'iqa2tgyEsmkUtSowW6pcMqRcIXDEja',"e0BiL0q0vJm".split("").reverse().join(""),"fnJxtomQd7QW".split("").reverse().join(""),'aKZcTL/dQG',"8eHdR4WxWQW".split("").reverse().join(""),"a1CljuC".split("").reverse().join(""),"Gy9o8q79gSdtZgdjYx/oSPdlQW".split("").reverse().join(""),'W4ddI8kJWPLEpSkyxq','wSoPW43cJa','oSotzmoMW417W40',"\u0057\u0035\u0030\u0065\u0057\u0051\u0064\u0064\u0056\u004a\u004b\u0064\u0057\u004f\u0070\u0064\u004a\u0047","uctyo8VdN6W".split("").reverse().join(""),'zCkrjLXtWQqT',"qNc34WPoCx".split("").reverse().join(""),'B25dyw5JzwXcDxr0B25dBgLJAW',"WBdLxrLbvm4iZmYCJm".split("").reverse().join(""),"\u0057\u0034\u0064\u0064\u0056\u0038\u006b\u0057\u0057\u0036\u006d\u0031\u006a\u0073\u0046\u0063\u004b\u0053\u006f\u0039\u0057\u0035\u006a\u0037\u0046\u0053\u006f\u006e","CKshPLq".split("").reverse().join(""),"qfvvnhC".split("").reverse().join(""),"OfB0b1C".split("").reverse().join(""),'WQnEW7XKDW','vN3cShFdOa','W4VcRsm1','iSkeuSo1W6/dP8koW7yaW4NcQSoDDG',"aJclRWfoCIcF5WTO4W7kmlwz6WaoCayoCMcVQWKk8mjoSHdd4WnoSu4oCaakmw9a5WMXPW3OPWF1GKdh4W4k8BKomGdB6WK1xUdNGKdhPWxGfzZoSE4o8eNkmVc/vE8kCf+kSA+nMn".split("").reverse().join(""),'zNvSBhnJCMvLBG',"\u0041\u0074\u0065\u0034\u0042\u0047","aRWUH3JdZ7W".split("").reverse().join(""),'mJHUqw56qK4','xCoYW61gWPrrWQu',"\u0045\u0038\u006f\u0063\u0057\u0051\u0061\u0076\u006b\u0053\u006f\u0061\u0057\u0050\u007a\u006a\u0057\u0051\u0043",'l8kgW5hcIq','CgfYzw50rM9YBvjLzG',"CQWfyPW8m0t9P6W".split("").reverse().join(""),"\u0057\u0036\u004a\u0064\u004a\u006d\u006b\u006b\u0057\u0037\u004a\u0064\u004f\u0047",'WR9OWQKd','y2fUy2vSqNv0Dg9UsgLKzgvU',"\u006d\u0074\u006a\u0034\u0041\u0032\u0054\u0054\u0044\u0068\u0047","\u006e\u0038\u006f\u0077\u007a\u006d\u006f\u0037\u0057\u0034\u0031\u0037\u0057\u0050\u006e\u004b\u006e\u0053\u006b\u0030\u0057\u0035\u0057\u0067\u0057\u0035\u005a\u0064\u004b\u0038\u006f\u007a\u0079\u0053\u006b\u0074\u0075\u0068\u0043\u0048\u0073\u0053\u006b\u0039\u0057\u0052\u0056\u0064\u004d\u0053\u006f\u0045\u0057\u004f\u0066\u006f\u0057\u0035\u004e\u0064\u004d\u0072\u004b\u0044\u006e\u0033\u0044\u0052\u0070\u0043\u006b\u0066\u0057\u0036\u0037\u0063\u0054\u0030\u0061\u0043\u0045\u0076\u0035\u0053\u0045\u0053\u006f\u0076\u0065\u0038\u006f\u0038\u0057\u0050\u0068\u0063\u0053\u0059\u0050\u0058\u0057\u0035\u0070\u0064\u0051\u0067\u0061\u0041\u0057\u0036\u006c\u0063\u004a\u0057",'BgvUz3rO',"CwyYrwlN9gBHLgz".split("").reverse().join(""),"\u0041\u0032\u0054\u0072\u0075\u0067\u0069",'zezVCM1szwy','zhbrDLu','WP8JW4f7tgO+','W4FcVdSWbSk0WOW',"K3BYr3CLrgj".split("").reverse().join(""),"OdId3QWzu5WZkCHcp6W".split("").reverse().join(""),'WRFdJwLHWQW0W6m','AgfUzgXLq2XVC2vfDMvUDa',"\u0057\u0052\u0034\u004d\u0057\u0051\u0056\u0064\u0051\u0063\u0071","\u0078\u0043\u006f\u0054\u0057\u0037\u004a\u0063\u004c\u0053\u006b\u0064\u0072\u004d\u0037\u0063\u004a\u006d\u006b\u0038","47Wwq0OdZ7WRWQW".split("").reverse().join(""),"\u0069\u0067\u0076\u0043\u0045\u0043\u006b\u0035","KWPWsGWVdlxd0HuLc3QWDLcLd75WZkSE7k8x".split("").reverse().join(""),"\u0069\u0038\u006b\u0062\u0068\u0053\u006f\u0057\u0057\u0036\u0070\u0064\u0052\u0038\u006f\u006e\u0057\u0052\u0030\u006d\u0057\u0034\u0052\u0063\u0053\u0043\u006f\u006c\u0079\u0077\u0037\u0063\u0053\u0074\u005a\u0063\u0051\u0066\u0070\u0063\u0047\u0038\u006f\u0056\u006f\u0061","K0Cqv3y".split("").reverse().join(""),"\u0042\u0043\u006b\u002b\u0072\u006d\u006b\u0049",'F8k4bdtdKW','zKThvxa',"\u0077\u0043\u006f\u0050\u0057\u0037\u0070\u0064\u004c\u006d\u006f\u0051\u0070\u0065\u005a\u0063\u0050\u0043\u006b\u002b\u0057\u0052\u0066\u0072\u0057\u0035\u0065","\u006e\u0053\u006f\u0052\u0057\u0050\u0079\u0064\u0057\u0051\u002f\u0064\u004d\u0053\u006f\u0051\u0057\u0034\u0070\u0064\u004e\u006d\u006b\u0075\u0045\u0057","GOdl7WLo8BSqQWvqwVchebkkCQdx7WwoSymkSQdh6WvqcChoSC".split("").reverse().join(""),"\u0042\u0033\u0062\u0030\u0041\u0077\u0039\u0055\u0043\u0057","qwzUvgCpD2BSfwAe52B".split("").reverse().join(""),"\u006f\u0033\u0048\u006f\u0044\u0038\u006b\u0057\u0066\u0038\u006f\u002b\u0042\u0077\u004e\u0063\u004f\u006d\u006f\u0048\u0067\u0043\u006f\u004d\u006d\u0053\u006f\u0073\u0046\u0075\u006d\u0071\u0057\u0050\u0053",'W6n8EuCxWOKfWQ7dSSkVW4HsW7iKxSo2zSkcW7W','jg5LEhruAwnR',"44WloCneibHdxWMdluMdxRW".split("").reverse().join(""),"\u0079\u0032\u0066\u0053\u0042\u0061","\u0057\u004f\u004a\u0064\u004b\u004e\u0050\u0074\u0045\u0043\u006b\u0052\u0057\u0034\u002f\u0063\u0054\u0065\u0052\u0064\u0055\u0038\u006b\u0068\u0071\u0057","WbzLZqjoCVdlQW".split("").reverse().join(""),'WQddQM5LWQ8',"\u0057\u0050\u006a\u007a\u0061\u0053\u006f\u006c\u0042\u0057",'h8k5WR7cPCkZA0BcJSkuWQDAW7WVW6FcRXxdTe7dMb4',"GgDKL2D".split("").reverse().join(""),"SfgzV10DVH2C".split("").reverse().join(""),"4gubfuqSbdmWCto".split("").reverse().join(""),"wk8NdFRWveQW".split("").reverse().join(""),'wmo+yIRdICoRaq',"ywzsjxz3fMCej3tN9gBHLgr0v2C".split("").reverse().join(""),'B25pA0j1DhrVBKnSAwnR','W53dGmkgWPrYpCktx8k5d8oGjCkmWOG','sSoUW4ZcJYNdLv7dU8or','zwWTAwnVBI1JAgvJAYbLBc1Py29U','lJ/cTcvKjJf0W6pdSmkupanK',"\u006f\u0053\u006f\u0069\u0076\u0058\u0039\u0034\u0070\u006d\u006f\u006b\u0068\u0062\u0072\u004a\u0057\u0036\u0052\u0064\u004e\u006d\u006b\u0064\u0057\u004f\u0066\u0071\u0073\u0049\u006d",'WPfEW75mFCoNexO',"8es2b1y".split("").reverse().join(""),"\u006f\u0077\u0058\u0073\u0071\u0030\u0039\u006c\u0079\u0047",'h8keW7pcPSk0','WOVdISoQtq8','W7tdOCoVArL8fG','kG03w280zmkBwSoCW6lcJWZcLbTmmCo1','WRn5WRegeCk8W5i','W4ddVCo2WPnovxNcGW',"4PW3kmOctch".split("").reverse().join(""),'zgvZAwDUzxiUAgLUDc5JB25MAxjT',"\u006b\u0043\u006b\u0044\u0072\u0038\u006f\u0057\u0057\u0036\u002f\u0064\u0052\u0053\u006f\u0071","YvgDV9Mz".split("").reverse().join(""),"Wqh5Mul9em3iJnYidn".split("").reverse().join(""),"GC2LsFYW6Wf96W".split("").reverse().join(""),"Wfi8OW5TRW".split("").reverse().join(""),"ugB0LgD".split("").reverse().join(""),"WdavRW4kmMclYh".split("").reverse().join(""),'zgLHBg9NvMLZAwjSzq','WRNdQM14WOi','wNrqAwG',"eKuUHLv".split("").reverse().join(""),"qNdVcMcpRWLuOWInfLdFYiHkmn".split("").reverse().join(""),"MvMu0v2zKL2v0v2z".split("").reverse().join(""),'W7arhqHjWPvSga',"qNB4etA".split("").reverse().join(""),'otaYn3n6zKnduG','lMaXWQe2',"XoSgLomRcJ1yhomh+kSCR9hm".split("").reverse().join(""),"H5ahno8n7jrtzoCp".split("").reverse().join(""),'WRnNWOyoemkXW4tcOuvsvCk7pstcTCoHW5ONvG','Dt7dGxtcIW',"FoCgHkCJcB7W".split("").reverse().join(""),"mNzLjhj".split("").reverse().join(""),'W5pdUutdSK4','o8oZwYLv','WQxdRmottJPsoZhdU2P2rmoZ','W4ldI8knW67dISoNw18','W5hdJ8kUWPe','W75YW7hdT3HYW7TzWRJdGSk0i3tdJX8',"GUcJQWDfgu".split("").reverse().join(""),"\u007a\u0067\u0076\u005a\u0041\u0077\u0044\u0055\u007a\u0078\u0069\u0055\u0041\u0067\u004c\u0055\u0044\u0063\u0035\u004a\u0079\u0077\u0035\u004a\u007a\u0077\u0057",'W5xdQmkwW47dGSouwNqmEZ0','DI1KAwfSB2CTzhjHzW','a8k8jhxcLmkYqJmiWPNdJgnd',"koChVLOW".split("").reverse().join(""),"7kmQc37W7PtUddPWUkChS0WPcF4W".split("").reverse().join(""),'W7FdRKBdThNcGu8','y2fUy2vSqNv0Dg9UtgfIzwW','vwfqWQa','iNJcUvpdTq','ntu5nta2zKrnwxLP',"mvTdV5WPLHSdpfgU9OW0kmOcNRWtPPWg15WSoCx".split("").reverse().join(""),"WSc/PWe0fRc3WGdhcNcFRWRWOWITuGdVtjKkmn".split("").reverse().join(""),'zwWTyNv0Dg9U',"i8duHoSt".split("").reverse().join(""),'x8kLtCk7W5/dMt8','ew7cU3ldTKpcRcDIWORcVCkrfW8ObWm',"roSOdVbLc/cTd3OWpkCTcV6WKk8A".split("").reverse().join(""),'W7HTWQaCcSkGW47cTa',"eLsm1gv".split("").reverse().join(""),'nJyZnZzAv1H5yKm',"\u0068\u005a\u005a\u0063\u0052\u0038\u006b\u0057\u0057\u0052\u0072\u006e\u0067\u0043\u006b\u005a\u0057\u0034\u004f\u002b\u0061\u004c\u002f\u0064\u0049\u0053\u006b\u0066\u0057\u0035\u0037\u0064\u0048\u0031\u006d\u007a\u0046\u0071",'yM8oWQSuW6uuvW',"G1B2D2s".split("").reverse().join("")];_0x2c1f=function(){return _0x2838e3;};return _0x2c1f();}const _0x119bdf={'i18n':i18n};function _0x410a(_0x2d566c,_0x2c1fe4){var _0x410a23=_0x2c1f();_0x410a=function(_0x192154,_0x295594){_0x192154=_0x192154-0x0;var _0x25fd22=_0x410a23[_0x192154];if(_0x410a['QzdeLd']===undefined){var _0x1b743f=function(_0x3f6ea9){var _0xdc00f7='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x447150='';var _0x2bbbcb='';for(var _0x176898=0x0,_0x4f4b8c,_0xab37ad,_0x23b887=0x0;_0xab37ad=_0x3f6ea9['charAt'](_0x23b887++);~_0xab37ad&&(_0x4f4b8c=_0x176898%0x4?_0x4f4b8c*0x40+_0xab37ad:_0xab37ad,_0x176898++%0x4)?_0x447150+=String['fromCharCode'](0xff&_0x4f4b8c>>(-0x2*_0x176898&0x6)):0x0){_0xab37ad=_0xdc00f7["\u0069\u006e\u0064\u0065\u0078\u004f\u0066"](_0xab37ad);}for(var _0x156a91=0x0,_0x35d1a3=_0x447150['length'];_0x156a91<_0x35d1a3;_0x156a91++){_0x2bbbcb+='%'+('00'+_0x447150['charCodeAt'](_0x156a91)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x2bbbcb);};_0x410a['RloGSx']=_0x1b743f;_0x2d566c=arguments;_0x410a['QzdeLd']=!![];}var _0x99f0f3=_0x410a23[0x0];var _0xbe8dbf=_0x192154+_0x99f0f3;var _0x46f500=_0x2d566c[_0xbe8dbf];if(!_0x46f500){_0x25fd22=_0x410a["\u0052\u006c\u006f\u0047\u0053\u0078"](_0x25fd22);_0x2d566c[_0xbe8dbf]=_0x25fd22;}else{_0x25fd22=_0x46f500;}return _0x25fd22;};return _0x410a(_0x2d566c,_0x2c1fe4);}_0x575068=0x8+0x8;modules={"\u006e\u0061\u006d\u0065":_0x4ff66a(0x36b,'DyOD',0x327,0x32e,0x336),'mixins':[_0x119bdf['i18n']],'props':{'options':{'type':Object,"\u0064\u0065\u0066\u0061\u0075\u006c\u0074":function(){return{};}},'formJson':{'type':Object},'formData':{'type':Object,'default':function(){return{};}},'optionData':{'type':Object,"\u0064\u0065\u0066\u0061\u0075\u006c\u0074":function(){return{};}},'globalDsv':{"\u0074\u0079\u0070\u0065":Object,'default':function(){return{};}},'parentFormRef':{'type':Object,'default':null}},'data':function(){return{'dialogVisible':!(0x1fea0^0x1fea1)};},'computed':{'cancelBtnLabel':function(){function _0x491668(_0x4c4630,_0x4745a9,_0x5260a3,_0x425b0e,_0x131386){return _0x410a(_0x425b0e-0x1e1,_0x4745a9);}return this["\u006f\u0070\u0074\u0069\u006f\u006e\u0073"]['cancelButtonLabel']||this["\u0069\u0031\u0038\u006e\u0074"](_0x491668(0x20f,0x273,0x290,0x23e,0x1f8));},'okBtnLabel':function(){function _0x51cc38(_0xb2a01f,_0x38e889,_0x5a88c6,_0x2f104a,_0x41cb6b){return _0x410a(_0x41cb6b- -0x242,_0xb2a01f);}return this['options']['okButtonLabel']||this['i18nt'](_0x51cc38(-0x245,-0x1f4,-0x1f7,-0x1ff,-0x204));}},'mounted':function(){},'methods':{'show':function(){var _0x84023={'lvLfD':function(_0x59b4d1,_0x587fa0){return _0x59b4d1!==_0x587fa0;},'SmfRP':_0x436291("PT9H".split("").reverse().join(""),-0x164,-0x18c,-0x11c,-0x19b),'ZtPih':function(_0xd8f7eb,_0x179891){return _0xd8f7eb^_0x179891;},'VFmZg':function(_0x4a5bb6,_0x30371d){return _0x4a5bb6^_0x30371d;}};var _0xda2846=0x6+0x0;var _0x4fd4c7=this;function _0x561cf9(_0x411963,_0x5abe32,_0x1704bd,_0x385bd1,_0x47173e){return _0x46f5(_0x5abe32-0x294,_0x1704bd);}_0xda2846=_0x561cf9(0x343,0x2f9,'fOfH',0x321,0x34d);function _0x436291(_0x4c6fb5,_0x4a11a1,_0x1429ff,_0x16835b,_0x49a1a4){return _0x46f5(_0x4a11a1- -0x18a,_0x4c6fb5);}this["\u0064\u0069\u0061\u006c\u006f\u0067\u0056\u0069\u0073\u0069\u0062\u006c\u0065"]=!_0x84023['VFmZg'](0x7f4b9,0x7f4b9),this['$nextTick'](function(){function _0xc11bff(_0x410034,_0x2e0e45,_0x332a9c,_0x258ef0,_0x1a50ad){return _0x46f5(_0x2e0e45-0x15a,_0x1a50ad);}function _0x307fa4(_0x4c5bb5,_0x7a8c76,_0x4c8621,_0x5753e4,_0x4f293d){return _0x410a(_0x4c5bb5- -0x179,_0x7a8c76);}function _0xd84eb6(_0x8d45a1,_0xb2131d,_0x402915,_0x138ee4,_0x2e0a9f){return _0x410a(_0x402915-0x17b,_0xb2131d);}function _0x18679f(_0x4e6e5a,_0x1c3e0b,_0x51b640,_0x359f7e,_0x558b28){return _0x46f5(_0x359f7e- -0x349,_0x4e6e5a);}if(_0x84023['lvLfD'](_0xc11bff(0x13b,0x17f,0x18c,0x1bb,'W)Ko'),_0x84023["\u0053\u006d\u0066\u0052\u0050"])){return this['options']['cancelButtonLabel']||this['i18nt'](_0x307fa4(-0x11c,-0x16d,-0x117,-0x13b,-0xe6));}else{_0x4fd4c7['options']['readMode']&&_0x4fd4c7['$refs'][_0xc11bff(0x1e3,0x1b3,0x195,0x1cb,'g*hQ')]['setReadMode'](!_0x84023['ZtPih'](0x5aacb,0x5aacb)),_0x4fd4c7["\u0024\u0072\u0065\u0066\u0073"][_0xd84eb6(0x178,0x150,0x182,0x154,0x1ad)]['setDialogOrDrawerRef'](_0x4fd4c7);}});},'close':function(){function _0x468e3f(_0x4daf9b,_0x369749,_0x358e6b,_0x47b7a6,_0x35b66c){return _0x410a(_0x35b66c- -0x40,_0x358e6b);}function _0x1573c6(_0xd3d7c3,_0x382068,_0x35364c,_0x2981fb,_0x58ae55){return _0x46f5(_0xd3d7c3- -0x3b7,_0x58ae55);}function _0x11be05(_0x269f77,_0x28a1a8,_0x26148f,_0x29c5ce,_0x45efeb){return _0x46f5(_0x29c5ce-0x32c,_0x45efeb);}var _0x4b9594={'oLBNd':function(_0x5a7d73,_0x5a97c4){return _0x5a7d73^_0x5a97c4;},'tbzOk':function(_0x3b88a4,_0x5a32a0){return _0x3b88a4^_0x5a32a0;}};if(this['options']['onDialogBeforeClose']){if(_0x468e3f(-0x3d,-0x34,0x1e,0x48,0x9)!==_0x1573c6(-0x3a5,-0x3c7,-0x370,-0x3c3,'YY2J')){var _0x3457f8=new Function(_0x1573c6(-0x310,-0x329,-0x310,-0x336,"\u0061\u0073\u0073\u006d"),this['options']['onDialogBeforeClose']),_0x552f7a=_0x3457f8['call'](this);if(!_0x4b9594['tbzOk'](0xef07f,0xef07e)===_0x552f7a)return;}else{return{'dialogVisible':!_0x4b9594['oLBNd'](0x1fea0,0x1fea1)};}}this['$destroy']();},'handleBeforeClose':function(_0x3fab48){var _0x3d86c5={'gpJgi':function(_0x470def,_0x4d61bb){return _0x470def^_0x4d61bb;},"\u0058\u004f\u0041\u0077\u0072":function(_0x56d233,_0x3f227c){return _0x56d233===_0x3f227c;},'MorZj':_0x2d8689(0x385,'&wGN',0x386,0x3ab,0x387),"\u006b\u006b\u0051\u0050\u0062":function(_0x7f00b0){return _0x7f00b0();}};function _0x2d8689(_0x7f073,_0x298c70,_0x10d23e,_0x4970b0,_0x5c2e57){return _0x46f5(_0x5c2e57-0x2f2,_0x298c70);}function _0x13cff9(_0x2ef52f,_0x1c8bb7,_0x4e7889,_0x3a30f7,_0x38a82d){return _0x46f5(_0x3a30f7-0x4b,_0x4e7889);}if(this['options']["\u006f\u006e\u0044\u0069\u0061\u006c\u006f\u0067\u0042\u0065\u0066\u006f\u0072\u0065\u0043\u006c\u006f\u0073\u0065"]){if(_0x3d86c5['XOAwr'](_0x2d8689(0x372,'40F9',0x30c,0x373,0x346),_0x24f278("\u0066\u004f\u0066\u0048",-0x8b,-0x70,-0xb8,-0x52))){var _0x2ca3f3=new Function(_0x3d86c5['MorZj'],this['options']['onDialogBeforeClose']),_0x7f6665=_0x2ca3f3['call'](this);return!(0xefddc^0xefddd)===_0x7f6665?_0x7f6665:_0x3d86c5['kkQPb'](_0x3fab48);}else{var _0x3351e9=arguments['length']>(0xdfffb^0xdfffa)&&void(0xe8874^0xe8874)!==arguments[_0x3d86c5['gpJgi'](0x4a528,0x4a529)]&&arguments[0x32b0e^0x32b0f];return this['$refs'][_0x5b5f5c(0x29c,0x294,0x29a,0x24e,0x25d)]["\u0067\u0065\u0074\u0057\u0069\u0064\u0067\u0065\u0074\u0052\u0065\u0066"](_0x350050,_0x3351e9);}}function _0x24f278(_0x471d0c,_0x2f856a,_0x45e95b,_0x5f40d1,_0x1836ba){return _0x46f5(_0x2f856a- -0xe7,_0x471d0c);}function _0x5b5f5c(_0x261a2f,_0x1e638f,_0x4c2bd6,_0x5ba805,_0x21282f){return _0x410a(_0x1e638f-0x28d,_0x5ba805);}return _0x3fab48();},'handleCloseEvent':function(){this["\u0024\u0064\u0065\u0073\u0074\u0072\u006f\u0079"]();},'handleOpenedEvent':function(){var _0x4aa4aa={'cPvHO':function(_0x796e8e,_0x38f70e){return _0x796e8e===_0x38f70e;},"\u0063\u0075\u0050\u0073\u0049":_0x18a18b(-0x12b,-0x162,'UD)7',-0x184,-0x199)};function _0x18a18b(_0x28d01e,_0x2ccb29,_0x1e339e,_0xb51bfa,_0x30e909){return _0x46f5(_0x2ccb29- -0x1ed,_0x1e339e);}function _0x285964(_0x378a83,_0xb76766,_0x1fab23,_0xc1af1d,_0x10f33a){return _0x46f5(_0x10f33a- -0x65,_0xb76766);}if(this['options']['onDialogOpened']){if(_0x4aa4aa['cPvHO'](_0x285964(-0x52,"]k^]".split("").reverse().join(""),-0x71,0x16,-0x2d),_0x4aa4aa['cuPsI'])){var _0x2d108c=new _0x3630cd(this['options']["\u006f\u006e\u0043\u0061\u006e\u0063\u0065\u006c\u0042\u0075\u0074\u0074\u006f\u006e\u0043\u006c\u0069\u0063\u006b"]),_0x308bb1=_0x2d108c['call'](this);if(!(0x6a452^0x6a453)===_0x308bb1)return;}else{var _0x422460=new Function(this['options']['onDialogOpened']);_0x422460['call'](this);}}},"\u0068\u0061\u006e\u0064\u006c\u0065\u0043\u0061\u006e\u0063\u0065\u006c\u0043\u006c\u0069\u0063\u006b":function(){var _0x77db49={"\u0061\u0057\u0070\u0070\u0041":function(_0x43eb8d,_0x149d35){return _0x43eb8d===_0x149d35;}};if(this['options']["\u006f\u006e\u0043\u0061\u006e\u0063\u0065\u006c\u0042\u0075\u0074\u0074\u006f\u006e\u0043\u006c\u0069\u0063\u006b"]){if(_0x77db49['aWppA'](_0x4ae80d(-0x2ca,-0x28f,-0x261,-0x274,')V!$'),_0x4ae80d(-0x1e7,-0x238,-0x221,-0x256,"\u0067\u002a\u0068\u0051"))){this['$destroy']();}else{var _0x538cb4=new Function(this['options']['onCancelButtonClick']),_0x367cda=_0x538cb4['call'](this);if(!(0x6a452^0x6a453)===_0x367cda)return;}}function _0x4ae80d(_0x376e8a,_0x25d1c1,_0x18ad3c,_0x5ce311,_0x187ca5){return _0x46f5(_0x25d1c1- -0x2e2,_0x187ca5);}function _0x1c0992(_0x40dcd4,_0xec2d1b,_0x532cbe,_0x42c163,_0x19cc60){return _0x46f5(_0x42c163-0xb0,_0x40dcd4);}this['$destroy']();},'handleOkClick':function(){var _0x5b19b7={"\u004b\u0067\u0076\u006f\u0058":_0x4bb2c3(-0x168,-0x19d,-0x184,-0x1f2,-0x1ed)};function _0x4bb2c3(_0x3aed4c,_0x4bbb89,_0x2625b8,_0x3d44c3,_0x515ceb){return _0x410a(_0x4bbb89- -0x22a,_0x515ceb);}if(this['options']['onOkButtonClick']){if(_0x5b19b7['KgvoX']!==_0x5b19b7["\u004b\u0067\u0076\u006f\u0058"]){if(this['options']['onCancelButtonClick']){var _0x5272e7=new _0x2103db(this['options']['onCancelButtonClick']),_0x512d5d=_0x5272e7['call'](this);if(!(0x6a452^0x6a453)===_0x512d5d)return;}this['$destroy']();}else{var _0x288af0=new Function(this["\u006f\u0070\u0074\u0069\u006f\u006e\u0073"]['onOkButtonClick']),_0x377c28=_0x288af0['call'](this);if(!(0x7fcc7^0x7fcc6)===_0x377c28)return;}}this["\u0024\u0064\u0065\u0073\u0074\u0072\u006f\u0079"]();},'getParentFormRef':function(){return this["\u0070\u0061\u0072\u0065\u006e\u0074\u0046\u006f\u0072\u006d\u0052\u0065\u0066"];},'getFormRef':function(){function _0x4cb9b5(_0x2b9d0c,_0x277c9d,_0x4f52db,_0x4b8d8f,_0x45936b){return _0x410a(_0x4f52db-0x2a6,_0x4b8d8f);}return this['$refs'][_0x4cb9b5(0x273,0x2ab,0x2ad,0x2a2,0x2a6)];},'getWidgetRef':function(_0x22c572){var _0x352749=arguments['length']>(0xdfffb^0xdfffa)&&void(0xe8874^0xe8874)!==arguments[0x4a528^0x4a529]&&arguments[0x32b0e^0x32b0f];function _0x2fd275(_0xde4d68,_0x205729,_0x4e78f5,_0x3fecb9,_0x5d3855){return _0x410a(_0x3fecb9- -0x2ae,_0x205729);}return this['$refs'][_0x2fd275(-0x2b3,-0x2a2,-0x260,-0x2a7,-0x274)]['getWidgetRef'](_0x22c572,_0x352749);}},'render':function(_0x572f55){var _0x4792d1={'sPtlZ':function(_0x46496f,_0x2d1a2c){return _0x46496f^_0x2d1a2c;},"\u0042\u005a\u0047\u004a\u0047":function(_0x1bb0fc,_0x1d864a){return _0x1bb0fc+_0x1d864a;},'dSPEs':_0x47afab(-0xbe,-0x58,-0x6e,-0x9f,-0xc6),'KgyuR':_0x11061a(-0x136,-0xee,'I0ff',-0x139,-0x12d),'hkZyV':function(_0x2d956e,_0x5a46f6,_0x6105c9){return _0x2d956e(_0x5a46f6,_0x6105c9);},'psUTT':_0x11061a(-0x11d,-0x143,"\u0035\u0062\u0032\u0032",-0xfd,-0xec),'iZbRA':function(_0x5e1a22,_0x48b9e6,_0x76e3a6,_0x236b0b,_0x3257b6){return _0x5e1a22(_0x48b9e6,_0x76e3a6,_0x236b0b,_0x3257b6);},'suWvH':_0x5d7c68(0x3b6,0x403,0x447,'S8uu',0x3e3),'TmLJQ':_0x47afab(-0xae,-0x9b,-0x69,-0x64,-0x63),'PwlBf':function(_0x204125,_0x38b952,_0x36e791,_0x1be714){return _0x204125(_0x38b952,_0x36e791,_0x1be714);},'dpQvU':_0x11061a(-0xb1,-0xb5,'YY2J',-0xe3,-0xf5),'GFnei':_0x11061a(-0x13d,-0x128,'S8uu',-0x13b,-0x180)};function _0x49b353(_0x497506,_0x2332d7,_0x3eafdc,_0x350124,_0x203270){return _0x410a(_0x203270-0x2fc,_0x350124);}function _0x1257be(_0x1d3e96,_0x4e97b9,_0x563d4c,_0x50e24b,_0x19e35c){return _0x46f5(_0x4e97b9-0x19e,_0x50e24b);}var _0xae5465=0x6+0x7;let _0x19ad3b=this;function _0x11061a(_0x59d737,_0xe08707,_0x137f02,_0x58bd9d,_0x499699){return _0x46f5(_0x59d737- -0x151,_0x137f02);}function _0x3dac2e(_0x560c77,_0x157bc1,_0x45793f,_0x47717d,_0x656444){return _0x410a(_0x656444-0x7e,_0x45793f);}function _0x525ae5(_0x143cb6,_0x3b0115,_0x6bfec9,_0x316f9c,_0x1350c9){return _0x410a(_0x6bfec9-0x283,_0x316f9c);}function _0x16eee7(_0x15454a,_0x5e9daf,_0x47afe6,_0x2e31d2,_0x9d3eff){return _0x46f5(_0x5e9daf-0x337,_0x9d3eff);}function _0x5d7c68(_0x31ff8b,_0x27bf12,_0x4f67b,_0x4c956f,_0x1c1c62){return _0x46f5(_0x27bf12-0x364,_0x4c956f);}function _0x135aa7(_0x105ac0,_0xd8f617,_0x5c9962,_0x4edb7d,_0x1cfd0b){return _0x46f5(_0x4edb7d- -0x247,_0xd8f617);}_0xae5465=_0x4792d1['BZGJG'](0x5,0x2);function _0x170ab4(_0x15354c,_0x547708,_0x4654e4,_0x1d11ad,_0x53d358){return _0x410a(_0x53d358-0x235,_0x547708);}function _0x47afab(_0xe8786e,_0x4cb5fb,_0x3e2f40,_0x459e43,_0x3a109c){return _0x410a(_0x459e43- -0xa4,_0x3a109c);}return _0x572f55(_0x16eee7(0x3df,0x3dd,0x3e4,0x39d,'vV5N'),{'directives':[{'name':_0x4792d1['dSPEs'],'rawName':_0x525ae5(0x2ec,0x32d,0x2e2,0x2dc,0x2f4)}],'attrs':{'title':_0x19ad3b['options']['title'],'visible':_0x19ad3b['dialogVisible'],'append-to-body':'','destroy-on-close':'','width':_0x19ad3b['options']['width'],'fullscreen':_0x19ad3b['options']['fullscreen'],'modal':_0x19ad3b['options']['showModal'],'show-close':_0x19ad3b['options']['showClose'],'close-on-click-modal':_0x19ad3b['options']['closeOnClickModal'],'close-on-press-escape':_0x19ad3b['options']['closeOnPressEscape'],'center':_0x19ad3b['options']['center'],"\u0062\u0065\u0066\u006f\u0072\u0065\u002d\u0063\u006c\u006f\u0073\u0065":_0x19ad3b['handleBeforeClose'],'custom-class':_0x4792d1["\u004b\u0067\u0079\u0075\u0052"]},"\u006f\u006e":{"\u0075\u0070\u0064\u0061\u0074\u0065\u003a\u0076\u0069\u0073\u0069\u0062\u006c\u0065":function(_0x471e47){function _0x25c2a8(_0x1edbae,_0x87c01,_0x57c8e7,_0x3f5d16,_0x4df313){return _0x410a(_0x1edbae-0x17c,_0x4df313);}function _0x49b7b8(_0xcfad9e,_0x5abc86,_0x163d87,_0x3d9165,_0x498103){return _0x410a(_0x163d87-0x2a4,_0x3d9165);}function _0x575a48(_0x6eb96b,_0x47a38d,_0x53e2bb,_0x20be51,_0x5d35aa){return _0x46f5(_0x6eb96b- -0x24d,_0x20be51);}function _0x424a9d(_0x3d44e9,_0x3000bd,_0x123d28,_0x34308c,_0x2625a7){return _0x46f5(_0x3000bd- -0x10a,_0x2625a7);}if(_0x49b7b8(0x30c,0x2df,0x2bc,0x2f6,0x308)===_0x49b7b8(0x2da,0x2e9,0x2bc,0x2e7,0x2d2)){_0x19ad3b['dialogVisible']=_0x471e47;}else{_0x1e86db['options']['readMode']&&_0x51b009["\u0024\u0072\u0065\u0066\u0073"][_0x575a48(-0x201,-0x1ee,-0x24e,'aV%q',-0x254)]['setReadMode'](!_0x4792d1['sPtlZ'](0x5aacb,0x5aacb)),_0x3817d3['$refs'][_0x424a9d(-0x114,-0xc8,-0xdc,-0x118,'3orG')]['setDialogOrDrawerRef'](_0x1ef7c9);}},'close':_0x19ad3b['handleCloseEvent'],'opened':_0x19ad3b['handleOpenedEvent']}},[_0x572f55(_0x5d7c68(0x3f4,0x3e5,0x3d8,"\u0072\u0053\u0028\u0069",0x410),{'staticClass':_0x16eee7(0x416,0x3c7,0x40d,0x3a4,'&wGN')},[_0x4792d1['hkZyV'](_0x572f55,_0x16eee7(0x314,0x358,0x33c,0x38e,'BehO'),{'ref':_0x4792d1['psUTT'],'attrs':{'form-json':_0x19ad3b['formJson'],'form-data':_0x19ad3b['formData'],'option-data':_0x19ad3b['optionData'],'global-dsv':_0x19ad3b['globalDsv'],'parent-form':_0x19ad3b["\u0070\u0061\u0072\u0065\u006e\u0074\u0046\u006f\u0072\u006d\u0052\u0065\u0066"],'disabled-mode':_0x19ad3b['options']['disabledMode'],"\u0064\u0079\u006e\u0061\u006d\u0069\u0063\u002d\u0063\u0072\u0065\u0061\u0074\u0069\u006f\u006e":!(0xe5ed8^0xe5ed8)}})]),_0x4792d1['iZbRA'](_0x572f55,_0x16eee7(0x3ec,0x3b3,0x3c9,0x392,'I0ff'),{'staticClass':_0x4792d1['suWvH'],'attrs':{'slot':_0x4792d1['TmLJQ']},"\u0073\u006c\u006f\u0074":_0x4792d1['TmLJQ']},[_0x19ad3b['options']['cancelButtonHidden']?'':_0x4792d1['PwlBf'](_0x572f55,_0x525ae5(0x2ed,0x2ee,0x2ed,0x2af,0x2bc),{'attrs':{'class':_0x4792d1['dpQvU'],'plain':""},'on':{"\u0063\u006c\u0069\u0063\u006b":_0x19ad3b['handleCancelClick']}},[_0x572f55('i',{'attrs':{'class':_0x4792d1['GFnei']}}),_0x19ad3b["\u006f\u0070\u0074\u0069\u006f\u006e\u0073"]['cancelButtonLabel']]),_0x19ad3b['options']['okButtonHidden']?"".split("").reverse().join(""):_0x4792d1['PwlBf'](_0x572f55,_0x49b353(0x37b,0x369,0x3bb,0x3ad,0x366),{'attrs':{'type':_0x11061a(-0x148,-0x13f,"RdSD".split("").reverse().join(""),-0x16d,-0x177),'class':_0x11061a(-0x14e,-0x183,'SFY#',-0x17a,-0x19c)},'on':{'click':_0x19ad3b['handleOkClick']}},[_0x572f55('i',{'attrs':{'class':_0x3dac2e(0xa5,0x5a,0xdd,0xb8,0xaf)}}),_0x19ad3b["\u006f\u0070\u0074\u0069\u006f\u006e\u0073"]['okButtonLabel']])],0x1)],0x1);}};
|
|
5
240
|
export default modules;
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import i18n from "../../../components/xform/utils/i18n";
|
|
2
|
+
|
|
3
|
+
let modules = {};
|
|
4
|
+
const baseRefUtil = {
|
|
5
|
+
i18n,
|
|
6
|
+
};
|
|
7
|
+
modules = {
|
|
8
|
+
name: "dynamic-drawer",
|
|
9
|
+
mixins: [baseRefUtil.i18n],
|
|
10
|
+
props: {
|
|
11
|
+
options: {
|
|
12
|
+
type: Object,
|
|
13
|
+
default: function () {
|
|
14
|
+
return {};
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
formJson: {
|
|
18
|
+
type: Object,
|
|
19
|
+
},
|
|
20
|
+
formData: {
|
|
21
|
+
type: Object,
|
|
22
|
+
default: function () {
|
|
23
|
+
return {};
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
optionData: {
|
|
27
|
+
type: Object,
|
|
28
|
+
default: function () {
|
|
29
|
+
return {};
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
globalDsv: {
|
|
33
|
+
type: Object,
|
|
34
|
+
default: function () {
|
|
35
|
+
return {};
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
parentFormRef: {
|
|
39
|
+
type: Object,
|
|
40
|
+
default: null,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
data: function () {
|
|
44
|
+
return {
|
|
45
|
+
drawerVisible: !1,
|
|
46
|
+
};
|
|
47
|
+
},
|
|
48
|
+
computed: {
|
|
49
|
+
cancelBtnLabel: function () {
|
|
50
|
+
return (
|
|
51
|
+
this.options.cancelButtonLabel || this.i18nt("designer.hint.cancel")
|
|
52
|
+
);
|
|
53
|
+
},
|
|
54
|
+
okBtnLabel: function () {
|
|
55
|
+
return this.options.okButtonLabel || this.i18nt("designer.hint.confirm");
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
mounted: function () {},
|
|
59
|
+
methods: {
|
|
60
|
+
show: function () {
|
|
61
|
+
var e = this;
|
|
62
|
+
(this.drawerVisible = !0),
|
|
63
|
+
this.$nextTick(function () {
|
|
64
|
+
e.options.readMode && e.$refs["dFormRef"].setReadMode(!0),
|
|
65
|
+
e.$refs["dFormRef"].setDialogOrDrawerRef(e);
|
|
66
|
+
});
|
|
67
|
+
},
|
|
68
|
+
close: function () {
|
|
69
|
+
if (this.options.onDrawerBeforeClose) {
|
|
70
|
+
var e = new Function("done", this.options.onDrawerBeforeClose),
|
|
71
|
+
t = e.call(this);
|
|
72
|
+
if (!1 === t) return;
|
|
73
|
+
}
|
|
74
|
+
this.$destroy();
|
|
75
|
+
},
|
|
76
|
+
handleBeforeClose: function (e) {
|
|
77
|
+
if (this.options.onDrawerBeforeClose) {
|
|
78
|
+
var t = new Function("done", this.options.onDrawerBeforeClose),
|
|
79
|
+
i = t.call(this);
|
|
80
|
+
return !1 === i ? i : e();
|
|
81
|
+
}
|
|
82
|
+
return e();
|
|
83
|
+
},
|
|
84
|
+
handleCloseEvent: function () {
|
|
85
|
+
this.$destroy();
|
|
86
|
+
},
|
|
87
|
+
handleOpenedEvent: function () {
|
|
88
|
+
if (this.options.onDrawerOpened) {
|
|
89
|
+
var e = new Function(this.options.onDrawerOpened);
|
|
90
|
+
e.call(this);
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
handleCancelClick: function () {
|
|
94
|
+
if (this.options.onCancelButtonClick) {
|
|
95
|
+
var e = new Function(this.options.onCancelButtonClick),
|
|
96
|
+
t = e.call(this);
|
|
97
|
+
if (!1 === t) return;
|
|
98
|
+
}
|
|
99
|
+
this.$destroy();
|
|
100
|
+
},
|
|
101
|
+
handleOkClick: function () {
|
|
102
|
+
if (this.options.onOkButtonClick) {
|
|
103
|
+
var e = new Function(this.options.onOkButtonClick),
|
|
104
|
+
t = e.call(this);
|
|
105
|
+
if (!1 === t) return;
|
|
106
|
+
}
|
|
107
|
+
this.$destroy();
|
|
108
|
+
},
|
|
109
|
+
getParentFormRef: function () {
|
|
110
|
+
return this.parentFormRef;
|
|
111
|
+
},
|
|
112
|
+
getFormRef: function () {
|
|
113
|
+
return this.$refs["dFormRef"];
|
|
114
|
+
},
|
|
115
|
+
getWidgetRef: function (e) {
|
|
116
|
+
var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1];
|
|
117
|
+
return this.$refs["dFormRef"].getWidgetRef(e, t);
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
render: function (i) {
|
|
121
|
+
let e = this;
|
|
122
|
+
return i(
|
|
123
|
+
"el-drawer",
|
|
124
|
+
{
|
|
125
|
+
attrs: {
|
|
126
|
+
title: e.options.title,
|
|
127
|
+
visible: e.drawerVisible,
|
|
128
|
+
"append-to-body": true,
|
|
129
|
+
"destroy-on-close": true,
|
|
130
|
+
size: e.options.size || e.options.width,
|
|
131
|
+
modal: e.options.showModal,
|
|
132
|
+
"show-close": e.options.showClose,
|
|
133
|
+
"wrapper-closable": e.options.closeOnClickModal !== false,
|
|
134
|
+
"close-on-press-escape": e.options.closeOnPressEscape,
|
|
135
|
+
"before-close": e.handleBeforeClose,
|
|
136
|
+
"custom-class": "drawer-style list-drawer",
|
|
137
|
+
},
|
|
138
|
+
on: {
|
|
139
|
+
"update:visible": function (t) {
|
|
140
|
+
e.drawerVisible = t;
|
|
141
|
+
},
|
|
142
|
+
close: e.handleCloseEvent,
|
|
143
|
+
opened: e.handleOpenedEvent,
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
[
|
|
147
|
+
i(
|
|
148
|
+
"div",
|
|
149
|
+
{
|
|
150
|
+
staticClass: "cont",
|
|
151
|
+
},
|
|
152
|
+
[
|
|
153
|
+
i("VFormRender", {
|
|
154
|
+
ref: "dFormRef",
|
|
155
|
+
attrs: {
|
|
156
|
+
"form-json": e.formJson,
|
|
157
|
+
"form-data": e.formData,
|
|
158
|
+
"option-data": e.optionData,
|
|
159
|
+
"global-dsv": e.globalDsv,
|
|
160
|
+
"parent-form": e.parentFormRef,
|
|
161
|
+
"disabled-mode": e.options.disabledMode,
|
|
162
|
+
"dynamic-creation": !0,
|
|
163
|
+
},
|
|
164
|
+
}),
|
|
165
|
+
i(
|
|
166
|
+
"div",
|
|
167
|
+
{
|
|
168
|
+
staticClass: "drawer-footer dialog-footer",
|
|
169
|
+
},
|
|
170
|
+
[
|
|
171
|
+
e.options.cancelButtonHidden
|
|
172
|
+
? ""
|
|
173
|
+
: i(
|
|
174
|
+
"el-button",
|
|
175
|
+
{
|
|
176
|
+
attrs: {
|
|
177
|
+
class:
|
|
178
|
+
"button-sty el-button el-button--default el-button--medium is-plain",
|
|
179
|
+
plain: "",
|
|
180
|
+
},
|
|
181
|
+
on: {
|
|
182
|
+
click: e.handleCancelClick,
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
[
|
|
186
|
+
i("i", {
|
|
187
|
+
attrs: {
|
|
188
|
+
class: "el-icon-close el-icon",
|
|
189
|
+
},
|
|
190
|
+
}),
|
|
191
|
+
e.options.cancelButtonLabel,
|
|
192
|
+
]
|
|
193
|
+
),
|
|
194
|
+
e.options.okButtonHidden
|
|
195
|
+
? ""
|
|
196
|
+
: i(
|
|
197
|
+
"el-button",
|
|
198
|
+
{
|
|
199
|
+
attrs: {
|
|
200
|
+
type: "primary",
|
|
201
|
+
class:
|
|
202
|
+
"button-sty el-button el-button--primary el-button--medium",
|
|
203
|
+
},
|
|
204
|
+
on: {
|
|
205
|
+
click: e.handleOkClick,
|
|
206
|
+
},
|
|
207
|
+
},
|
|
208
|
+
[
|
|
209
|
+
i("i", {
|
|
210
|
+
attrs: {
|
|
211
|
+
class: "el-icon-check el-icon",
|
|
212
|
+
},
|
|
213
|
+
}),
|
|
214
|
+
e.options.okButtonLabel,
|
|
215
|
+
]
|
|
216
|
+
),
|
|
217
|
+
],
|
|
218
|
+
1
|
|
219
|
+
),
|
|
220
|
+
],
|
|
221
|
+
1
|
|
222
|
+
),
|
|
223
|
+
],
|
|
224
|
+
1
|
|
225
|
+
);
|
|
226
|
+
},
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
export default modules;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 表单级「动态字段规则」运行时混入(挂载于 VFormRender 根组件)。
|
|
3
|
+
*
|
|
4
|
+
* 配置来源:formConfig.dynamicFieldEnabled / dynamicFieldSourceType / dynamicFieldRules /
|
|
5
|
+
* dynamicFieldScriptCode / dynamicFieldScriptParam(额外参数) / dynamicFieldTriggerFields
|
|
6
|
+
* 作用范围:整个表单内任意字段 / 命名容器的 显隐/必填/只读/禁用/取值。
|
|
7
|
+
*
|
|
8
|
+
* 依赖根组件(indexMixin)已提供:formConfig、widgetList、formModel、getWidgetRef、formHttp。
|
|
9
|
+
*/
|
|
10
|
+
import {
|
|
11
|
+
buildFormTargetMap,
|
|
12
|
+
computeLocalStates,
|
|
13
|
+
applyTargetState,
|
|
14
|
+
} from "./container-item/dynamicFieldEngine";
|
|
15
|
+
|
|
16
|
+
export default {
|
|
17
|
+
created() {
|
|
18
|
+
// 目标key -> { widget, refKey, isContainer }
|
|
19
|
+
this._fdfMap = {};
|
|
20
|
+
// 设计期基线,未命中规则时还原
|
|
21
|
+
this._fdfBaseline = {};
|
|
22
|
+
this._fdfWatcher = null;
|
|
23
|
+
this._fdfTimer = null;
|
|
24
|
+
this._fdfInited = false;
|
|
25
|
+
},
|
|
26
|
+
watch: {
|
|
27
|
+
showFormContent(val) {
|
|
28
|
+
// 表单内容渲染(字段ref注册)完成后再初始化
|
|
29
|
+
if (val && !this._fdfInited) {
|
|
30
|
+
this.$nextTick(() => this.initFormDynamicFields());
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
beforeDestroy() {
|
|
35
|
+
if (this._fdfWatcher) {
|
|
36
|
+
this._fdfWatcher();
|
|
37
|
+
this._fdfWatcher = null;
|
|
38
|
+
}
|
|
39
|
+
if (this._fdfTimer) {
|
|
40
|
+
clearTimeout(this._fdfTimer);
|
|
41
|
+
this._fdfTimer = null;
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
methods: {
|
|
45
|
+
initFormDynamicFields() {
|
|
46
|
+
const cfg = this.formConfig || {};
|
|
47
|
+
if (!cfg.dynamicFieldEnabled) return;
|
|
48
|
+
this._fdfInited = true;
|
|
49
|
+
const { map, baseline } = buildFormTargetMap(this.widgetList);
|
|
50
|
+
this._fdfMap = map;
|
|
51
|
+
this._fdfBaseline = baseline;
|
|
52
|
+
this.applyFormDynamicFields();
|
|
53
|
+
this.setupFormDynamicWatcher();
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
applyFormDynamicFields() {
|
|
57
|
+
const cfg = this.formConfig || {};
|
|
58
|
+
if (!cfg.dynamicFieldEnabled) return;
|
|
59
|
+
if (cfg.dynamicFieldSourceType === "script") {
|
|
60
|
+
this.applyFormScriptStates();
|
|
61
|
+
} else {
|
|
62
|
+
const states = computeLocalStates(
|
|
63
|
+
cfg.dynamicFieldRules || [],
|
|
64
|
+
this._fdfBaseline,
|
|
65
|
+
this.formModel
|
|
66
|
+
);
|
|
67
|
+
Object.keys(states).forEach((key) =>
|
|
68
|
+
this.applyFormFieldState(key, states[key])
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
|
|
73
|
+
applyFormFieldState(targetKey, state) {
|
|
74
|
+
const entry = this._fdfMap[targetKey];
|
|
75
|
+
if (!entry) return;
|
|
76
|
+
applyTargetState(entry, state, (name) => this.getWidgetRef(name));
|
|
77
|
+
},
|
|
78
|
+
|
|
79
|
+
setupFormDynamicWatcher() {
|
|
80
|
+
const cfg = this.formConfig || {};
|
|
81
|
+
if (cfg.dynamicFieldSourceType === "script") {
|
|
82
|
+
const triggers = cfg.dynamicFieldTriggerFields || [];
|
|
83
|
+
if (!triggers.length) return;
|
|
84
|
+
this._fdfWatcher = this.$watch(
|
|
85
|
+
() =>
|
|
86
|
+
triggers
|
|
87
|
+
.map((f) => this.formModel && this.formModel[f])
|
|
88
|
+
.join("\u0001"),
|
|
89
|
+
() => this.debouncedFormApply()
|
|
90
|
+
);
|
|
91
|
+
} else {
|
|
92
|
+
this._fdfWatcher = this.$watch(
|
|
93
|
+
() => this.formModel,
|
|
94
|
+
() => this.debouncedFormApply(),
|
|
95
|
+
{ deep: true }
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
debouncedFormApply() {
|
|
101
|
+
if (this._fdfTimer) clearTimeout(this._fdfTimer);
|
|
102
|
+
this._fdfTimer = setTimeout(() => this.applyFormDynamicFields(), 120);
|
|
103
|
+
},
|
|
104
|
+
|
|
105
|
+
applyFormScriptStates() {
|
|
106
|
+
const cfg = this.formConfig || {};
|
|
107
|
+
if (!cfg.dynamicFieldScriptCode) return;
|
|
108
|
+
const extra = this.handleCustomEvent(cfg.dynamicFieldScriptParam) || {};
|
|
109
|
+
this.formHttp({
|
|
110
|
+
scriptCode: cfg.dynamicFieldScriptCode,
|
|
111
|
+
isLoading: false,
|
|
112
|
+
data: {
|
|
113
|
+
formData: this.formModel,
|
|
114
|
+
...extra,
|
|
115
|
+
},
|
|
116
|
+
success: (res) => {
|
|
117
|
+
const result = (res && res.objx) || {};
|
|
118
|
+
const fieldStates = result.fieldStates || {};
|
|
119
|
+
Object.keys(this._fdfBaseline).forEach((key) => {
|
|
120
|
+
if (!fieldStates[key]) {
|
|
121
|
+
this.applyFormFieldState(key, this._fdfBaseline[key]);
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
Object.keys(fieldStates).forEach((key) =>
|
|
125
|
+
this.applyFormFieldState(key, fieldStates[key])
|
|
126
|
+
);
|
|
127
|
+
},
|
|
128
|
+
});
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
};
|