cloud-web-corejs 1.0.54-dev.33 → 1.0.54-dev.330
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 +8 -3
- package/src/components/Qrcode/fileParse.vue +0 -1
- package/src/components/VabUpload/index.vue +2 -1
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/propertiesDialog.vue +1 -1
- package/src/components/VabUpload/view.vue +135 -119
- package/src/components/advancedSearchDialog/mixins.js +1 -1
- package/src/components/baseAttachment/index.vue +49 -40
- package/src/components/baseAttachment/mixins.js +1 -1
- package/src/components/baseInputExport/mixins.js +386 -1
- package/src/components/errorMsg/mixins.js +94 -5
- package/src/components/excelExport/button.vue +57 -4
- package/src/components/excelExport/exportFieldDialog.vue +16 -6
- package/src/components/excelExport/index.js +7 -5
- package/src/components/excelExport/index.vue +64 -8
- package/src/components/excelExport/mixins.js +3 -2
- package/src/components/excelImport/mixins.js +750 -1
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -0
- package/src/components/fileLibrary/filterDialog.vue +383 -0
- package/src/components/fileLibrary/index.vue +23 -24
- 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 +335 -212
- 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 +69 -26
- package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +63 -3
- package/src/components/fileLibrary/mixins/recycleBinDialogMixins.js +1 -1
- package/src/components/fileLibrary/propertiesDialog.vue +18 -0
- package/src/components/fileLibrary/shareDialog.vue +1 -1
- package/src/components/formOplog/mixins.js +1 -1
- package/src/components/jsonImport/index.js +1 -1
- package/src/components/jsonImport/mixins.js +333 -1
- package/src/components/langImport/mixins.js +500 -16
- package/src/components/statusTag/mixins.js +1 -1
- package/src/components/table/CellSlot.vue +1 -0
- package/src/components/table/index.js +12 -10
- package/src/components/table/tableForm.vue +99 -63
- package/src/components/table/tableFormMixin.js +1 -1
- package/src/components/table/util/index.js +328 -0
- package/src/components/table/vxeFilter/mixin.js +6 -6
- package/src/components/tempStorage/index.vue +9 -6
- package/src/components/tempStorage/tempStorageDialog.vue +1 -1
- package/src/components/vb-tabs/x-tabs.vue +3 -2
- package/src/components/wf/addOpinionButton.vue +57 -0
- package/src/components/wf/content.vue +138 -28
- package/src/components/wf/mixins/addOpinionButton.js +3 -0
- package/src/components/wf/mixins/setCandidateButton.js +6 -0
- package/src/components/wf/mixins/setCandidateDialog.js +2 -1
- package/src/components/wf/mixins/setCandidateDialog2.js +6 -0
- package/src/components/wf/mixins/wfTaskUserRangeDialog.js +3 -0
- package/src/components/wf/setCandidateButton.vue +40 -0
- package/src/components/wf/setCandidateDialog.vue +10 -0
- package/src/components/wf/setCandidateDialog2.vue +95 -0
- package/src/components/wf/wf.js +1 -1
- package/src/components/wf/wfStartDialog.vue +70 -42
- package/src/components/wf/wfTaskUserRangeDialog.vue +65 -0
- package/src/components/wf/wfUtil.js +1 -1
- package/src/components/xform/form-designer/designer.js +1647 -3
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +289 -8
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +3 -3
- package/src/components/xform/form-designer/form-widget/dialog/exportDialog.vue +13 -0
- package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +301 -0
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +16 -4
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +5 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +37 -6
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1312 -1
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +26 -7
- package/src/components/xform/form-designer/form-widget/field-widget/a-link-widget.vue +1 -1
- 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/baseAttachment-widget.vue +34 -5
- package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +14 -6
- package/src/components/xform/form-designer/form-widget/field-widget/copy_button-widget.vue +89 -0
- package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +1 -0
- package/src/components/xform/form-designer/form-widget/field-widget/date-widget.vue +21 -2
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-item-widget.vue +77 -0
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-menu-widget.vue +106 -0
- package/src/components/xform/form-designer/form-widget/field-widget/echart-bar-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-category-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-pie-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1584 -16
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +652 -379
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +6 -8
- package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +81 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +49 -8
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +61 -88
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +13 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/vabsearch-mixin.js +176 -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 +107 -81
- package/src/components/xform/form-designer/form-widget/field-widget/print-button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/print-detail-button-widget.vue +108 -0
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +70 -3
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +21 -5
- 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-widget.vue +17 -5
- 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 +2 -1
- package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +22 -17
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +6 -1
- package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +127 -0
- package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +46 -34
- package/src/components/xform/form-designer/form-widget/field-widget/time-range-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/vabSearch-widget.vue +2 -170
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +259 -58
- package/src/components/xform/form-designer/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +927 -159
- package/src/components/xform/form-designer/setting-panel/index.vue +4 -0
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +71 -7
- 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/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 +126 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +1079 -1042
- 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 +1160 -511
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +2 -2
- 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 +0 -8
- 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/event-handler/eventMixin.js +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +32 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +2 -2
- 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/search-dialog-event-editor.vue +64 -5
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +27 -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-echart/echart-bar-editor.vue +185 -69
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +188 -86
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +84 -39
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +26 -10
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +86 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +8 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +91 -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-status/field-status-editor.vue +47 -28
- 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/table-export-button-editor.vue +26 -7
- 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 +30 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +46 -4
- 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 +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelTooltip-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/limit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/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/placeholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/precision-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +318 -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/showRuleFlag-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +23 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +305 -19
- 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 +384 -53
- 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 +27 -11
- package/src/components/xform/form-designer/toolbar-panel/index.vue +12 -11
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/index.vue +21 -1
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +3 -2
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +1478 -865
- package/src/components/xform/form-render/container-item/containerItemMixin.js +359 -11
- package/src/components/xform/form-render/container-item/data-table-item.vue +86 -42
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2580 -18
- package/src/components/xform/form-render/container-item/detail-pane-item.vue +17 -3
- 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 +1 -9
- package/src/components/xform/form-render/container-item/list-h5-item2.vue +1 -8
- package/src/components/xform/form-render/container-item/tab-item.vue +11 -6
- 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 +4 -2
- package/src/components/xform/form-render/index.vue +4 -1
- package/src/components/xform/form-render/indexMixin.js +3129 -4
- package/src/components/xform/lang/zh-CN.js +18 -3
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/mixins/scriptHttp.js +174 -1
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/format.js +21 -30
- package/src/components/xform/utils/formula-util.js +669 -0
- package/src/components/xform/utils/util.js +1451 -1
- package/src/components/xform/utils/validators.js +1 -5
- package/src/index.js +2 -2
- package/src/layout/components/AppMain.vue +5 -1
- package/src/layout/components/Sidebar/default.vue +50 -6
- package/src/layout/components/TagsView/index.vue +37 -12
- package/src/layout/components/extractedCode/createDialog.vue +92 -0
- package/src/layout/components/extractedCode/queryDialog.vue +96 -0
- package/src/layout/components/extractedCode/viewDialog.vue +193 -0
- package/src/layout/components/watermark/index.vue +83 -0
- package/src/layout/defaultLayout.vue +1 -1
- package/src/mixins/selectDialog/index.js +1 -1
- package/src/mixins/tableTree/index.js +1 -1
- package/src/router/modules/customer.js +61 -8
- package/src/store/config/index.js +1 -1
- package/src/store/modules/permission.js +1 -1
- package/src/store/modules/settings.js +1 -1
- package/src/store/modules/tagsView.js +1 -14
- package/src/store/modules/user.js +1 -1
- package/src/utils/index.js +2 -3
- package/src/utils/pddLog.js +103 -0
- package/src/utils/pdfUtil.js +71 -0
- package/src/utils/request.js +1 -1
- package/src/utils/vab.js +19 -27
- 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/edit.js +4 -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 +163 -0
- package/src/views/bd/setting/bd_company_env/list.vue +175 -0
- package/src/views/bd/setting/config_manage/list.vue +51 -0
- package/src/views/bd/setting/form_import_log/edit.vue +127 -0
- package/src/views/bd/setting/form_import_log/list.vue +206 -0
- package/src/views/bd/setting/form_script/edit.vue +9 -0
- package/src/views/bd/setting/form_script/edit1.vue +36 -3
- package/src/views/bd/setting/form_script/form_list.vue +1 -1
- package/src/views/bd/setting/form_script/list1.vue +4 -4
- package/src/views/bd/setting/form_script/mixins/dialog.js +130 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +201 -1
- package/src/views/bd/setting/form_script/mixins/edit1.js +193 -1
- package/src/views/bd/setting/form_script/mixins/form_list.js +1 -1
- package/src/views/bd/setting/form_script/mixins/list.js +236 -1
- package/src/views/bd/setting/form_script/mixins/list1.js +422 -14
- package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +194 -0
- package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +105 -0
- package/src/views/bd/setting/form_template/edit.vue +22 -1
- package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +2 -2
- package/src/views/bd/setting/form_template/list.vue +5 -5
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +282 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +234 -9
- package/src/views/bd/setting/form_template/mixins/list.js +688 -22
- package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +193 -0
- package/src/views/bd/setting/form_template/mixins/wf_list.js +12 -0
- package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +254 -0
- package/src/views/bd/setting/form_template/wf_list.vue +127 -0
- package/src/views/bd/setting/menu_kind/list.vue +4 -0
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +1 -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 +317 -0
- package/src/views/bd/setting/request_setting/edit.vue +300 -0
- package/src/views/bd/setting/request_setting/list.vue +268 -0
- package/src/views/bd/setting/table_model/edit.vue +875 -426
- package/src/views/bd/setting/table_model/list.vue +4 -4
- package/src/views/bd/setting/table_model/mixins/dialog.js +1 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +1202 -13
- package/src/views/bd/setting/table_model/mixins/list.js +439 -14
- package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +201 -0
- package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
- package/src/views/user/area/dialog.vue +21 -9
- package/src/views/user/bill_setting/edit.vue +1 -1
- package/src/views/user/bill_setting/list.vue +1 -1
- package/src/views/user/common_attribute/itemEdit.vue +2 -2
- package/src/views/user/common_attribute/list.vue +1 -1
- package/src/views/user/common_script/edit.vue +1 -1
- package/src/views/user/common_script/list.vue +1 -1
- package/src/views/user/company_info/dialog.vue +164 -154
- package/src/views/user/company_info/edit.vue +1 -1
- package/src/views/user/extend_datasource/dialog.vue +1 -0
- package/src/views/user/extend_datasource/edit.vue +3 -0
- package/src/views/user/extend_datasource/list.vue +2 -1
- package/src/views/user/fieldTranslation/editDialog.vue +7 -7
- package/src/views/user/fieldTranslation/list.vue +32 -32
- package/src/views/user/form/vform/designer.vue +775 -749
- package/src/views/user/form/vform/out_render.vue +1 -1
- package/src/views/user/form/vform/render.vue +8 -4
- package/src/views/user/form/view/edit.vue +38 -37
- package/src/views/user/form/view/list.vue +68 -15
- package/src/views/user/groups/edit.vue +2 -0
- package/src/views/user/groups/list.vue +1 -0
- package/src/views/user/home/default.vue +1025 -979
- package/src/views/user/home/dev.vue +29 -0
- package/src/views/user/home/index.vue +16 -6
- package/src/views/user/home/taili/index.vue +1034 -0
- package/src/views/user/login/default.vue +32 -3
- package/src/views/user/login/indexMixin.js +117 -3
- package/src/views/user/notify_message/dialog.vue +23 -8
- 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 -184
- package/src/views/user/outLink/index.vue +17 -0
- package/src/views/user/outLink/view.vue +28 -23
- package/src/views/user/position/edit.vue +55 -54
- 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/push_setting/list.vue +2 -2
- 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/dialog.vue +1 -1
- 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/user/dialog.vue +46 -23
- package/src/views/user/user/edit.vue +1059 -1021
- package/src/views/user/user/form_dialog.vue +158 -0
- package/src/views/user/user/form_edit.vue +63 -2
- package/src/views/user/user/form_info.vue +210 -0
- package/src/views/user/user/form_list.vue +1 -0
- package/src/views/user/user/list.vue +22 -3
- package/src/views/user/wf/wf_auto_submit_data/list.vue +2 -0
- package/src/views/user/wf/wf_manage/list.vue +30 -1
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +1 -1
- 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_obj_config/wfBizDataSettingDialog.vue +2 -2
@@ -4,5 +4,240 @@ import {getBdFlag} from "@base/api/user";
|
|
4
4
|
import {getJsxBtn, getJsxStatus} from "@base/views/bd/setting/utils/index";
|
5
5
|
|
6
6
|
let modules = {};
|
7
|
-
function _0x2ff3(_0x5a3d12,_0x55687e){const _0x2ff306=_0x5568();_0x2ff3=function(_0x21c945,_0x9f9470){_0x21c945=_0x21c945-0x0;let _0x10f51b=_0x2ff306[_0x21c945];if(_0x2ff3['CoVDKl']===undefined){var _0x8f677e=function(_0x2bb9c4){const _0x5a2454="\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006a\u006b\u006c\u006d\u006e\u006f\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007a\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004a\u004b\u004c\u004d\u004e\u004f\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005a\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u002b\u002f\u003d";let _0x1cebeb='';let _0x280950='';for(let _0x180a55=0x0,_0x307216,_0x53c203,_0x360189=0x0;_0x53c203=_0x2bb9c4["\u0063\u0068\u0061\u0072\u0041\u0074"](_0x360189++);~_0x53c203&&(_0x307216=_0x180a55%0x4?_0x307216*0x40+_0x53c203:_0x53c203,_0x180a55++%0x4)?_0x1cebeb+=String['fromCharCode'](0xff&_0x307216>>(-0x2*_0x180a55&0x6)):0x0){_0x53c203=_0x5a2454["\u0069\u006e\u0064\u0065\u0078\u004f\u0066"](_0x53c203);}for(let _0xf180a3=0x0,_0x4aa857=_0x1cebeb["\u006c\u0065\u006e\u0067\u0074\u0068"];_0xf180a3<_0x4aa857;_0xf180a3++){_0x280950+="\u0025"+("\u0030\u0030"+_0x1cebeb["\u0063\u0068\u0061\u0072\u0043\u006f\u0064\u0065\u0041\u0074"](_0xf180a3)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x280950);};_0x2ff3['cGSdYN']=_0x8f677e;_0x5a3d12=arguments;_0x2ff3["\u0043\u006f\u0056\u0044\u004b\u006c"]=!![];}const _0x4b3c72=_0x2ff306[0x0];const _0x4df971=_0x21c945+_0x4b3c72;const _0x244503=_0x5a3d12[_0x4df971];if(!_0x244503){_0x10f51b=_0x2ff3['cGSdYN'](_0x10f51b);_0x5a3d12[_0x4df971]=_0x10f51b;}else{_0x10f51b=_0x244503;}return _0x10f51b;};return _0x2ff3(_0x5a3d12,_0x55687e);}function sfjePQ(_0x17e110,_0x1a5ba1){if(!![]!=![])return;sfjePQ=function(_0x517dc7,_0x41224c){_0x517dc7=_0x517dc7-(0x973c9^0x973c9);var _0x15deab=_0x5e50e6[_0x517dc7];return _0x15deab;};return sfjePQ(_0x17e110,_0x1a5ba1);}sfjePQ();function _0x2445(_0x5a3d12,_0x55687e){const _0x2ff306=_0x5568();_0x2445=function(_0x21c945,_0x9f9470){_0x21c945=_0x21c945-0x0;let _0x10f51b=_0x2ff306[_0x21c945];if(_0x2445["\u0066\u007a\u0053\u0068\u006e\u0077"]===undefined){var _0x8f677e=function(_0x5a2454){const _0x1cebeb="=/+9876543210ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba".split("").reverse().join("");let _0x280950='';let _0x180a55='';for(let _0x307216=0x0,_0x53c203,_0x360189,_0xf180a3=0x0;_0x360189=_0x5a2454['charAt'](_0xf180a3++);~_0x360189&&(_0x53c203=_0x307216%0x4?_0x53c203*0x40+_0x360189:_0x360189,_0x307216++%0x4)?_0x280950+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](0xff&_0x53c203>>(-0x2*_0x307216&0x6)):0x0){_0x360189=_0x1cebeb["\u0069\u006e\u0064\u0065\u0078\u004f\u0066"](_0x360189);}for(let _0x4aa857=0x0,_0x17e110=_0x280950["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x4aa857<_0x17e110;_0x4aa857++){_0x180a55+="\u0025"+("\u0030\u0030"+_0x280950['charCodeAt'](_0x4aa857)['toString'](0x10))["\u0073\u006c\u0069\u0063\u0065"](-0x2);}return decodeURIComponent(_0x180a55);};const _0x2bb9c4=function(_0x1a5ba1,_0x517dc7){let _0x41224c=[],_0x15deab=0x0,_0x2f86fe,_0x5e9ff5='';_0x1a5ba1=_0x8f677e(_0x1a5ba1);let _0x254e43;for(_0x254e43=0x0;_0x254e43<0x100;_0x254e43++){_0x41224c[_0x254e43]=_0x254e43;}for(_0x254e43=0x0;_0x254e43<0x100;_0x254e43++){_0x15deab=(_0x15deab+_0x41224c[_0x254e43]+_0x517dc7['charCodeAt'](_0x254e43%_0x517dc7['length']))%0x100;_0x2f86fe=_0x41224c[_0x254e43];_0x41224c[_0x254e43]=_0x41224c[_0x15deab];_0x41224c[_0x15deab]=_0x2f86fe;}_0x254e43=0x0;_0x15deab=0x0;for(let _0x3b396c=0x0;_0x3b396c<_0x1a5ba1["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x3b396c++){_0x254e43=(_0x254e43+0x1)%0x100;_0x15deab=(_0x15deab+_0x41224c[_0x254e43])%0x100;_0x2f86fe=_0x41224c[_0x254e43];_0x41224c[_0x254e43]=_0x41224c[_0x15deab];_0x41224c[_0x15deab]=_0x2f86fe;_0x5e9ff5+=String['fromCharCode'](_0x1a5ba1['charCodeAt'](_0x3b396c)^_0x41224c[(_0x41224c[_0x254e43]+_0x41224c[_0x15deab])%0x100]);}return _0x5e9ff5;};_0x2445['BLrcKU']=_0x2bb9c4;_0x5a3d12=arguments;_0x2445["\u0066\u007a\u0053\u0068\u006e\u0077"]=!![];}const _0x4b3c72=_0x2ff306[0x0];const _0x4df971=_0x21c945+_0x4b3c72;const _0x244503=_0x5a3d12[_0x4df971];if(!_0x244503){if(_0x2445["\u0062\u0070\u007a\u0052\u004b\u0071"]===undefined){_0x2445["\u0062\u0070\u007a\u0052\u004b\u0071"]=!![];}_0x10f51b=_0x2445["\u0042\u004c\u0072\u0063\u004b\u0055"](_0x10f51b,_0x9f9470);_0x5a3d12[_0x4df971]=_0x10f51b;}else{_0x10f51b=_0x244503;}return _0x10f51b;};return _0x2445(_0x5a3d12,_0x55687e);}function xXpvnA(_0x23ea95,_0x59eab9){if(!![]!=![])return;xXpvnA=function(_0x17fcb5,_0x149c92){_0x17fcb5=_0x17fcb5-(0x973c9^0x973c9);var _0x1a2303=_0x5e50e6[_0x17fcb5];return _0x1a2303;};return xXpvnA(_0x23ea95,_0x59eab9);}xXpvnA();function _0x49c1a3(_0x59d1f0,_0x41790e,_0xeea15f,_0x5cd904,_0x495f0f){return _0x2ff3(_0x5cd904-0xab,_0xeea15f);}(function(_0x29922b,_0x3b3a4a){function _0x23dbe3(_0x593007,_0x1ff821,_0x2c4393,_0x288ad2,_0x4c7c97){return _0x2445(_0x593007- -0xf5,_0x1ff821);}function _0x44a292(_0x5928c1,_0x3912ea,_0x538d50,_0x540d1e,_0xee6849){return _0x2ff3(_0x3912ea-0x160,_0x540d1e);}function _0xf7dc8f(_0x49302f,_0x4f86a4,_0x145112,_0x3d6a57,_0x28e531){return _0x2ff3(_0x28e531-0x2de,_0x49302f);}function _0xce3f0(_0x3bb37e,_0x2665ed,_0x25b815,_0x2806b0,_0x21a70d){return _0x2445(_0x25b815- -0x134,_0x2806b0);}function _0x3f6cae(_0xc41175,_0xd5e11,_0x54398d,_0x50db5b,_0x35b278){return _0x2ff3(_0xc41175-0x1f0,_0x54398d);}function _0x297cc7(_0x46a9d3,_0x30d7eb,_0x37b91e,_0x15b02e,_0x4c5201){return _0x2445(_0x30d7eb- -0x343,_0x15b02e);}const _0x269d79=_0x29922b();function _0xf5207f(_0xd390ef,_0x1ae247,_0x8f97a4,_0x98a0aa,_0x28755f){return _0x2445(_0x98a0aa-0x39d,_0x8f97a4);}function _0x256737(_0x31dbe7,_0x1a5f6d,_0x7c31c1,_0x4285fb,_0x5ccd0e){return _0x2445(_0x31dbe7- -0x14f,_0x5ccd0e);}function _0x4f494b(_0x56a9e5,_0x212c0a,_0x65e442,_0x23fb86,_0x3a2857){return _0x2ff3(_0x65e442- -0x35,_0x56a9e5);}function _0x32b859(_0x408632,_0x2f366d,_0x2a1f25,_0x200d3d,_0x5a9ca7){return _0x2ff3(_0x5a9ca7-0x8c,_0x408632);}do{try{const _0x26c0ae=-parseInt(_0x4f494b(-0x6,-0x4,-0x4,0x27,-0x41))/0x1+parseInt(_0xce3f0(-0xc9,-0xf3,-0xfa,"\u0026\u0061\u0079\u0058",-0x13b))/0x2+parseInt(_0x4f494b(0x1c,-0x27,0xd,0xc,-0x32))/0x3*(-parseInt(_0xce3f0(-0xfb,-0xe4,-0xcc,"\u005b\u0050\u005d\u0045",-0x10d))/0x4)+-parseInt(_0x32b859(0x69,0xa5,0xa0,0x6f,0xaa))/0x5+-parseInt(_0x3f6cae(0x26e,0x28c,0x295,0x273,0x271))/0x6*(parseInt(_0x32b859(0xef,0xb1,0x11e,0xe5,0xe9))/0x7)+parseInt(_0xce3f0(-0xc2,-0x128,-0xf0,"\u0078\u005b\u0067\u0051",-0xf8))/0x8*(parseInt(_0xf5207f(0x3f7,0x3c3,"\u0061\u006c\u004c\u0056",0x3ef,0x431))/0x9)+-parseInt(_0xce3f0(-0xdf,-0xc3,-0xc8,"\u007a\u007a\u005d\u0046",-0xcb))/0xa*(-parseInt(_0xf5207f(0x41c,0x443,"\u0066\u0050\u0074\u0045",0x412,0x43d))/0xb);if(_0x26c0ae===_0x3b3a4a){break;}else{_0x269d79["\u0070\u0075\u0073\u0068"](_0x269d79['shift']());}}catch(_0x46e560){_0x269d79['push'](_0x269d79["\u0073\u0068\u0069\u0066\u0074"]());}}while(!![]);})(_0x5568,0x87f5b);modules={'name':_0x49c1a3(0xc8,0xd7,0xf4,0xf7,0x10c),"\u0070\u0072\u006f\u0070\u0073":{"\u0073\u0063\u0072\u0069\u0070\u0074\u0054\u0079\u0070\u0065":{"\u0074\u0079\u0070\u0065":Number,'default':0x0},'formCode':{"\u0074\u0079\u0070\u0065":String,'default':null}},"\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073":{'tableForm':tableForm,"\u0065\u0064\u0069\u0074\u0056\u0069\u0065\u0077":editView},"\u0064\u0061\u0074\u0061"(){function _0xf1a026(_0x5cc484,_0x275786,_0x5350c1,_0xd2abf3,_0x3a26b6){return _0x2445(_0x275786- -0x24f,_0x3a26b6);}return{"\u0061\u0063\u0074\u0069\u0076\u0065\u004e\u0061\u006d\u0065":_0xf1a026(-0x210,-0x247,-0x230,-0x27f,"\u0024\u0055\u0028\u006d"),"\u0064\u0061\u0074\u0061\u0049\u0064":0x0,"\u0073\u0068\u006f\u0077\u0045\u0064\u0069\u0074":![],"\u0076\u0078\u0065\u004f\u0070\u0074\u0069\u006f\u006e":{},"\u0066\u006f\u0072\u006d\u0044\u0061\u0074\u0061":{},'isDev':!![]};},"\u006d\u006f\u0075\u006e\u0074\u0065\u0064"(){this['getBdEnv']();this['initTableList']();},"\u006d\u0065\u0074\u0068\u006f\u0064\u0073":{"\u0073\u0065\u0061\u0072\u0063\u0068\u0045\u0076\u0065\u006e\u0074"(){function _0x42c033(_0x1d2cfa,_0x45ce9a,_0x13d36b,_0x5a0706,_0x258ae5){return _0x2ff3(_0x13d36b-0xb,_0x45ce9a);}function _0x1291e6(_0x287e27,_0x2741fe,_0x429777,_0x470fef,_0x4b845d){return _0x2445(_0x429777-0x3e7,_0x4b845d);}this["\u0024\u0072\u0065\u0066\u0073"][_0x42c033(0x4f,-0x23,0x1d,0x34,0x44)]['commitProxy'](_0x1291e6(0x424,0x3f7,0x3e7,0x3fe,"\u0029\u0065\u0032\u004f"));},"\u0072\u0065\u0073\u0065\u0074\u0045\u0076\u0065\u006e\u0074"(){function _0x495a2c(_0x4c9334,_0x45c58f,_0x4aa522,_0x175270,_0xe16ec1){return _0x2ff3(_0x4aa522-0x8a,_0x175270);}const _0x3b24ed={'ghZCY':_0x495a2c(0x96,0xb9,0x9c,0x73,0xc8)};function _0x2dd8f4(_0x4bda28,_0x29dc5c,_0x3a3a97,_0x40620e,_0x275f66){return _0x2ff3(_0x275f66-0x49,_0x40620e);}this['formData']={};this['$refs'][_0x3b24ed["\u0067\u0068\u005a\u0043\u0059"]]["\u0063\u006f\u006d\u006d\u0069\u0074\u0050\u0072\u006f\u0078\u0079"](_0x495a2c(0xe1,0xf9,0xe2,0xae,0xd9));},'openEditDialog'(_0x2b2038){function _0x21baf1(_0x408213,_0x10fc2a,_0x3a9326,_0x2d747d,_0x2ceba1){return _0x2445(_0x2d747d-0x60,_0x408213);}function _0x4ef296(_0x4d48d5,_0x32b9f4,_0x1dc8c4,_0x4e76da,_0x3c5f89){return _0x2445(_0x3c5f89-0x3de,_0x4d48d5);}const _0x265fc2={'hFGru':function(_0x3590a9,_0x21da52){return _0x3590a9+_0x21da52;},"\u006c\u004f\u0050\u0064\u0053":_0x21baf1("\u006b\u007a\u0052\u0069",0x75,0xc7,0xa1,0xdb)};function _0x385b14(_0xd50ce5,_0x21a51e,_0x855ce2,_0x52a0f6,_0x1341d0){return _0x2ff3(_0x855ce2-0xfc,_0x21a51e);}var _0x4f7b52=_0x265fc2["\u0068\u0046\u0047\u0072\u0075"](0x6,0x7);let _0xd214da=_0x2b2038?.["di".split("").reverse().join("")]||0x5fea2^0x5fea2;_0x4f7b52=0x2;function _0x247fd9(_0x3c4f9d,_0x819af4,_0x14be95,_0x1ed51b,_0x436cc5){return _0x2ff3(_0x819af4-0x7f,_0x3c4f9d);}if(!_0xd214da){this["\u0064\u0061\u0074\u0061\u0049\u0064"]=_0xd214da;this['activeName']=_0x247fd9(0x5b,0x9c,0x63,0xd6,0xa5);this["\u0024\u006f\u0070\u0065\u006e\u0045\u0064\u0069\u0074\u0056\u0069\u0065\u0077"](_0x21baf1("hOt(".split("").reverse().join(""),0xab,0x6f,0xa8,0xa6));}else{if(_0x265fc2["\u006c\u004f\u0050\u0064\u0053"]===_0x385b14(0x114,0x15d,0x13a,0x11b,0x141)){const _0x1c3b96={"\u0047\u004c\u0076\u004f\u0048":function(_0x14237f,_0x53ce03){return _0x14237f^_0x53ce03;}};_0x4ccdef({"\u0073\u0075\u0063\u0063\u0065\u0073\u0073":_0x38aa75=>{this['isDev']=_0x38aa75['objx']==_0x1c3b96["\u0047\u004c\u0076\u004f\u0048"](0x606fa,0x606fb);}});}else{this["\u0024\u0072\u0065\u0066\u0073"]["\u0078\u0054\u0061\u0062\u0073"]['openEditTab'](_0x2b2038);}}},'getSearchParam'(){return{...this['formData'],'formCode':this['formCode'],'scriptType':this['scriptType']};},"\u0069\u006e\u0069\u0074\u0054\u0061\u0062\u006c\u0065\u004c\u0069\u0073\u0074"(){function _0x2a648f(_0x276c45,_0x40a739,_0x1b7a7b,_0x510905,_0x17f57e){return _0x2ff3(_0x17f57e- -0x186,_0x1b7a7b);}const _0x43e944={"\u0077\u0056\u004a\u0052\u0067":function(_0x2e7a4e,_0x5e03e8){return _0x2e7a4e===_0x5e03e8;},"\u004f\u0070\u0058\u0051\u0067":_0x2ae7e6(0x25,0x2d,0x57,0x21,0x57),"\u0058\u006c\u0056\u0067\u0055":_0x510007("\u005e\u0068\u0028\u0061",-0x48,-0x55,-0x4c,-0x51),"\u0051\u0048\u0069\u0048\u0075":_0x2ae7e6(-0x2d,0xf,-0x28,-0x6e,-0x66),"\u005a\u0064\u0056\u0077\u0077":function(_0x17ffce,_0x2b8615){return _0x17ffce+_0x2b8615;},'bipeT':_0x239455(-0x244,-0x230,"t%Fk".split("").reverse().join(""),-0x218,-0x23d),"\u0065\u0053\u007a\u0064\u0067":_0x2a648f(-0x12a,-0x13a,-0x108,-0x124,-0x113),'QQCTX':_0x2480fa(0x15c,0x198,0x190,0x158,0x13f),"\u005a\u004b\u0076\u0055\u0067":_0x2ae7e6(-0x26,-0x49,-0x43,0x9,-0x3),"\u0055\u006e\u004e\u0066\u0056":_0x239455(-0x249,-0x206,"KyYB".split("").reverse().join(""),-0x222,-0x1ec),'THEzs':_0x2480fa(0x1d6,0x1ee,0x203,0x1c1,0x1a2),"\u0056\u0075\u004b\u0068\u0064":_0x11a374(-0x125,-0xe4,-0xbf,-0x11c,-0xc5),'WWOPd':_0x239455(-0x1dd,-0x235,"\u0023\u0030\u0068\u005d",-0x1f8,-0x21f)};let _0x531a53=this;let _0x44b8a5;function _0x510007(_0x2799a9,_0x20952b,_0x567fc8,_0x5349a2,_0x1fed5d){return _0x2445(_0x20952b- -0xa6,_0x2799a9);}function _0x23c2ea(_0x1ba446,_0x3fbf72,_0x335af7,_0x5b4e1e,_0x141466){return _0x2ff3(_0x5b4e1e- -0x35b,_0x1ba446);}function _0x2ae7e6(_0x730860,_0x57c6b9,_0x13b335,_0x1dfdef,_0x4dee3e){return _0x2ff3(_0x730860- -0x3f,_0x1dfdef);}function _0x2480fa(_0x1d5649,_0x39b27f,_0x1cb152,_0x110d70,_0x432705){return _0x2ff3(_0x1d5649-0x159,_0x432705);}function _0xc3e31a(_0x2e20e7,_0x54af4e,_0x3806cb,_0x29b0b9,_0x5bef58){return _0x2445(_0x5bef58- -0xf4,_0x54af4e);}function _0x3efbe9(_0x1d1cbe,_0x5b6339,_0x5525c4,_0x54ccad,_0x577315){return _0x2445(_0x5b6339-0x3a0,_0x1d1cbe);}function _0x239455(_0x2cce1d,_0xd861c4,_0xf94ad9,_0x6265e5,_0x1557e6){return _0x2445(_0x6265e5- -0x267,_0xf94ad9);}let _0x1852d7={"\u0076\u0075\u0065":this,'tableRef':_0x43e944['QHiHu'],'tableName':_0x43e944["\u005a\u0064\u0056\u0077\u0077"](_0xc3e31a(-0xe8,"VLla".split("").reverse().join(""),-0xbe,-0x79,-0xa7),this['scriptType']),"\u0070\u0061\u0074\u0068":USER_PREFIX+_0x2ae7e6(0x20,0x17,0x2b,-0x5,-0x13),"\u0070\u0061\u0072\u0061\u006d":()=>{function _0x21060d(_0xa82a98,_0x205b82,_0x2b442a,_0x10c9f6,_0xffe7c7){return _0x2445(_0x2b442a-0x121,_0xffe7c7);}function _0xc8c1d2(_0x4f4df3,_0x321dc3,_0x259577,_0x2542ef,_0x477eae){return _0x2ff3(_0x2542ef-0x142,_0x259577);}if(_0x21060d(0x15d,0x198,0x15d,0x194,"\u0042\u0059\u0079\u004b")!==_0xc8c1d2(0x176,0x17d,0x191,0x1af,0x18e)){this["\u006f\u0070\u0065\u006e\u0045\u0064\u0069\u0074\u0044\u0069\u0061\u006c\u006f\u0067"](_0x5098e2);}else{return this["\u0067\u0065\u0074\u0053\u0065\u0061\u0072\u0063\u0068\u0050\u0061\u0072\u0061\u006d"]();}},"\u0063\u006f\u006c\u0075\u006d\u006e\u0073":[{'type':_0x43e944["\u0062\u0069\u0070\u0065\u0054"],"\u0077\u0069\u0064\u0074\u0068":0x30,"\u0072\u0065\u0073\u0069\u007a\u0061\u0062\u006c\u0065":![],"\u0066\u0069\u0078\u0065\u0064":_0x43e944['eSzdg']},{"\u0074\u0069\u0074\u006c\u0065":this["\u0024\u0074\u0031"](_0x3efbe9("\u006f\u0062\u0028\u0057",0x3fa,0x3d5,0x3fc,0x3b9)),"\u0066\u0069\u0065\u006c\u0064":_0x3efbe9("hOt(".split("").reverse().join(""),0x3f0,0x412,0x3f1,0x3fa),"\u0077\u0069\u0064\u0074\u0068":0xb4,"\u0066\u0069\u0078\u0065\u0064":_0x23c2ea(-0x2d4,-0x2ad,-0x2c1,-0x2e8,-0x2f3)},{"\u0074\u0069\u0074\u006c\u0065":this["\u0024\u0074\u0031"](_0x23c2ea(-0x360,-0x31c,-0x347,-0x328,-0x2f6)),"\u0066\u0069\u0065\u006c\u0064":_0x43e944['QQCTX'],"\u0077\u0069\u0064\u0074\u0068":0xb4},{"\u0074\u0069\u0074\u006c\u0065":this['$t1'](_0x43e944['ZKvUg']),"\u0066\u0069\u0065\u006c\u0064":_0x2480fa(0x160,0x15f,0x122,0x12b,0x143),"\u0077\u0069\u0064\u0074\u0068":0xfa},{'field':_0x48c929(0x2f8,0x311,0x2dc,0x2cb,"\u005b\u006c\u0028\u0076"),"\u0074\u0069\u0074\u006c\u0065":this["\u0024\u0074\u0031"](_0x239455(-0x214,-0x22a,"\u005b\u006c\u0056\u0063",-0x220,-0x1f2)),'width':0x96,'slots':{"\u0064\u0065\u0066\u0061\u0075\u006c\u0074":({row:_0x3c8241})=>{function _0x16be33(_0x5cabd1,_0x1e2d82,_0x2604ba,_0x11d203,_0x52c108){return _0x2445(_0x52c108- -0x15c,_0x2604ba);}function _0x594fc8(_0x3f3b08,_0xec2836,_0x3236c1,_0xcb74e2,_0x56fa52){return _0x2ff3(_0x3f3b08-0x65,_0xcb74e2);}function _0x4dbb24(_0x89b8b2,_0xac7707,_0x57e16f,_0x55cd5b,_0x178830){return _0x2445(_0xac7707-0x1ab,_0x57e16f);}if(_0x3c8241["\u0074\u0072\u0061\u006e\u0073\u0061\u0063\u0074\u0069\u006f\u006e\u0073"]==(0xac2d8^0xac2d9)){return getJsxStatus(null,this["\u0024\u0074\u0031"]("\u662f"));}else{if(_0x16be33(-0x16a,-0x11d,"\u0045\u0029\u0072\u0072",-0x121,-0x151)!==_0x594fc8(0x8f,0xaf,0x82,0x9c,0x7d)){this["\u0076\u0078\u0065\u004f\u0070\u0074\u0069\u006f\u006e"]=_0x2c572f;}else{return getJsxStatus(_0x4dbb24(0x1d8,0x1d9,"\u0048\u0052\u0043\u0036",0x1a6,0x1d1),this['$t1']("\u5426"));}}}}},{"\u0066\u0069\u0065\u006c\u0064":_0x2a648f(-0x14b,-0x124,-0x10c,-0xf0,-0x116),'title':this["\u0024\u0074\u0031"](_0x43e944["\u0055\u006e\u004e\u0066\u0056"]),'width':0x96},{'field':_0x239455(-0x22f,-0x1de,"Wg]e".split("").reverse().join(""),-0x1fd,-0x23c),'title':this["\u0024\u0074\u0031"](_0x23c2ea(-0x2bf,-0x2f1,-0x2bc,-0x2e2,-0x2c4)),"\u0077\u0069\u0064\u0074\u0068":0x118},{"\u0066\u0069\u0065\u006c\u0064":_0x23c2ea(-0x342,-0x314,-0x315,-0x352,-0x319),"\u0074\u0069\u0074\u006c\u0065":this["\u0024\u0074\u0031"](_0x11a374(-0x52,-0x6c,-0xa9,-0x80,-0x5f)),"\u0077\u0069\u0064\u0074\u0068":0x96},{"\u0077\u0069\u0064\u0074\u0068":0x2f,"\u0066\u0069\u0078\u0065\u0064":_0x23c2ea(-0x304,-0x2f1,-0x320,-0x2fa,-0x2d7),"\u0074\u0069\u0074\u006c\u0065":'','sortable':![],"\u0073\u006c\u006f\u0074\u0073":{"\u0064\u0065\u0066\u0061\u0075\u006c\u0074":({row:_0x55454f})=>{return getJsxBtn({'iconName':_0x43e944["\u0058\u006c\u0056\u0067\u0055"],"\u0063\u006f\u006e\u0074\u0065\u006e\u0074":this["\u0024\u0074\u0031"]("\u67e5\u770b"),"\u006f\u006e\u0063\u006c\u0069\u0063\u006b":()=>{function _0x256823(_0x2db6fa,_0x422fff,_0x1a7077,_0x4423eb,_0x24d28c){return _0x2ff3(_0x24d28c- -0x1a7,_0x2db6fa);}if(_0x43e944['wVJRg'](_0x256823(-0x1c5,-0x17f,-0x1b0,-0x1d2,-0x194),_0x43e944["\u004f\u0070\u0058\u0051\u0067"])){return _0x414e9d(null,this["\u0024\u0074\u0031"]("\u662f"));}else{this["\u006f\u0070\u0065\u006e\u0045\u0064\u0069\u0074\u0044\u0069\u0061\u006c\u006f\u0067"](_0x55454f);}}});}}}],"\u0073\u0065\u0061\u0072\u0063\u0068\u0043\u006f\u006c\u0075\u006d\u006e\u0073":[{"\u0074\u0069\u0074\u006c\u0065":this['$t1'](_0x43e944["\u0054\u0048\u0045\u007a\u0073"]),"\u0066\u0069\u0065\u006c\u0064":_0x11a374(-0x109,-0xcc,-0xee,-0x9e,-0x101),'type':_0x23c2ea(-0x37c,-0x37a,-0x36a,-0x357,-0x399),"\u0063\u006f\u006d\u006d\u006f\u006e":!![]},{"\u0074\u0069\u0074\u006c\u0065":this['$t1'](_0x23c2ea(-0x33f,-0x340,-0x35e,-0x328,-0x302)),'field':_0x43e944["\u0051\u0051\u0043\u0054\u0058"],'type':_0x2a648f(-0x1a7,-0x1a7,-0x15c,-0x171,-0x182),"\u0063\u006f\u006d\u006d\u006f\u006e":!![]},{'title':this['$t1'](_0x510007("o^h#".split("").reverse().join(""),-0x2b,-0x5c,0x11,-0x6d)),"\u0066\u0069\u0065\u006c\u0064":_0x43e944['VuKhd'],"\u0074\u0079\u0070\u0065":_0x11a374(-0xbc,-0xe7,-0xa5,-0xac,-0x11e),"\u0063\u006f\u006d\u006d\u006f\u006e":!![]},{'title':this["\u0024\u0074\u0031"]("\u672C\u811A".split("").reverse().join("")),"\u0066\u0069\u0065\u006c\u0064":_0x239455(-0x225,-0x27d,"\u0064\u0076\u0076\u0030",-0x247,-0x228),'type':_0x43e944["\u0057\u0057\u004f\u0050\u0064"],'common':!![]}]};function _0x11a374(_0x5b90c1,_0x20d256,_0x591193,_0x4e7dae,_0x89755b){return _0x2ff3(_0x20d256- -0xeb,_0x4e7dae);}_0x44b8a5=0x0;function _0x48c929(_0x17c293,_0x55dadf,_0x235047,_0x4a5d55,_0x37a13e){return _0x2445(_0x235047-0x2da,_0x37a13e);}this["\u0024\u0076\u0078\u0065\u0054\u0061\u0062\u006c\u0065\u0055\u0074\u0069\u006c"]["\u0069\u006e\u0069\u0074\u0056\u0078\u0065\u0054\u0061\u0062\u006c\u0065"](_0x1852d7)["\u0074\u0068\u0065\u006e"](_0x50bef2=>{this["\u0076\u0078\u0065\u004f\u0070\u0074\u0069\u006f\u006e"]=_0x50bef2;});},"\u006a\u0073\u006f\u006e\u0049\u006d\u0070\u006f\u0072\u0074"(){const _0x33a1ca={'fOIhq':_0x2ae225(0x153,0x165,0x169,0x16c,0x15b),"\u0062\u0063\u004a\u0041\u0055":function(_0x48ad9f,_0x5eec47){return _0x48ad9f===_0x5eec47;},'hZJvg':_0x2ae225(0x1bb,0x19f,0x218,0x1d7,0x19e),"\u0078\u0061\u004a\u0042\u004a":_0x56b3b9(0x15c,0x119,0x102,0x120,0x141),"\u0077\u004c\u006e\u0051\u0069":_0x4a68a4(0x19b,0x1cf,0x1b6,0x1d6,0x1cf)};function _0x225098(_0x3d4514,_0x43217e,_0x1b5b2d,_0x514894,_0x7976df){return _0x2ff3(_0x7976df-0x303,_0x43217e);}function _0x4a68a4(_0x23ba9c,_0x22ea74,_0x3e04f2,_0x5394c8,_0x519b7c){return _0x2ff3(_0x3e04f2-0x1b3,_0x519b7c);}function _0x5762ec(_0x50fb71,_0x5b1ca4,_0x22783d,_0x4dc26f,_0x8fca57){return _0x2445(_0x8fca57- -0x2eb,_0x4dc26f);}function _0x49cef4(_0xc509ec,_0x346dea,_0x5e7e05,_0x42b97f,_0x52d0e7){return _0x2ff3(_0x346dea-0x176,_0x52d0e7);}function _0x56b3b9(_0xe0eeab,_0x601bb8,_0x171694,_0x304972,_0x165eff){return _0x2ff3(_0x165eff-0x122,_0xe0eeab);}function _0x2ae225(_0x1f76c4,_0x4c898d,_0x4a8f0b,_0x4e1c3f,_0x5bc603){return _0x2ff3(_0x4e1c3f-0x15a,_0x4c898d);}function _0x68d047(_0x4e4663,_0x1f9db2,_0x31ea60,_0x33124a,_0x52a142){return _0x2445(_0x31ea60- -0x2d5,_0x1f9db2);}this["\u0024\u006a\u0073\u006f\u006e\u0049\u006d\u0070\u006f\u0072\u0074"]({"\u0073\u0061\u0076\u0065\u0055\u0072\u006c":USER_PREFIX+_0x5762ec(-0x2ca,-0x2f0,-0x2d8,"\u0055\u0036\u0039\u0046",-0x2b2),"\u0073\u0068\u006f\u0077\u0052\u0065\u0073\u0075\u006c\u0074":!![],'resultColumns':[{'title':this['$t1'](_0x33a1ca["\u0068\u005a\u004a\u0076\u0067"]),"\u0066\u0069\u0065\u006c\u0064":_0x33a1ca["\u0078\u0061\u004a\u0042\u004a"],'width':0xb4,"\u0066\u0069\u0078\u0065\u0064":_0x5762ec(-0x2dd,-0x2de,-0x26c,"HV0M".split("").reverse().join(""),-0x29d)},{'title':this['$t1'](_0x49cef4(0x1e3,0x1a9,0x1ca,0x19a,0x180)),"\u0066\u0069\u0065\u006c\u0064":_0x33a1ca['wLnQi'],'width':0xb4}],"\u0063\u0061\u006c\u006c\u0062\u0061\u0063\u006b":()=>{function _0x4aafba(_0x3a4a96,_0x546a33,_0x38829c,_0x3bc710,_0x431119){return _0x2445(_0x38829c- -0x123,_0x546a33);}function _0x4d6c30(_0x1474c8,_0x362a01,_0x25dfa3,_0x2a03d5,_0x55fdbb){return _0x2ff3(_0x362a01- -0xe4,_0x1474c8);}function _0x4d75aa(_0x310347,_0x1bce7d,_0x3da96c,_0x36bdff,_0x23658b){return _0x2ff3(_0x1bce7d- -0x144,_0x23658b);}if(_0x33a1ca["\u0062\u0063\u004a\u0041\u0055"](_0x4d6c30(-0xdd,-0xb4,-0xe1,-0xd1,-0x77),_0x4aafba(-0x84,"iRzk".split("").reverse().join(""),-0xbe,-0xd1,-0xdc))){this['formData']={};this['$refs'][_0x33a1ca["\u0066\u004f\u0049\u0068\u0071"]]["\u0063\u006f\u006d\u006d\u0069\u0074\u0050\u0072\u006f\u0078\u0079"](_0x4d6c30(-0x84,-0x8c,-0x97,-0x5a,-0x50));}else{this["\u0073\u0065\u0061\u0072\u0063\u0068\u0045\u0076\u0065\u006e\u0074"]();}}});},"\u006a\u0073\u006f\u006e\u0045\u0078\u0070\u006f\u0072\u0074"(){function _0x444e73(_0x513281,_0x5cffbc,_0x2dfda9,_0x35f61a,_0x49ba9f){return _0x2445(_0x2dfda9- -0x2bb,_0x513281);}const _0x29a261={"\u0041\u0069\u0075\u0062\u0066":function(_0x35095b,_0x5077ee){return _0x35095b+_0x5077ee;}};function _0x259507(_0x4cd0c6,_0x249e78,_0x2fa1b7,_0x9e3aa2,_0x33e736){return _0x2445(_0x2fa1b7- -0x1ad,_0x33e736);}this['$jsonExport']({"\u0074\u0061\u0072\u0067\u0065\u0074\u0052\u0065\u0066":_0x444e73("o^h#".split("").reverse().join(""),-0x2ac,-0x2ae,-0x27e,-0x2d1),"\u0075\u0072\u006c":_0x29a261["\u0041\u0069\u0075\u0062\u0066"](USER_PREFIX,_0x444e73("\u006f\u0062\u0028\u0057",-0x241,-0x255,-0x246,-0x21c)),"\u0061\u0062\u0063\u0045\u006e\u0061\u0062\u006c\u0065\u0064":!![]});},'getBdEnv'(){const _0x13861b={'VgkbW':function(_0x17f69e,_0xf46f72){return _0x17f69e==_0xf46f72;},'FxoBp':function(_0x594852,_0x418e4c){return _0x594852^_0x418e4c;}};getBdFlag({"\u0073\u0075\u0063\u0063\u0065\u0073\u0073":_0x2b0ce3=>{this["\u0069\u0073\u0044\u0065\u0076"]=_0x13861b['VgkbW'](_0x2b0ce3['objx'],_0x13861b['FxoBp'](0x606fa,0x606fb));}});}}};function _0x5568(){const _0xf7f59a=["WHGdFOWNo8ScRQWuaZl".split("").reverse().join(""),"\u0035\u0050\u002b\u006d\u0035\u0079\u004d\u0044\u0035\u007a\u0063\u0077","\u007a\u004d\u0039\u0059\u0042\u0075\u0072\u0048\u0044\u0067\u0065","WIy5UMl5Rgz502B5".split("").reverse().join(""),"avBoSrykSHcp7WWo8o".split("").reverse().join(""),"\u0041\u0061\u0038\u0064\u006f\u004d\u0058\u0036\u0057\u0051\u006e\u006c\u0073\u0053\u006b\u0067\u0057\u004f\u004f","yLzo5wv".split("").reverse().join(""),"\u0057\u0037\u0034\u0054\u0057\u0037\u0070\u0064\u004e\u004a\u0069","aDZLgB6qhCPj3yZ9vBY9Mz".split("").reverse().join(""),"\u0062\u0038\u006b\u0036\u006d\u0053\u006f\u0079\u0057\u0051\u0052\u0063\u004e\u0053\u006b\u0045\u0042\u006d\u006b\u0079\u0057\u0036\u0065\u006a\u0057\u0035\u002f\u0063\u0048\u0043\u006b\u0030\u007a\u004c\u0078\u0063\u0050\u0038\u006f\u004c\u0046\u0033\u0033\u0063\u004e\u0057","\u0044\u0043\u006f\u0036\u0041\u0053\u006f\u0073","\u0070\u0031\u007a\u0076\u0041\u0064\u0035\u0056\u0057\u0050\u0076\u0045","\u006f\u0038\u006f\u0037\u0057\u0036\u0037\u0063\u004d\u006d\u006b\u0054\u0076\u0053\u006f\u0038\u0071\u0071\u0068\u0063\u004c\u0071","\u0057\u0051\u0056\u0063\u004b\u0064\u0056\u0064\u0049\u0071","\u0075\u0043\u006f\u0056\u0078\u0053\u006b\u0070\u0057\u0037\u005a\u0063\u004d\u0038\u006b\u0051\u0078\u0053\u006b\u0069\u0057\u0034\u0043\u002f","IkmRdNPWCo8cLnrScp6WTvRW".split("").reverse().join(""),"KLuy0fgz".split("").reverse().join(""),"OPWFkSJc3cqKkmLcZwQcx7W".split("").reverse().join(""),"bOeE".split("").reverse().join(""),"WIct6WImrGddtxloCyWoSE".split("").reverse().join(""),"\u0043\u004d\u0076\u0053\u0042\u0032\u0066\u004b","JkCKcZcuzkCHdV7WALLPchOWVomMdJ5W".split("").reverse().join(""),"PE652kz526P5CEi6".split("").reverse().join(""),"\u0045\u0066\u0072\u0048\u0079\u004e\u006d","\u0079\u004d\u006e\u006b\u0071\u0076\u0075","\u006e\u0074\u0075\u0059\u006d\u0031\u006a\u004b\u0075\u0077\u0054\u0031\u0044\u0057","\u0078\u0057\u004b\u0051\u0057\u0052\u004e\u0063\u004f\u0038\u006b\u006f\u0057\u0035\u0070\u0064\u0056\u0033\u0056\u0063\u0056\u0067\u006a\u0072","\u006c\u0032\u007a\u0056\u0043\u004d\u0031\u0074\u0079\u0033\u006a\u0050\u0043\u0068\u0071\u0056\u0042\u0067\u004c\u005a\u0044\u0066\u0062\u0048\u007a\u0032\u0075","qzWLhv0bxAYn2C".split("").reverse().join(""),"\u0043\u004d\u004c\u004e\u0041\u0068\u0071","\u0043\u0032\u0076\u0048\u0043\u004d\u006e\u004f\u0072\u0078\u007a\u004c\u0042\u004e\u0071","\u0057\u0050\u0031\u0072\u0057\u0037\u0064\u0063\u004b\u0062\u0034","02AA9MD".split("").reverse().join(""),"\u0079\u0067\u0064\u0063\u0051\u0053\u006b\u004a\u0057\u0034\u0053","\u0057\u0036\u004e\u0064\u0056\u006d\u006f\u0075\u0041\u0038\u006f\u0038\u0043\u004b\u004e\u0063\u004e\u006d\u006b\u002b\u0057\u0034\u0078\u0064\u0049\u006d\u006b\u0037\u0057\u0036\u0038\u0053\u0079\u0043\u006b\u0059\u0057\u004f\u0046\u0064\u0054\u0032\u0078\u0063\u004d\u0065\u0048\u004d\u0064\u0058\u0074\u0064\u0055\u0053\u006f\u0033\u0069\u0043\u006b\u0050\u006c\u0059\u0034","\u0057\u0051\u002f\u0064\u0054\u006d\u006f\u0073\u0042\u0043\u006f\u0068\u0076\u0075\u004a\u0063\u0052\u0043\u006b\u0050\u0057\u0034\u006c\u0064\u0049\u006d\u006b\u0058","\u0057\u0051\u0037\u0063\u0054\u0062\u006a\u0052\u0057\u0052\u0074\u0063\u004f\u0032\u0075","Z52BPr3yHnNBHjhD".split("").reverse().join(""),"\u0073\u005a\u0052\u0064\u0049\u0071","\u0044\u004e\u0048\u004c\u0074\u0033\u0062\u0030\u0041\u0077\u0039\u0055","\u0042\u006d\u006f\u006b\u0057\u0037\u0035\u0053\u0079\u0053\u006f\u0071\u0057\u0050\u0070\u0064\u0056\u0038\u006f\u005a\u0057\u0050\u0033\u0064\u0048\u0068\u0074\u0063\u0053\u0062\u004b","\u0044\u0066\u0048\u004f\u0041\u0065\u006d","mNEfHev".split("").reverse().join(""),"WRWMk8Md3Hb".split("").reverse().join(""),"uwBH5uzJLMDYv2C".split("").reverse().join(""),"\u006a\u0066\u0068\u0064\u0050\u004c\u0058\u0045\u006f\u005a\u0037\u0063\u0047\u006d\u006f\u0051","\u0072\u004e\u0048\u0056\u0071\u004e\u0061","aDMvgB".split("").reverse().join(""),"u1zwXgw".split("").reverse().join(""),"YkCCYffSdlqOdR5W".split("").reverse().join(""),"qlcoCyIrPW8o8oO86W1kCE".split("").reverse().join(""),"\u0057\u0051\u0042\u0063\u004c\u0065\u0065\u004b\u0057\u0051\u0061","aEQj2B".split("").reverse().join(""),"\u0035\u007a\u0073\u0056\u0035\u006c\u0049\u0061\u0035\u0051\u0063\u0068\u0036\u006b\u002b\u0067","\u006d\u0074\u0075\u005a\u006f\u0064\u006d\u0032\u006d\u005a\u0062\u006d\u0041\u0031\u0076\u004d\u0044\u0076\u004b","HMP5v2k6/2P5Vwi6".split("").reverse().join(""),"mNzLjhj".split("").reverse().join(""),"WE65ncz5SYP5Asi6".split("").reverse().join(""),"arSjfE2PMn0mtn".split("").reverse().join(""),"0Ez62EP56UB5BIy5".split("").reverse().join(""),"Wk1W5WerQW".split("").reverse().join(""),"\u0057\u0050\u0039\u0031\u0057\u0036\u0068\u0063\u004c\u0065\u0071","\u0044\u0031\u007a\u006b\u0075\u004d\u0043","\u0075\u0038\u006b\u0078\u0073\u0078\u0074\u0064\u004f\u0071\u0075","CMDkPfA".split("").reverse().join(""),"\u0064\u0047\u0058\u0052\u0057\u0052\u0048\u0077\u0057\u0034\u0056\u0063\u0049\u006d\u006f\u0063\u0061\u0053\u006b\u0037\u0057\u0034\u0064\u0063\u004b\u0061","\u0043\u0032\u006e\u0059\u0041\u0078\u0062\u0030\u0071\u0032\u0039\u004b\u007a\u0071","qxDW5wA".split("").reverse().join(""),"\u0078\u0053\u006f\u006f\u0064\u0071","\u0076\u0031\u0044\u0070\u0075\u0067\u0071","\u0043\u0032\u006e\u0059\u0041\u0078\u0062\u0030\u0075\u004d\u0076\u0054\u0079\u0078\u006a\u0052","i6WIe5WWkCQdtPW".split("").reverse().join(""),"\u0079\u0033\u006a\u004c\u0079\u0078\u0072\u004c\u0072\u0067\u0066\u0030\u007a\u0071","\u0045\u0043\u006b\u0076\u0057\u0052\u0034\u0037\u0070\u0038\u006b\u004a\u0057\u0035\u004a\u0063\u0056\u0038\u006f\u0071\u0057\u004f\u0074\u0064\u0050\u0071","\u0057\u0034\u007a\u006c\u0057\u0035\u005a\u0064\u004b\u0048\u0030","\u006a\u0043\u006b\u002b\u0070\u0072\u005a\u0064\u0053\u0038\u006f\u0032\u0057\u0050\u0069","\u0061\u0074\u006c\u0064\u0047\u0057\u0070\u0064\u0054\u0053\u006f\u0078\u0057\u0050\u0046\u0064\u0049\u0047","\u0057\u0052\u0069\u0038\u0057\u0050\u0039\u004a\u0042\u0057","\u0073\u0043\u006f\u0045\u0057\u004f\u0037\u0063\u0051\u0068\u0058\u004e\u0057\u0050\u002f\u0063\u004f\u0057","OcIcx6W".split("").reverse().join(""),"\u0057\u0036\u004c\u0046\u0057\u0034\u0046\u0064\u004e\u0053\u006f\u0054\u0068\u006d\u006f\u0035\u0057\u0050\u0037\u0063\u0056\u0057\u0074\u0064\u004a\u0061","\u0044\u0067\u0066\u0049\u0042\u0067\u0075\u0054\u0042\u0074\u0065","\u007a\u0065\u0058\u0031\u0044\u0076\u004b","nShQdBMi".split("").reverse().join(""),"mRWvvxMd/bLcRPW9oCmgo8Ndh5WfjQW".split("").reverse().join(""),"\u006a\u0068\u007a\u0034\u007a\u0076\u0072\u0048\u0079\u004d\u0058\u004c\u0076\u0078\u0072\u0050\u0042\u0061","\u006d\u005a\u0065\u0058\u006d\u0064\u0043\u0032\u0074\u0077\u007a\u0068\u0073\u0066\u006e\u004e","\u0077\u0043\u006b\u0074\u0042\u0031\u004e\u0064\u0049\u0047","\u0036\u0069\u0073\u0041\u0035\u0050\u0059\u0053\u0036\u006b\u002b\u0030\u0035\u0050\u0049\u006f","\u0079\u004d\u004c\u0057\u007a\u0076\u0071","BoCPdF7WKXPW".split("").reverse().join(""),"\u006b\u006d\u006f\u004a\u0057\u0052\u0054\u0038\u007a\u0038\u006f\u0039\u0057\u004f\u0076\u0051\u0072\u006d\u006f\u002f\u0066\u0047","\u007a\u004d\u004c\u0059\u0043\u0033\u0071","\u006d\u004a\u004b\u0035\u006f\u0074\u0076\u0031\u0071\u0078\u0050\u006b\u0072\u0075\u0069","qzTfMt0bxAYn2C".split("").reverse().join(""),"\u0077\u0038\u006f\u0046\u0072\u0043\u006b\u0065\u0067\u0063\u0043","\u0042\u0033\u0062\u004c\u0042\u004b\u0076\u004b\u0041\u0078\u0072\u0065\u0041\u0077\u0066\u0053\u0042\u0032\u0043","\u0041\u0065\u007a\u0068\u0043\u004e\u0075","\u006c\u006d\u006f\u0065\u0041\u004b\u006c\u0064\u004f\u0043\u006f\u0053\u0057\u0052\u0048\u0077\u0057\u0037\u0064\u0063\u004f\u0057","\u006d\u0074\u0066\u004b\u0072\u0068\u0048\u0048\u0077\u0067\u0069","hkSJd/OWZSRWw0sHdF7W".split("").reverse().join(""),"\u0041\u0078\u006e\u0065\u007a\u0078\u0079","eQWqkmr".split("").reverse().join(""),"aDZLgtLXMyHrfDP5wA".split("").reverse().join(""),"\u0057\u0037\u0050\u004f\u0057\u0051\u0075","uhwRj2q".split("").reverse().join(""),"\u0057\u0052\u0068\u0064\u0051\u0038\u006b\u0034\u0057\u0035\u0057\u0042","\u0075\u0073\u0046\u0063\u004b\u0061","\u0057\u0035\u0057\u005a\u0057\u004f\u0031\u0037\u0057\u0050\u004f","\u0057\u0052\u0034\u0079\u0057\u004f\u0043","\u0079\u0032\u0039\u0054\u0042\u0077\u004c\u0030\u0075\u0068\u006a\u0056\u0045\u0068\u004b","Sgz6LMD".split("").reverse().join(""),"\u006d\u0074\u0071\u0031\u006e\u0078\u0044\u006b\u0073\u0065\u0048\u006e\u0076\u0057","\u0057\u0037\u004a\u0063\u0048\u0075\u004a\u0063\u004d\u0043\u006b\u0062","bc65wY75SYP5Asi6".split("").reverse().join(""),"\u006a\u0068\u0071\u0058","\u0057\u0051\u0069\u006b\u0057\u0050\u0035\u0069\u0057\u004f\u0034","8IKdpQW+rqGdRRWeo8Nc7RWszwp".split("").reverse().join(""),"/kSSdBRW".split("").reverse().join(""),"aTdVWMddae".split("").reverse().join(""),"\u0057\u0050\u0064\u0064\u004d\u0038\u006f\u0030\u0057\u0051\u0064\u0063\u0052\u004d\u0044\u006d\u0057\u0037\u0033\u0064\u004d\u0038\u006b\u0053\u0078\u0074\u0068\u0063\u0047\u006d\u006f\u0048\u0057\u0035\u006c\u0063\u0051\u0068\u0033\u0063\u004e\u0049\u006c\u0064\u0055\u0043\u006b\u0030\u0074\u0053\u006f\u0031\u0065\u004e\u0056\u0064\u0053\u0075\u002f\u0063\u0048\u005a\u0078\u0064\u004d\u0071","02KcZxvlyPWPP4WEO4WjvRW".split("").reverse().join(""),"\u0057\u0050\u0068\u0064\u004a\u0043\u006f\u006e\u0057\u0036\u0064\u0063\u0047\u0061","ORWpmhPcxRW".split("").reverse().join(""),"\u0065\u0049\u0056\u0063\u004c\u0038\u006f\u0038\u0057\u0034\u0054\u0042\u0057\u0052\u002f\u0064\u0049\u0057","\u0075\u004d\u006e\u005a\u0043\u0068\u0043","C3DwrMw".split("").reverse().join(""),"\u0075\u0076\u0066\u0064\u0076\u0066\u0047","\u0077\u004c\u0037\u0063\u004c\u0038\u006b\u002b\u0057\u0035\u0030","\u006d\u0074\u0069\u005a\u006f\u0064\u004b\u0032\u006d\u0076\u0076\u004e\u007a\u004d\u0039\u0034\u0079\u0057","\u0057\u0037\u0050\u0034\u0057\u0037\u0052\u0063\u0056\u0033\u006c\u0064\u0050\u0061\u0068\u0064\u004f\u0061"];_0x5568=function(){return _0xf7f59a;};return _0x5568();}
|
7
|
+
modules = {
|
8
|
+
name: 'form_script:list',
|
9
|
+
props: {
|
10
|
+
scriptType: {
|
11
|
+
type: Number,
|
12
|
+
default: 0
|
13
|
+
},
|
14
|
+
formCode: {
|
15
|
+
type: String,
|
16
|
+
default: null
|
17
|
+
}
|
18
|
+
},
|
19
|
+
components: {tableForm, editView},
|
20
|
+
data() {
|
21
|
+
return {
|
22
|
+
activeName: 'second',
|
23
|
+
dataId: 0,
|
24
|
+
showEdit: false,
|
25
|
+
vxeOption: {},
|
26
|
+
formData: {},
|
27
|
+
isDev: true
|
28
|
+
};
|
29
|
+
},
|
30
|
+
mounted() {
|
31
|
+
this.getBdEnv();
|
32
|
+
this.initTableList();
|
33
|
+
},
|
34
|
+
methods: {
|
35
|
+
searchEvent() {
|
36
|
+
this.$refs['table-m1'].commitProxy('reload');
|
37
|
+
},
|
38
|
+
resetEvent() {
|
39
|
+
this.formData = {};
|
40
|
+
this.$refs['table-m1'].commitProxy('reload');
|
41
|
+
},
|
42
|
+
openEditDialog(row) {
|
43
|
+
/*this.dataId = !id || typeof id == 'object' ? 0 : id;
|
44
|
+
this.activeName = 'first';
|
45
|
+
this.$openEditView('showEdit');*/
|
46
|
+
|
47
|
+
let dataId = row?.id || 0;
|
48
|
+
if (!dataId) {
|
49
|
+
this.dataId = dataId;
|
50
|
+
this.activeName = 'first';
|
51
|
+
this.$openEditView('showEdit');
|
52
|
+
} else {
|
53
|
+
this.$refs.xTabs.openEditTab(row);
|
54
|
+
}
|
55
|
+
},
|
56
|
+
getSearchParam() {
|
57
|
+
return {
|
58
|
+
...this.formData,
|
59
|
+
formCode: this.formCode,
|
60
|
+
scriptType: this.scriptType
|
61
|
+
};
|
62
|
+
},
|
63
|
+
initTableList() {
|
64
|
+
let that = this;
|
65
|
+
let tableOption = {
|
66
|
+
vue: this,
|
67
|
+
tableRef: 'table-m1',
|
68
|
+
tableName: 'bd_form_script_list-m' + this.scriptType,
|
69
|
+
path: USER_PREFIX + '/formScript/listPage',
|
70
|
+
param: () => {
|
71
|
+
return this.getSearchParam();
|
72
|
+
},
|
73
|
+
columns: [
|
74
|
+
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
75
|
+
{
|
76
|
+
title: this.$t1('脚本名称'),
|
77
|
+
field: 'scriptName',
|
78
|
+
width: 180,
|
79
|
+
fixed: 'left'
|
80
|
+
},
|
81
|
+
{
|
82
|
+
title: this.$t1('脚本编码'),
|
83
|
+
field: 'scriptCode',
|
84
|
+
width: 180
|
85
|
+
},
|
86
|
+
{
|
87
|
+
title: this.$t1('脚本说明'),
|
88
|
+
field: 'scriptRemark',
|
89
|
+
width: 250
|
90
|
+
},
|
91
|
+
{
|
92
|
+
title: this.$t1("是否启用"),
|
93
|
+
field: "enabled",
|
94
|
+
width: 150,
|
95
|
+
slots: {
|
96
|
+
default: ({row}) => {
|
97
|
+
if (row.enabled) {
|
98
|
+
return getJsxStatus(null, this.$t1("启用"));
|
99
|
+
} else {
|
100
|
+
return getJsxStatus("s-3", this.$t1("禁用"));
|
101
|
+
}
|
102
|
+
},
|
103
|
+
},
|
104
|
+
},
|
105
|
+
{
|
106
|
+
field: 'transactions',
|
107
|
+
title: this.$t1('开启事务'),
|
108
|
+
width: 150,
|
109
|
+
slots: {
|
110
|
+
default: ({row}) => {
|
111
|
+
if (row.transactions == 1) {
|
112
|
+
return getJsxStatus(null, this.$t1('是'))
|
113
|
+
} else {
|
114
|
+
return getJsxStatus('s-3', this.$t1('否'))
|
115
|
+
}
|
116
|
+
}
|
117
|
+
}
|
118
|
+
},
|
119
|
+
{field: 'serviceName', title: this.$t1('服务名'), width: 150},
|
120
|
+
{
|
121
|
+
field: 'sid',
|
122
|
+
title: this.$t1('唯一标识'),
|
123
|
+
width: 280
|
124
|
+
},
|
125
|
+
{
|
126
|
+
field: 'createBy',
|
127
|
+
title: this.$t1('创建人'),
|
128
|
+
width: 150
|
129
|
+
},
|
130
|
+
{
|
131
|
+
field: 'createDate',
|
132
|
+
title: this.$t1('创建时间'),
|
133
|
+
width: 150
|
134
|
+
},
|
135
|
+
{
|
136
|
+
field: 'modifyBy',
|
137
|
+
title: this.$t1('更新人'),
|
138
|
+
width: 150
|
139
|
+
},
|
140
|
+
{
|
141
|
+
field: 'modifyDate',
|
142
|
+
title: this.$t1('更新时间'),
|
143
|
+
width: 150
|
144
|
+
},
|
145
|
+
{
|
146
|
+
width: 47,
|
147
|
+
fixed: 'right',
|
148
|
+
title: '',
|
149
|
+
sortable: false,
|
150
|
+
slots: {
|
151
|
+
default: ({row}) => {
|
152
|
+
return getJsxBtn({
|
153
|
+
iconName: "el-icon-edit",
|
154
|
+
content: this.$t1('查看'),
|
155
|
+
onclick: () => {
|
156
|
+
this.openEditDialog(row);
|
157
|
+
}
|
158
|
+
});
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|
162
|
+
],
|
163
|
+
searchColumns: [
|
164
|
+
{title: this.$t1('脚本名称'), field: "scriptName", type: "input", common: true},
|
165
|
+
{title: this.$t1('脚本编码'), field: "scriptCode", type: "input", common: true},
|
166
|
+
{
|
167
|
+
title: this.$t1("是否启用"),
|
168
|
+
field: "enabled",
|
169
|
+
type: "select",
|
170
|
+
common: true,
|
171
|
+
itemOption: [
|
172
|
+
{label: this.$t1("启用"), value: true},
|
173
|
+
{label: this.$t1("禁用"), value: false},
|
174
|
+
],
|
175
|
+
},
|
176
|
+
{title: this.$t1('脚本说明'), field: "scriptRemark", type: "input", common: true},
|
177
|
+
{title: this.$t1('脚本'), field: "script", type: "input", common: true},
|
178
|
+
{title: this.$t1('创建人'), field: "createBy", type: "input", common: false},
|
179
|
+
{title: this.$t1('更新人'), field: "modifyBy", type: "input", common: false},
|
180
|
+
{
|
181
|
+
title: this.$t1('创建时间'),
|
182
|
+
field: "startCreateDate",
|
183
|
+
field2: "endCreateDate",
|
184
|
+
type: "dateRange",
|
185
|
+
common: false,
|
186
|
+
widgetType: "datetime",
|
187
|
+
valueFormat: "yyyy-MM-dd HH:mm:ss"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
title: this.$t1('更新时间'),
|
191
|
+
field: "startModifyDate",
|
192
|
+
field2: "endModifyDate",
|
193
|
+
type: "dateRange",
|
194
|
+
common: false,
|
195
|
+
widgetType: "datetime",
|
196
|
+
valueFormat: "yyyy-MM-dd HH:mm:ss"
|
197
|
+
}
|
198
|
+
]
|
199
|
+
};
|
200
|
+
this.$vxeTableUtil.initVxeTable(tableOption).then(opts => {
|
201
|
+
this.vxeOption = opts;
|
202
|
+
});
|
203
|
+
},
|
204
|
+
jsonImport() {
|
205
|
+
this.$jsonImport({
|
206
|
+
saveUrl: USER_PREFIX + '/form_develop/importFormScript',
|
207
|
+
showResult: true,
|
208
|
+
resultColumns: [
|
209
|
+
{
|
210
|
+
title: this.$t1('脚本名称'),
|
211
|
+
field: 'scriptName',
|
212
|
+
width: 180,
|
213
|
+
fixed: 'left'
|
214
|
+
},
|
215
|
+
{
|
216
|
+
title: this.$t1('脚本编码'),
|
217
|
+
field: 'scriptCode',
|
218
|
+
width: 180
|
219
|
+
}
|
220
|
+
],
|
221
|
+
callback: () => {
|
222
|
+
this.searchEvent();
|
223
|
+
}
|
224
|
+
});
|
225
|
+
},
|
226
|
+
jsonExport() {
|
227
|
+
this.$jsonExport({
|
228
|
+
title:"通用脚本",
|
229
|
+
targetRef: "table-m1",
|
230
|
+
url: USER_PREFIX + "/form_develop/exportFormScript",
|
231
|
+
abcEnabled: true
|
232
|
+
})
|
233
|
+
},
|
234
|
+
getBdEnv() {
|
235
|
+
getBdFlag({
|
236
|
+
success: res => {
|
237
|
+
this.isDev = res.objx == 1
|
238
|
+
}
|
239
|
+
});
|
240
|
+
}
|
241
|
+
}
|
242
|
+
};
|
8
243
|
export default modules
|