cloud-web-corejs 1.0.54-dev.35 → 1.0.54-dev.350
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/mixins.js +1 -1
- package/src/components/VabUpload/propertiesDialog.vue +1 -1
- package/src/components/VabUpload/view.vue +218 -120
- 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 +833 -362
- 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/wfFlowEleScriptDialog.js +131 -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 +2117 -1
- package/src/components/wf/wfFlowEleScriptDialog.vue +89 -0
- 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 +1649 -3
- package/src/components/xform/form-designer/form-widget/container-widget/containerMixin.js +3 -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 +1331 -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 +1615 -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 +10 -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/oplog-widget.vue +185 -0
- 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 +31 -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/tableexportbuttonwidget.vue +99 -0
- 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/form-widget/field-widget/vabUpload2-widget.vue +725 -0
- package/src/components/xform/form-designer/indexMixin.js +825 -2
- 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 +376 -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/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 +1196 -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 +32 -9
- 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 +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/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/field-vabUpload2/field-vabUpload2-editor.vue +62 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +52 -5
- 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/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/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 +30 -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 +19 -18
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +1576 -874
- package/src/components/xform/form-render/container-item/containerItemMixin.js +359 -11
- package/src/components/xform/form-render/container-item/data-table-item.vue +89 -42
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2728 -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 +20 -3
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/mixins/scriptHttp.js +175 -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 -532
- 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 +359 -1
- package/src/utils/vab.js +1113 -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 +193 -0
- package/src/views/bd/setting/bd_company_env/list.vue +175 -0
- package/src/views/bd/setting/config_manage/list.vue +66 -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 +423 -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 +689 -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 +140 -75
- package/src/views/bd/setting/form_template/{list2.vue → wf_list.vue} +25 -35
- 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 +122 -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 +358 -0
- package/src/views/bd/setting/menu_kind/list.vue +4 -0
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +300 -7
- 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 +311 -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 +440 -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 +39 -18
- 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 +116 -83
- package/src/views/user/position/list.vue +118 -86
- 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 +9 -0
- 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 +647 -563
- package/src/views/user/wf/wfReport/index.vue +498 -0
- package/src/views/user/wf/wf_auto_submit_data/list.vue +2 -0
- package/src/views/user/wf/wf_manage/list.vue +371 -249
- 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
- package/src/views/user/wf/wf_transfer_setting/edit.vue +229 -0
- package/src/views/user/wf/wf_transfer_setting/list.vue +308 -0
- package/src/views/bd/setting/form_template/mixins/list2.js +0 -12
@@ -1,87 +1,84 @@
|
|
1
1
|
<template>
|
2
2
|
<el-dialog
|
3
|
-
|
4
|
-
:
|
3
|
+
:title="'设置组织流程单据类型('+formTemplate.formName+')'"
|
4
|
+
:append-to-body="true"
|
5
|
+
:modal-append-to-body="true"
|
6
|
+
:close-on-click-modal="false"
|
5
7
|
:visible.sync="dialogVisible"
|
6
|
-
:show-close="!0"
|
7
|
-
:append-to-body="false"
|
8
8
|
:modal="false"
|
9
|
-
|
10
|
-
|
11
|
-
:destroy-on-close="!0"
|
12
|
-
width="1220px"
|
13
|
-
top="5vh"
|
14
|
-
v-dialog-drag
|
9
|
+
custom-class="dialog-style list-dialog dialog-checkbox pd_0"
|
10
|
+
width="1200px"
|
15
11
|
@close="closeDialog"
|
12
|
+
v-el-drag-dialog
|
13
|
+
v-el-dialog-center
|
16
14
|
>
|
17
15
|
<div class="cont">
|
18
|
-
<
|
19
|
-
<el-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
<
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
</el-table>
|
63
|
-
</el-form>
|
64
|
-
</div>
|
65
|
-
<div class="dialog-footer" slot="footer">
|
66
|
-
<el-button @click="closeDialog" class="button-sty" icon="el-icon-close">
|
67
|
-
{{ i18nt('designer.hint.cancel') }}
|
68
|
-
</el-button>
|
69
|
-
<el-button type="primary" @click="saveData" class="button-sty" icon="el-icon-check">
|
70
|
-
{{ i18nt('designer.hint.confirm') }}
|
71
|
-
</el-button>
|
16
|
+
<div id="containt">
|
17
|
+
<el-form ref="editForm" :model="formData">
|
18
|
+
<div class="grid-height" style="height: 500px">
|
19
|
+
<vxe-grid
|
20
|
+
class="is-pointer"
|
21
|
+
ref="table-m1"
|
22
|
+
:data="formData.wfObjConfigDTOs"
|
23
|
+
v-bind="vxeOption"
|
24
|
+
@resizable-change="$vxeTableUtil.onColumnWitchChange"
|
25
|
+
@custom="$vxeTableUtil.customHandle"
|
26
|
+
>
|
27
|
+
<template #form>
|
28
|
+
<div class="clearfix screen-btns">
|
29
|
+
<div class="fl">
|
30
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus"
|
31
|
+
@click="openCompanyDialog">
|
32
|
+
新增
|
33
|
+
</vxe-button>
|
34
|
+
<span class="button-sty tips">{{ $t1('选择表单所在的组织,填写组织对应的流程单据类型数据。') }}</span>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
</template>
|
38
|
+
<template #objTypeName="{row,rowIndex}">
|
39
|
+
<el-form-item :prop="'wfObjConfigDTOs.'+rowIndex+'.objTypeName'"
|
40
|
+
:rules="[{ required: true, trigger: 'blur' }]">
|
41
|
+
<el-input v-model="row.objTypeName" clearable></el-input>
|
42
|
+
</el-form-item>
|
43
|
+
</template>
|
44
|
+
<template #operate="{row}">
|
45
|
+
<a
|
46
|
+
href="javascript:void(0);"
|
47
|
+
class="a-link"
|
48
|
+
@click="openEditDialog(row.id)"
|
49
|
+
>
|
50
|
+
<el-tooltip :enterable="false" effect="dark" :content="$t2('查看','common.view')" placement="top"
|
51
|
+
popper-class="tooltip-skin">
|
52
|
+
<i class="el-icon-edit"/>
|
53
|
+
</el-tooltip>
|
54
|
+
</a>
|
55
|
+
</template>
|
56
|
+
</vxe-grid>
|
57
|
+
</div>
|
58
|
+
</el-form>
|
59
|
+
</div>
|
72
60
|
</div>
|
61
|
+
<span slot="footer" class="dialog-footer">
|
62
|
+
<el-button type="primary" plain class="button-sty" @click="closeDialog">
|
63
|
+
<i class="el-icon-close el-icon"></i>
|
64
|
+
取 消
|
65
|
+
</el-button>
|
66
|
+
<el-button type="primary" @click="saveData" class="button-sty">
|
67
|
+
<i class="el-icon-check el-icon"></i>
|
68
|
+
确 定
|
69
|
+
</el-button>
|
70
|
+
</span>
|
73
71
|
<companyInfoDialog v-if="showCompanyInfoDialog" :visiable.sync="showCompanyInfoDialog"
|
74
|
-
@confirm="confirmCompanyDialog" multi="
|
72
|
+
@confirm="confirmCompanyDialog" :multi="true" :allCompany="true"/>
|
75
73
|
</el-dialog>
|
76
74
|
</template>
|
77
75
|
<script>
|
78
|
-
import i18n from '../../../../components/xform/utils/i18n';
|
79
76
|
import companyInfoDialog from "@base/views/user/company_info/dialog.vue";
|
77
|
+
import fileObjNotifyEdit from "@base/components/fileLibrary/fileObjNotifyEdit.vue";
|
80
78
|
|
81
79
|
export default {
|
82
|
-
components: {companyInfoDialog},
|
80
|
+
components: {fileObjNotifyEdit, companyInfoDialog},
|
83
81
|
props: ['formTemplate'],
|
84
|
-
mixins: [i18n],
|
85
82
|
data() {
|
86
83
|
return {
|
87
84
|
dialogVisible: true,
|
@@ -90,7 +87,8 @@ export default {
|
|
90
87
|
wfObjConfigDTOs: []
|
91
88
|
},
|
92
89
|
operateIndex: 0,
|
93
|
-
showCompanyInfoDialog: false
|
90
|
+
showCompanyInfoDialog: false,
|
91
|
+
vxeOption: {}
|
94
92
|
}
|
95
93
|
},
|
96
94
|
created() {
|
@@ -99,6 +97,7 @@ export default {
|
|
99
97
|
mounted() {
|
100
98
|
this.formData.objTypeCode = this.formTemplate.objTypeCode;
|
101
99
|
this.getListByObjTypeCode();
|
100
|
+
this.initTableList()
|
102
101
|
},
|
103
102
|
methods: {
|
104
103
|
getListByObjTypeCode(callback) {
|
@@ -166,19 +165,85 @@ export default {
|
|
166
165
|
if (rows.length) {
|
167
166
|
let row = rows[0];
|
168
167
|
let formTemplate = this.formTemplate;
|
169
|
-
|
170
|
-
|
168
|
+
let companyCodes = this.formData.wfObjConfigDTOs.map(item => item.companyCode)
|
169
|
+
let items = rows.filter(item => !companyCodes.includes(item.companyCode)).map(item => {
|
170
|
+
return {
|
171
171
|
objTypeCode: formTemplate.objTypeCode,
|
172
|
-
objTypeName: formTemplate.
|
172
|
+
objTypeName: formTemplate.objTypeName,
|
173
173
|
serviceId: formTemplate.serviceName,
|
174
174
|
url: "form",
|
175
175
|
companyCode: row.companyCode,
|
176
176
|
companyName: row.companyName
|
177
177
|
}
|
178
|
-
|
179
|
-
|
178
|
+
})
|
179
|
+
this.formData.wfObjConfigDTOs.push(...items);
|
180
180
|
}
|
181
|
-
}
|
181
|
+
},
|
182
|
+
initTableList() {
|
183
|
+
let that = this;
|
184
|
+
let tableOption = {
|
185
|
+
vue: this,
|
186
|
+
tableRef: 'table-m1',
|
187
|
+
tableName: 'user_form_template-wfObj-list-m1',
|
188
|
+
config: {
|
189
|
+
height: "auto"
|
190
|
+
},
|
191
|
+
columns: [
|
192
|
+
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
193
|
+
{
|
194
|
+
title: this.$t1('单据类型名称'),
|
195
|
+
field: 'objTypeName',
|
196
|
+
width: 250,
|
197
|
+
slots: {
|
198
|
+
default: "objTypeName"
|
199
|
+
}
|
200
|
+
},
|
201
|
+
{
|
202
|
+
title: this.$t1('组织名称'),
|
203
|
+
field: 'companyName',
|
204
|
+
width: 200,
|
205
|
+
},
|
206
|
+
{
|
207
|
+
title: this.$t1('单据类型编码'),
|
208
|
+
field: 'objTypeCode',
|
209
|
+
width: 200
|
210
|
+
},
|
211
|
+
{
|
212
|
+
title: this.$t1('服务名'),
|
213
|
+
field: 'serviceId',
|
214
|
+
width: 150
|
215
|
+
},
|
216
|
+
{
|
217
|
+
width: 100,
|
218
|
+
fixed: 'right',
|
219
|
+
title: '',
|
220
|
+
sortable: false,
|
221
|
+
slots: {
|
222
|
+
default: ({row, rowIndex, $table}) => {
|
223
|
+
return [
|
224
|
+
<a
|
225
|
+
href="javascript:void(0);"
|
226
|
+
class="a-link"
|
227
|
+
onClick={() => {
|
228
|
+
this.formData.wfObjConfigDTOs.splice(rowIndex, 1)
|
229
|
+
}}
|
230
|
+
>
|
231
|
+
<el-tooltip enterable={false} effect="dark" content="删除" placement="top"
|
232
|
+
popper-class="tooltip-skin">
|
233
|
+
<i class="el-icon-delete"/>
|
234
|
+
</el-tooltip>
|
235
|
+
</a>
|
236
|
+
];
|
237
|
+
}
|
238
|
+
}
|
239
|
+
}
|
240
|
+
]
|
241
|
+
};
|
242
|
+
this.$vxeTableUtil.initVxeTable(tableOption).then(opts => {
|
243
|
+
this.vxeOption = opts;
|
244
|
+
});
|
245
|
+
// this.initData();
|
246
|
+
},
|
182
247
|
}
|
183
248
|
}
|
184
249
|
</script>
|
@@ -17,7 +17,9 @@
|
|
17
17
|
<template #form>
|
18
18
|
<tableForm :formData.sync="formData" @searchEvent="searchEvent" @resetEvent="resetEvent">
|
19
19
|
<template #buttonLeft>
|
20
|
-
|
20
|
+
<vxe-button icon="el-icon-setting" class="button-sty" @click="openBatchWfObjConfigDialog" type="text" status="primary"
|
21
|
+
plain>{{ $t1('批量设置组织流程单据类型') }}
|
22
|
+
</vxe-button>
|
21
23
|
</template>
|
22
24
|
<template #buttonRight>
|
23
25
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
@@ -27,20 +29,21 @@
|
|
27
29
|
{{ $t1('搜索') }}
|
28
30
|
</vxe-button>
|
29
31
|
</template>
|
30
|
-
<template #
|
31
|
-
<vxe-form-item :title="$t1('
|
32
|
+
<template #menuKindName>
|
33
|
+
<vxe-form-item :title="$t1('表单分类') + ':'" field="menuKindName">
|
32
34
|
<template v-slot>
|
33
35
|
<el-input
|
34
36
|
class="search-input"
|
35
37
|
max="200"
|
36
|
-
|
38
|
+
v-model="formData.menuKindName"
|
37
39
|
@clear="
|
38
|
-
|
39
|
-
|
40
|
+
formData.menuKindName = null;
|
41
|
+
formData.menuKindCode = null;
|
42
|
+
"
|
40
43
|
v-el-readonly
|
41
44
|
clearable
|
42
45
|
>
|
43
|
-
<i slot="suffix" class="el-input__icon el-icon-search" @click="
|
46
|
+
<i slot="suffix" class="el-input__icon el-icon-search" @click="showMenuKindDialog=true"></i>
|
44
47
|
</el-input>
|
45
48
|
</template>
|
46
49
|
</vxe-form-item>
|
@@ -63,7 +66,8 @@
|
|
63
66
|
:closable="true">
|
64
67
|
<editView v-if="tab.showContent" :_dataId="tab.dataId" :currentFormType="currentFormType"
|
65
68
|
:parent-target="_self"
|
66
|
-
@reload="reloadTabContent" @openDesignDialog="openDesingerDialogByChild"
|
69
|
+
@reload="reloadTabContent" @openDesignDialog="openDesingerDialogByChild"
|
70
|
+
:readonly="true"></editView>
|
67
71
|
</el-tab-pane>
|
68
72
|
</template>
|
69
73
|
</x-tabs>
|
@@ -94,44 +98,30 @@
|
|
94
98
|
</el-drawer>
|
95
99
|
<wfObjConfigDialog v-if="showWfObjConfigDialog" :visiable.sync="showWfObjConfigDialog"
|
96
100
|
@confirm="confirmWfObjConfigDialog" :formTemplate="formTemplate"/>
|
101
|
+
<MenuKindDialog v-if="showMenuKindDialog"
|
102
|
+
:visiable.sync="showMenuKindDialog"
|
103
|
+
@confirm="confirmInsertMenuKind"
|
104
|
+
:param="{ taType: 0 }"
|
105
|
+
:multi="false"
|
106
|
+
/>
|
97
107
|
|
108
|
+
<batchWfObjConfigDialog v-if="showBatchWfObjConfigDialog" :visiable.sync="showBatchWfObjConfigDialog"
|
109
|
+
:formTemplates="formTemplates" @confirm="confirmBatchWfObjConfigDialog"></batchWfObjConfigDialog>
|
98
110
|
</div>
|
99
111
|
</template>
|
100
112
|
|
101
113
|
<script>
|
102
|
-
import mixin from "./mixins/
|
114
|
+
import mixin from "./mixins/wf_list";
|
103
115
|
import wfObjConfigDialog from "./wfObjConfigDialog.vue";
|
116
|
+
import MenuKindDialog from "@base/views/bd/setting/menu_kind/dialog.vue";
|
117
|
+
import batchWfObjConfigDialog from "./batchWfObjConfigDialog.vue";
|
104
118
|
|
105
119
|
export default {
|
106
|
-
name: '
|
107
|
-
components: {wfObjConfigDialog},
|
120
|
+
name: 'form_template:wf_list',
|
121
|
+
components: {MenuKindDialog, wfObjConfigDialog,batchWfObjConfigDialog},
|
108
122
|
mixins: [mixin]
|
109
123
|
}
|
110
124
|
</script>
|
111
125
|
<style scoped lang="scss">
|
112
|
-
::v-deep .tab-boxOnly > .el-tabs__header {
|
113
|
-
position: absolute;
|
114
|
-
right: 130px;
|
115
|
-
top: 0;
|
116
|
-
}
|
117
|
-
|
118
|
-
::v-deep .tab-boxOnly > .el-tabs__content .el-tab-pane .el-tab-pane {
|
119
|
-
.detail-wrap .d-cont {
|
120
|
-
height: calc(100vh - 158px) !important
|
121
|
-
}
|
122
126
|
|
123
|
-
.grid-height {
|
124
|
-
height: calc(100vh - 126px) !important
|
125
|
-
}
|
126
|
-
}
|
127
|
-
|
128
|
-
::v-deep .designer-drawer.is-fullscreen .tab-boxOnly > .el-tabs__content .el-tab-pane .el-tab-pane {
|
129
|
-
.detail-wrap .d-cont {
|
130
|
-
height: calc(100vh - 116px) !important
|
131
|
-
}
|
132
|
-
|
133
|
-
.grid-height {
|
134
|
-
height: calc(100vh - 84px) !important
|
135
|
-
}
|
136
|
-
}
|
137
127
|
</style>
|
@@ -0,0 +1,146 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="detail-wrap">
|
3
|
+
<el-form ref="editForm" :model="logicParam">
|
4
|
+
<div class="d-header clearfix">
|
5
|
+
<div class="fl">
|
6
|
+
<i class="el-icon-info" />
|
7
|
+
{{ dataId ? $t1("查看逻辑参数") : $t1("新增逻辑参数") }}
|
8
|
+
</div>
|
9
|
+
<div class="fr">
|
10
|
+
<el-button
|
11
|
+
type="primary"
|
12
|
+
plain
|
13
|
+
class="button-sty"
|
14
|
+
@click="$baseReload()"
|
15
|
+
icon="el-icon-refresh-right"
|
16
|
+
>
|
17
|
+
{{ $t1("重置") }}
|
18
|
+
</el-button>
|
19
|
+
<el-button
|
20
|
+
type="primary"
|
21
|
+
class="button-sty"
|
22
|
+
icon="el-icon-check"
|
23
|
+
@click="saveData"
|
24
|
+
>{{ $t1("保存") }}
|
25
|
+
</el-button>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
<div class="d-cont">
|
29
|
+
<div class="d-item">
|
30
|
+
<div class="title first">
|
31
|
+
<b>{{ $t1("基本信息") }}</b>
|
32
|
+
</div>
|
33
|
+
<table class="table-detail">
|
34
|
+
<tbody>
|
35
|
+
<tr>
|
36
|
+
<th>
|
37
|
+
<em class="f-red">*</em>
|
38
|
+
{{ $t1("参数编码") }}
|
39
|
+
</th>
|
40
|
+
<td colspan="5">
|
41
|
+
<el-form-item
|
42
|
+
prop="paramCode"
|
43
|
+
:rules="[{ required: true, trigger: 'blur' }]"
|
44
|
+
>
|
45
|
+
<el-input
|
46
|
+
type="text"
|
47
|
+
autocomplete="off"
|
48
|
+
v-model="logicParam.paramCode"
|
49
|
+
clearable
|
50
|
+
/>
|
51
|
+
</el-form-item>
|
52
|
+
</td>
|
53
|
+
</tr>
|
54
|
+
<tr>
|
55
|
+
<th>
|
56
|
+
<em class="f-red">*</em>
|
57
|
+
{{ $t1("组织编码") }}
|
58
|
+
</th>
|
59
|
+
<td colspan="5">
|
60
|
+
<el-form-item
|
61
|
+
prop="paramCompanyCode"
|
62
|
+
:rules="[{ required: true, trigger: 'blur' }]"
|
63
|
+
>
|
64
|
+
<el-input
|
65
|
+
type="text"
|
66
|
+
autocomplete="off"
|
67
|
+
v-model="logicParam.paramCompanyCode"
|
68
|
+
clearable
|
69
|
+
/>
|
70
|
+
</el-form-item>
|
71
|
+
</td>
|
72
|
+
<td colspan="2">
|
73
|
+
<span class="tips_1">{{ $t1('注:多个用逗号","隔开') }}</span>
|
74
|
+
</td>
|
75
|
+
</tr>
|
76
|
+
<tr>
|
77
|
+
<th>
|
78
|
+
{{ $t1("参数值") }}
|
79
|
+
</th>
|
80
|
+
<td colspan="5">
|
81
|
+
<el-form-item
|
82
|
+
prop="paramValue"
|
83
|
+
:rules="[{ required: false, trigger: 'blur' }]"
|
84
|
+
>
|
85
|
+
<el-input
|
86
|
+
type="textarea"
|
87
|
+
:rows="2"
|
88
|
+
:placeholder="$t1('请输入内容')"
|
89
|
+
size="small"
|
90
|
+
v-model="logicParam.paramValue"
|
91
|
+
clearable
|
92
|
+
></el-input>
|
93
|
+
</el-form-item>
|
94
|
+
</td>
|
95
|
+
</tr>
|
96
|
+
<tr>
|
97
|
+
<th>{{ $t1("参数备注") }}</th>
|
98
|
+
<td colspan="5">
|
99
|
+
<el-input
|
100
|
+
type="textarea"
|
101
|
+
:rows="2"
|
102
|
+
:placeholder="$t1('请输入内容')"
|
103
|
+
size="small"
|
104
|
+
v-model="logicParam.remark"
|
105
|
+
clearable
|
106
|
+
></el-input>
|
107
|
+
</td>
|
108
|
+
</tr>
|
109
|
+
<tr>
|
110
|
+
<th>{{ $t1("是否启用") }}</th>
|
111
|
+
<td>
|
112
|
+
<el-form-item
|
113
|
+
prop="enabled"
|
114
|
+
:rules="[{ required: false, trigger: 'blur' }]"
|
115
|
+
>
|
116
|
+
<el-radio-group v-model="logicParam.enabled">
|
117
|
+
<el-radio :label="true">{{ $t1("启用") }}</el-radio>
|
118
|
+
<el-radio :label="false">{{ $t1("禁用") }}</el-radio>
|
119
|
+
</el-radio-group>
|
120
|
+
</el-form-item>
|
121
|
+
</td>
|
122
|
+
</tr>
|
123
|
+
<tr>
|
124
|
+
<th>{{ $t1("创建人") }}</th>
|
125
|
+
<td>{{ logicParam.createBy }}</td>
|
126
|
+
<th>{{ $t1("创建时间") }}</th>
|
127
|
+
<td>{{ logicParam.createDate }}</td>
|
128
|
+
<th>{{ $t1("更新人") }}</th>
|
129
|
+
<td>{{ logicParam.modifyBy }}</td>
|
130
|
+
<th>{{ $t1("更新时间") }}</th>
|
131
|
+
<td>{{ logicParam.modifyDate }}</td>
|
132
|
+
</tr>
|
133
|
+
</tbody>
|
134
|
+
</table>
|
135
|
+
</div>
|
136
|
+
</div>
|
137
|
+
</el-form>
|
138
|
+
</div>
|
139
|
+
</template>
|
140
|
+
|
141
|
+
<script>
|
142
|
+
import editMixin from "./mixins/edit.js";
|
143
|
+
export default {
|
144
|
+
mixins: [editMixin],
|
145
|
+
};
|
146
|
+
</script>
|
@@ -0,0 +1,106 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="detail-wrap">
|
3
|
+
<el-form ref="editForm" :model="logicParam">
|
4
|
+
<div class="d-header clearfix">
|
5
|
+
<div class="fl">
|
6
|
+
<i class="el-icon-info" />
|
7
|
+
{{ dataId ? $t1("查看操作日志编码") : $t1("新增操作日志编码") }}
|
8
|
+
</div>
|
9
|
+
<div class="fr">
|
10
|
+
<el-button
|
11
|
+
type="primary"
|
12
|
+
plain
|
13
|
+
class="button-sty"
|
14
|
+
@click="$baseReload()"
|
15
|
+
icon="el-icon-refresh-right"
|
16
|
+
>
|
17
|
+
{{ $t1("重置") }}
|
18
|
+
</el-button>
|
19
|
+
<el-button
|
20
|
+
type="primary"
|
21
|
+
class="button-sty"
|
22
|
+
icon="el-icon-check"
|
23
|
+
@click="saveData"
|
24
|
+
>{{ $t1("保存") }}
|
25
|
+
</el-button>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
<div class="d-cont">
|
29
|
+
<div class="d-item">
|
30
|
+
<div class="title first">
|
31
|
+
<b>{{ $t1("基本信息") }}</b>
|
32
|
+
</div>
|
33
|
+
<table class="table-detail">
|
34
|
+
<tbody>
|
35
|
+
<tr>
|
36
|
+
<th>
|
37
|
+
<em class="f-red">*</em>
|
38
|
+
{{ $t1("参数值") }}
|
39
|
+
</th>
|
40
|
+
<td colspan="5">
|
41
|
+
<el-form-item
|
42
|
+
prop="paramValue"
|
43
|
+
:rules="[{ required: true, trigger: 'blur' }]"
|
44
|
+
>
|
45
|
+
<el-input
|
46
|
+
type="textarea"
|
47
|
+
:rows="2"
|
48
|
+
:placeholder="$t1('请输入内容')"
|
49
|
+
size="small"
|
50
|
+
v-model="logicParam.paramValue"
|
51
|
+
clearable
|
52
|
+
></el-input>
|
53
|
+
</el-form-item>
|
54
|
+
</td>
|
55
|
+
</tr>
|
56
|
+
<tr>
|
57
|
+
<th>{{ $t1("参数备注") }}</th>
|
58
|
+
<td colspan="5">
|
59
|
+
<el-input
|
60
|
+
type="textarea"
|
61
|
+
:rows="2"
|
62
|
+
:placeholder="$t1('请输入内容')"
|
63
|
+
size="small"
|
64
|
+
v-model="logicParam.remark"
|
65
|
+
clearable
|
66
|
+
></el-input>
|
67
|
+
</td>
|
68
|
+
</tr>
|
69
|
+
<tr>
|
70
|
+
<th>{{ $t1("是否启用") }}</th>
|
71
|
+
<td>
|
72
|
+
<el-form-item
|
73
|
+
prop="enabled"
|
74
|
+
:rules="[{ required: false, trigger: 'blur' }]"
|
75
|
+
>
|
76
|
+
<el-radio-group v-model="logicParam.enabled">
|
77
|
+
<el-radio :label="true">{{ $t1("启用") }}</el-radio>
|
78
|
+
<el-radio :label="false">{{ $t1("禁用") }}</el-radio>
|
79
|
+
</el-radio-group>
|
80
|
+
</el-form-item>
|
81
|
+
</td>
|
82
|
+
</tr>
|
83
|
+
<tr>
|
84
|
+
<th>{{ $t1("创建人") }}</th>
|
85
|
+
<td>{{ logicParam.createBy }}</td>
|
86
|
+
<th>{{ $t1("创建时间") }}</th>
|
87
|
+
<td>{{ logicParam.createDate }}</td>
|
88
|
+
<th>{{ $t1("更新人") }}</th>
|
89
|
+
<td>{{ logicParam.modifyBy }}</td>
|
90
|
+
<th>{{ $t1("更新时间") }}</th>
|
91
|
+
<td>{{ logicParam.modifyDate }}</td>
|
92
|
+
</tr>
|
93
|
+
</tbody>
|
94
|
+
</table>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
</el-form>
|
98
|
+
</div>
|
99
|
+
</template>
|
100
|
+
|
101
|
+
<script>
|
102
|
+
import editMixin from "./mixins/edit.js";
|
103
|
+
export default {
|
104
|
+
mixins: [editMixin],
|
105
|
+
};
|
106
|
+
</script>
|