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
@@ -0,0 +1,498 @@
|
|
1
|
+
<template>
|
2
|
+
<div id="containt">
|
3
|
+
<div class="filter-btns">
|
4
|
+
<el-select class="f-btn" v-model="formData.dateRange" @change="handleSelectChange">
|
5
|
+
<el-option :label="$t1('本日')" :value="1"></el-option>
|
6
|
+
<el-option :label="$t1('本周')" :value="2"></el-option>
|
7
|
+
<el-option :label="$t1('本月')" :value="3"></el-option>
|
8
|
+
<el-option :label="$t1('本年')" :value="4"></el-option>
|
9
|
+
</el-select>
|
10
|
+
<el-select
|
11
|
+
class="f-btn"
|
12
|
+
v-model="formData.stat"
|
13
|
+
:placeholder="$t2('全部状态', 'components.wf.wfReport.allStatus')"
|
14
|
+
clearable
|
15
|
+
@clear="formData.stat = null"
|
16
|
+
@change="handleSelectChange"
|
17
|
+
>
|
18
|
+
<el-option
|
19
|
+
:label="$t2('审核中', 'components.wf.wfStatus1')"
|
20
|
+
:value="1"
|
21
|
+
></el-option>
|
22
|
+
<el-option
|
23
|
+
:label="$t2('已完成', 'components.wf.wfStatus2')"
|
24
|
+
:value="2"
|
25
|
+
></el-option>
|
26
|
+
<el-option
|
27
|
+
:label="$t2('已驳回', 'components.wf.wfStatus3')"
|
28
|
+
:value="3"
|
29
|
+
></el-option>
|
30
|
+
</el-select>
|
31
|
+
</div>
|
32
|
+
<div class="sum-statistics">
|
33
|
+
<div class="item">
|
34
|
+
<p>总流程数</p>
|
35
|
+
<b>{{ countData.total || 0 }}</b>
|
36
|
+
<!-- <p class="f-gray">较上月增长 12%</p> -->
|
37
|
+
<i class="ico iconfont icon-liuchengshu"></i>
|
38
|
+
</div>
|
39
|
+
<div class="item">
|
40
|
+
<p>快速处理</p>
|
41
|
+
<b>{{ countData.count_1 || 0 }}</b>
|
42
|
+
<p class="f-gray"><1天完成</p>
|
43
|
+
<i class="ico iconfont icon-kuaisuchuli"></i>
|
44
|
+
</div>
|
45
|
+
<div class="item">
|
46
|
+
<p>正常处理</p>
|
47
|
+
<b>{{ countData.count_1_3 || 0 }}</b>
|
48
|
+
<p class="f-gray">1-3天完成</p>
|
49
|
+
<i class="ico iconfont icon-zhengchangchuli"></i>
|
50
|
+
</div>
|
51
|
+
<div class="item">
|
52
|
+
<p>缓慢处理</p>
|
53
|
+
<b>{{ countData.count_3_7 || 0 }}</b>
|
54
|
+
<p class="f-gray">3-7天完成</p>
|
55
|
+
<i class="ico iconfont icon-huanmanchuli"></i>
|
56
|
+
</div>
|
57
|
+
<div class="item">
|
58
|
+
<p>超时处理</p>
|
59
|
+
<b>{{ countData.count_7 || 0 }}</b>
|
60
|
+
<p class="f-gray">>7天完成</p>
|
61
|
+
<i class="ico iconfont icon-chaoshichuli"></i>
|
62
|
+
</div>
|
63
|
+
</div>
|
64
|
+
<el-row style="margin: 0 -5px">
|
65
|
+
<el-col :span="16">
|
66
|
+
<el-card class="box-style1">
|
67
|
+
<div slot="header" class="clearfix">
|
68
|
+
<span>流程详情列表</span>
|
69
|
+
</div>
|
70
|
+
<div style="height: 100%">
|
71
|
+
<vxe-grid ref="table-m1" v-bind="vxeOption" :data="tableData"> </vxe-grid>
|
72
|
+
</div>
|
73
|
+
</el-card>
|
74
|
+
</el-col>
|
75
|
+
<el-col :span="8">
|
76
|
+
<el-card class="box-style1">
|
77
|
+
<div slot="header" class="clearfix">
|
78
|
+
<span>节点详情</span>
|
79
|
+
</div>
|
80
|
+
<div class="node-box">
|
81
|
+
<div class="info" v-if="currentRow.name">
|
82
|
+
<p class="tit">{{ currentRow.name }}</p>
|
83
|
+
<p>总耗时: {{ currentRow.duration }}分钟</p>
|
84
|
+
<el-tag type="warning" v-if="currentRow.stat === 1">{{
|
85
|
+
$t2("审核中", "components.wf.wfStatus1")
|
86
|
+
}}</el-tag>
|
87
|
+
<el-tag type="success" v-if="currentRow.stat === 2">{{
|
88
|
+
$t2("已完成", "components.wf.wfStatus3")
|
89
|
+
}}</el-tag>
|
90
|
+
<el-tag type="danger" v-if="currentRow.stat === 3">{{
|
91
|
+
$t2("已驳回", "components.wf.wfStatus2")
|
92
|
+
}}</el-tag>
|
93
|
+
</div>
|
94
|
+
<el-steps direction="vertical" :active="1" class="step-box3">
|
95
|
+
<el-step v-for="(row, index) in nodeList" :key="index">
|
96
|
+
<div slot="title">
|
97
|
+
<div class="name">{{ row.task_name }}</div>
|
98
|
+
<div class="a-time">耗时: {{ row.duration }}分钟</div>
|
99
|
+
</div>
|
100
|
+
<div slot="description">
|
101
|
+
<p>
|
102
|
+
<span class="use">{{ row.candidate_names }}</span>
|
103
|
+
<span class="time">{{ row.approve_time }}</span>
|
104
|
+
</p>
|
105
|
+
<p v-if="taskStatuses[row.type]" :class="taskStatuses[row.type].class">
|
106
|
+
{{ taskStatuses[row.type].value }}
|
107
|
+
</p>
|
108
|
+
<p v-if="row.opinion">审批意见:{{ row.opinion }}</p>
|
109
|
+
</div>
|
110
|
+
</el-step>
|
111
|
+
<!-- <el-step>
|
112
|
+
<div slot="title">
|
113
|
+
<div class="name">产品经理审批</div>
|
114
|
+
<div class="a-time">耗时: 2天</div>
|
115
|
+
</div>
|
116
|
+
<div slot="description">
|
117
|
+
<p>
|
118
|
+
<span class="use">张十三</span
|
119
|
+
><span class="time">2019-02-05 12:33:02</span>
|
120
|
+
</p>
|
121
|
+
<p class="f-blue">审批中</p>
|
122
|
+
</div>
|
123
|
+
</el-step>
|
124
|
+
<el-step>
|
125
|
+
<div slot="title">
|
126
|
+
<div class="name">人事审批</div>
|
127
|
+
<div class="a-time">耗时: 2天</div>
|
128
|
+
</div>
|
129
|
+
<div slot="description">
|
130
|
+
<p>
|
131
|
+
<span class="use">张十三</span
|
132
|
+
><span class="time">2019-02-05 12:33:02</span>
|
133
|
+
</p>
|
134
|
+
<p class="f-green">审批通过</p>
|
135
|
+
<p>审批意见:通过</p>
|
136
|
+
</div>
|
137
|
+
</el-step>
|
138
|
+
<el-step>
|
139
|
+
<div slot="title">
|
140
|
+
<div class="name">产品经理审批</div>
|
141
|
+
<div class="a-time">耗时: 2天</div>
|
142
|
+
</div>
|
143
|
+
<div slot="description">
|
144
|
+
<p>
|
145
|
+
<span class="use">张十三</span
|
146
|
+
><span class="time">2019-02-05 12:33:02</span>
|
147
|
+
</p>
|
148
|
+
<p class="f-dred">审批不通过</p>
|
149
|
+
<p>审批意见:不通过</p>
|
150
|
+
</div>
|
151
|
+
</el-step> -->
|
152
|
+
</el-steps>
|
153
|
+
</div>
|
154
|
+
</el-card>
|
155
|
+
</el-col>
|
156
|
+
</el-row>
|
157
|
+
</div>
|
158
|
+
</template>
|
159
|
+
|
160
|
+
<script>
|
161
|
+
import scriptHttpMixin from "@base/components/xform/mixins/scriptHttp";
|
162
|
+
export default {
|
163
|
+
name: "wf_report:index",
|
164
|
+
mixins: [scriptHttpMixin],
|
165
|
+
data() {
|
166
|
+
return {
|
167
|
+
vxeOption: {},
|
168
|
+
serviceName: "sf-cloud-user",
|
169
|
+
tableData: [],
|
170
|
+
countData: {},
|
171
|
+
currentRow: {},
|
172
|
+
nodeList: [],
|
173
|
+
|
174
|
+
taskStatuses: {
|
175
|
+
start: {
|
176
|
+
class: "f-blue",
|
177
|
+
value: this.$t2("开始", "components.wf.startStatus"),
|
178
|
+
},
|
179
|
+
approve: {
|
180
|
+
class: "f-orgn",
|
181
|
+
value: this.$t2("待审批", "components.wf.approveStatus"),
|
182
|
+
},
|
183
|
+
submit: {
|
184
|
+
class: "f-green",
|
185
|
+
value: this.$t2("同意", "components.wf.submitStatus"),
|
186
|
+
},
|
187
|
+
reject: {
|
188
|
+
class: "f-red",
|
189
|
+
value: this.$t2("驳回", "components.wf.rejectStatus"),
|
190
|
+
},
|
191
|
+
transfer: {
|
192
|
+
class: "f-green",
|
193
|
+
value: this.$t2("转办", "components.wf.transferStatus"),
|
194
|
+
},
|
195
|
+
addIncreaseSign: {
|
196
|
+
class: "f-green",
|
197
|
+
value: this.$t2("加签", "components.wf.addIncreaseSignStatus"),
|
198
|
+
},
|
199
|
+
revoke: {
|
200
|
+
class: "f-red",
|
201
|
+
value: this.$t2("撤回", "components.wf.revokeStatus"),
|
202
|
+
},
|
203
|
+
end: {
|
204
|
+
class: "f-gray",
|
205
|
+
value: this.$t2("结束", "components.wf.endStatus"),
|
206
|
+
},
|
207
|
+
},
|
208
|
+
formData: {
|
209
|
+
dateRange: 3,
|
210
|
+
stat: null,
|
211
|
+
},
|
212
|
+
};
|
213
|
+
},
|
214
|
+
mounted() {
|
215
|
+
this.initTableList();
|
216
|
+
this.loadWfSummaryCount();
|
217
|
+
},
|
218
|
+
methods: {
|
219
|
+
searchEvent() {
|
220
|
+
this.$refs["table-m1"].commitProxy("reload");
|
221
|
+
},
|
222
|
+
initTableList() {
|
223
|
+
let that = this;
|
224
|
+
let formCode = this.$route.query.formCode;
|
225
|
+
let syncColumns = [];
|
226
|
+
|
227
|
+
let tableOption = {
|
228
|
+
vue: this,
|
229
|
+
tableRef: "table-m1",
|
230
|
+
tableName: "user-wf-report-index-m1",
|
231
|
+
path: `/${this.serviceName}/bd_api/intf/wfSummaryList`,
|
232
|
+
param: () => {
|
233
|
+
return {
|
234
|
+
...this.formData,
|
235
|
+
// ...this.advancedFormData,
|
236
|
+
};
|
237
|
+
},
|
238
|
+
config: {
|
239
|
+
columnConfig: {
|
240
|
+
resizable: true,
|
241
|
+
},
|
242
|
+
},
|
243
|
+
|
244
|
+
columns: [
|
245
|
+
{ type: "checkbox", width: 48, resizable: false, fixed: "left" },
|
246
|
+
{ field: "obj_type_name", title: "流程类型", width: 150, fixed: "left" },
|
247
|
+
{ field: "name", title: "标题", width: 180 },
|
248
|
+
{
|
249
|
+
field: "stat",
|
250
|
+
title: "状态",
|
251
|
+
width: 150,
|
252
|
+
slots: {
|
253
|
+
default: ({ row }) => {
|
254
|
+
if (row.stat === 1) {
|
255
|
+
return [
|
256
|
+
<el-tag type="warning">
|
257
|
+
{this.$t2("审核中", "components.wf.wfStatus1")}
|
258
|
+
</el-tag>,
|
259
|
+
];
|
260
|
+
} else if (row.stat === 2) {
|
261
|
+
return [
|
262
|
+
<el-tag type="success">
|
263
|
+
{this.$t2("已完成", "components.wf.wfStatus2")}
|
264
|
+
</el-tag>,
|
265
|
+
];
|
266
|
+
} else if (row.stat === 3) {
|
267
|
+
return [
|
268
|
+
<el-tag type="info">
|
269
|
+
{this.$t2("已驳回", "components.wf.wfStatus3")}
|
270
|
+
</el-tag>,
|
271
|
+
];
|
272
|
+
}
|
273
|
+
},
|
274
|
+
},
|
275
|
+
},
|
276
|
+
{ field: "task_name", title: "当前节点", width: 180 },
|
277
|
+
{
|
278
|
+
field: "candidate_names",
|
279
|
+
title: "当前处理人",
|
280
|
+
width: 180,
|
281
|
+
slots: {
|
282
|
+
default: ({ row }) => {
|
283
|
+
return [
|
284
|
+
<div class="txt-mid">
|
285
|
+
<i class="iconfont icon-dangqianchuliren"></i>
|
286
|
+
<sapn>{row.candidate_names}</sapn>
|
287
|
+
</div>,
|
288
|
+
];
|
289
|
+
},
|
290
|
+
},
|
291
|
+
},
|
292
|
+
{
|
293
|
+
field: "duration",
|
294
|
+
title: "总耗时",
|
295
|
+
width: 180,
|
296
|
+
slots: {
|
297
|
+
default: ({ row }) => {
|
298
|
+
return [
|
299
|
+
<div class="txt-mid">
|
300
|
+
<i class="iconfont icon-shijian"></i>
|
301
|
+
<sapn> {row.duration}</sapn>
|
302
|
+
</div>,
|
303
|
+
];
|
304
|
+
},
|
305
|
+
},
|
306
|
+
},
|
307
|
+
{
|
308
|
+
field: "task_duration",
|
309
|
+
title: "当前节点耗时",
|
310
|
+
width: 180,
|
311
|
+
slots: {
|
312
|
+
default: ({ row }) => {
|
313
|
+
return [
|
314
|
+
<div class="txt-mid">
|
315
|
+
<i class="iconfont icon-shijian"></i>
|
316
|
+
<sapn> {row.task_duration}</sapn>
|
317
|
+
</div>,
|
318
|
+
];
|
319
|
+
},
|
320
|
+
},
|
321
|
+
},
|
322
|
+
{
|
323
|
+
width: 47,
|
324
|
+
fixed: "right",
|
325
|
+
title: "",
|
326
|
+
sortable: false,
|
327
|
+
slots: {
|
328
|
+
default: ({ row }) => {
|
329
|
+
return [
|
330
|
+
<a
|
331
|
+
href="javascript:void(0);"
|
332
|
+
class="a-link"
|
333
|
+
onclick={() => {
|
334
|
+
this.loadWfSummaryNode(row);
|
335
|
+
}}
|
336
|
+
>
|
337
|
+
<el-tooltip
|
338
|
+
enterable={false}
|
339
|
+
effect="dark"
|
340
|
+
content="查看"
|
341
|
+
placement="top"
|
342
|
+
popper-class="tooltip-skin"
|
343
|
+
>
|
344
|
+
<i class="iconfont icon-dianji" />
|
345
|
+
</el-tooltip>
|
346
|
+
</a>,
|
347
|
+
];
|
348
|
+
},
|
349
|
+
},
|
350
|
+
},
|
351
|
+
],
|
352
|
+
};
|
353
|
+
this.$vxeTableUtil.initVxeTable(tableOption).then((opts) => {
|
354
|
+
this.vxeOption = opts;
|
355
|
+
});
|
356
|
+
},
|
357
|
+
loadWfSummaryCount() {
|
358
|
+
this.$http({
|
359
|
+
url: `/${this.serviceName}/bd_api/intf/wfSummaryCount`,
|
360
|
+
method: "post",
|
361
|
+
data: {
|
362
|
+
...this.formData,
|
363
|
+
},
|
364
|
+
success: (res) => {
|
365
|
+
this.countData = res.objx || {};
|
366
|
+
},
|
367
|
+
});
|
368
|
+
},
|
369
|
+
loadWfSummaryNode(row) {
|
370
|
+
this.$http({
|
371
|
+
url: `/${this.serviceName}/bd_api/intf/wfSummaryNode`,
|
372
|
+
method: "post",
|
373
|
+
data: {
|
374
|
+
proc_inst_id: row.proc_inst_id,
|
375
|
+
},
|
376
|
+
success: (res) => {
|
377
|
+
this.currentRow = row;
|
378
|
+
this.nodeList = res.objx || [];
|
379
|
+
},
|
380
|
+
});
|
381
|
+
},
|
382
|
+
clearWfSummaryNode() {
|
383
|
+
this.currentRow = {};
|
384
|
+
this.nodeList = [];
|
385
|
+
},
|
386
|
+
handleSelectChange() {
|
387
|
+
if (this.formData.stat === "") {
|
388
|
+
this.formData.stat = null;
|
389
|
+
}
|
390
|
+
this.loadWfSummaryCount();
|
391
|
+
this.searchEvent();
|
392
|
+
this.clearWfSummaryNode();
|
393
|
+
},
|
394
|
+
},
|
395
|
+
};
|
396
|
+
</script>
|
397
|
+
<style scoped lang="scss">
|
398
|
+
#containt {
|
399
|
+
background: none;
|
400
|
+
padding: 10px 0 0;
|
401
|
+
box-shadow: none;
|
402
|
+
}
|
403
|
+
.filter-btns {
|
404
|
+
.f-btn {
|
405
|
+
margin-right: 10px;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
.sum-statistics {
|
409
|
+
display: flex;
|
410
|
+
margin: 10px -5px 0;
|
411
|
+
.item {
|
412
|
+
flex: 1;
|
413
|
+
background: #fff;
|
414
|
+
border: solid 1px #e9e9e9;
|
415
|
+
border-radius: 6px;
|
416
|
+
margin: 0 5px;
|
417
|
+
padding: 10px 14px 8px;
|
418
|
+
font-size: 12px;
|
419
|
+
position: relative;
|
420
|
+
.ico {
|
421
|
+
position: absolute;
|
422
|
+
top: 50%;
|
423
|
+
right: 18px;
|
424
|
+
width: 34px;
|
425
|
+
height: 34px;
|
426
|
+
margin-top: -17px;
|
427
|
+
border-radius: 6px;
|
428
|
+
text-align: center;
|
429
|
+
line-height: 35px;
|
430
|
+
font-size: 16;
|
431
|
+
background: #eff6ff;
|
432
|
+
color: #2f6ffc;
|
433
|
+
}
|
434
|
+
p {
|
435
|
+
margin-bottom: 0;
|
436
|
+
}
|
437
|
+
> b {
|
438
|
+
font-size: 26px;
|
439
|
+
margin: 8px 0 3px;
|
440
|
+
display: inline-block;
|
441
|
+
font-weight: 400;
|
442
|
+
}
|
443
|
+
&:nth-child(2) .ico {
|
444
|
+
background: #faf5ff;
|
445
|
+
color: #ab3dfa;
|
446
|
+
}
|
447
|
+
&:nth-child(3) .ico {
|
448
|
+
background: #f0fdf4;
|
449
|
+
color: #0aa945;
|
450
|
+
}
|
451
|
+
&:nth-child(4) .ico {
|
452
|
+
background: #fff7ed;
|
453
|
+
color: #f5520b;
|
454
|
+
}
|
455
|
+
&:nth-child(5) .ico {
|
456
|
+
background: #fef2f2;
|
457
|
+
color: #e70a15;
|
458
|
+
}
|
459
|
+
}
|
460
|
+
}
|
461
|
+
::v-deep .box-style1 {
|
462
|
+
margin: 10px 5px 0;
|
463
|
+
.el-card__body {
|
464
|
+
height: calc(100vh - 254px);
|
465
|
+
}
|
466
|
+
}
|
467
|
+
.node-box {
|
468
|
+
.info {
|
469
|
+
border: solid 1px #e6ebf5;
|
470
|
+
background: #f6faff;
|
471
|
+
border-radius: 4px;
|
472
|
+
padding: 10px 14px;
|
473
|
+
position: relative;
|
474
|
+
font-size: 12px;
|
475
|
+
color: #666666;
|
476
|
+
margin-bottom: 8px;
|
477
|
+
p {
|
478
|
+
margin-bottom: 0;
|
479
|
+
}
|
480
|
+
.el-tag {
|
481
|
+
position: absolute;
|
482
|
+
right: 12px;
|
483
|
+
top: 50%;
|
484
|
+
margin-top: -14px;
|
485
|
+
}
|
486
|
+
.tit {
|
487
|
+
font-size: 13px;
|
488
|
+
color: #212121;
|
489
|
+
margin-bottom: 5px;
|
490
|
+
}
|
491
|
+
}
|
492
|
+
.el-steps {
|
493
|
+
height: calc(100vh - 326px);
|
494
|
+
overflow: auto;
|
495
|
+
padding-right: 10px;
|
496
|
+
}
|
497
|
+
}
|
498
|
+
</style>
|
@@ -100,6 +100,7 @@
|
|
100
100
|
size="small"
|
101
101
|
clearable
|
102
102
|
value-format="yyyy-MM-dd HH:mm:ss"
|
103
|
+
default-time="23:59:59"
|
103
104
|
:picker-options="$baseEndPickerOptions(formData.startToExeTime)"
|
104
105
|
></el-date-picker>
|
105
106
|
</template>
|
@@ -211,6 +212,7 @@
|
|
211
212
|
size="small"
|
212
213
|
clearable
|
213
214
|
value-format="yyyy-MM-dd HH:mm:ss"
|
215
|
+
default-time="23:59:59"
|
214
216
|
:picker-options="$baseEndPickerOptions(formData2.startToExeTime)"
|
215
217
|
></el-date-picker>
|
216
218
|
</template>
|