cnhis-design-vue 3.1.23-beta.14 → 3.1.23-beta.16
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/es/components/annotation-edit/index.js +10 -1
- package/es/components/big-table/index.d.ts +4 -6
- package/es/components/big-table/index.js +16 -2
- package/es/components/big-table/src/BigTable.vue.d.ts +20 -7
- package/es/components/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +13 -13
- package/es/components/big-table/src/bigTableEmits.js +53 -1
- package/es/components/big-table/src/bigTableProps.js +119 -1
- package/es/components/big-table/src/bigTableState.js +62 -1
- package/es/components/big-table/src/components/NoData.vue.d.ts +2 -4
- package/es/components/big-table/src/components/edit-form/edit-date.js +2 -2
- package/es/components/big-table/src/components/edit-form/edit-input.js +1 -1
- package/es/components/big-table/src/components/edit-form/edit-select.js +1 -1
- package/es/components/big-table/src/components/edit-form/edit-separate.js +1 -1
- package/es/components/big-table/src/components/edit-form/edit-separate.vue.d.ts +3 -5
- package/es/components/big-table/src/components/edit-form/edit-time.js +1 -1
- package/es/components/big-table/src/components/edit-form/useCommon.js +19 -1
- package/es/components/big-table/src/components/input-button.js +1 -2
- package/es/components/big-table/src/components/input-button.vue.d.ts +1 -1
- package/es/components/big-table/src/components/separate.js +1 -1
- package/es/components/big-table/src/components/separate.vue.d.ts +2 -4
- package/es/components/big-table/src/constants/index.js +3 -1
- package/es/components/big-table/src/hooks/export.js +1 -1
- package/es/components/big-table/src/hooks/index.js +8 -8
- package/es/components/big-table/src/hooks/useAnchor.js +49 -1
- package/es/components/big-table/src/hooks/useAnnotation.js +1 -1
- package/es/components/big-table/src/hooks/useBatchEditing.js +301 -1
- package/es/components/big-table/src/hooks/useColumnConfigAdaptor.js +158 -1
- package/es/components/big-table/src/hooks/useEdit.d.ts +3 -5
- package/es/components/big-table/src/hooks/useEdit.js +126 -1
- package/es/components/big-table/src/hooks/useEvent.js +81 -1
- package/es/components/big-table/src/hooks/useFormat.js +507 -1
- package/es/components/big-table/src/hooks/useNestTable.js +86 -1
- package/es/components/big-table/src/hooks/useSeparateRow.js +132 -1
- package/es/components/big-table/src/hooks/useTableParse.js +142 -1
- package/es/components/big-table/src/utils.js +608 -1
- package/es/components/big-table/style/index.css +1 -1
- package/es/components/bpmn-workflow/index.d.ts +2 -4
- package/es/components/bpmn-workflow/index.js +10 -1
- package/es/components/bpmn-workflow/src/BpmnWorkflow.js +34 -30
- package/es/components/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +2 -4
- package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.js +65 -33
- package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.js +3 -1
- package/es/components/button-print/index.js +11 -2
- package/es/components/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +1 -1
- package/es/components/button-print/src/components/IdentityVerification.js +9 -7
- package/es/components/button-print/src/utils/index.js +1 -1
- package/es/components/button-print/src/utils/print.js +357 -1
- package/es/components/chunk-upload/index.d.ts +1 -1
- package/es/components/chunk-upload/index.js +14 -1
- package/es/components/chunk-upload/src/chunk-upload-new.js +11 -9
- package/es/components/chunk-upload/src/hooks/upload-computed.js +70 -1
- package/es/components/chunk-upload/src/hooks/upload-data.js +96 -1
- package/es/components/chunk-upload/src/hooks/vod-computed.js +79 -1
- package/es/components/chunk-upload/src/hooks/vod-data.js +28 -1
- package/es/components/chunk-upload/src/vod-chunk-upload/index.js +1 -0
- package/es/components/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.js +20 -18
- package/es/components/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +1 -1
- package/es/components/drag-layout/index.d.ts +1 -1
- package/es/components/drag-layout/index.js +11 -1
- package/es/components/drag-layout/src/DragFormLeftItem.js +10 -12
- package/es/components/drag-layout/src/DragFormLeftItem.vue.d.ts +1 -1
- package/es/components/drag-layout/src/DragFormRightItem.js +19 -21
- package/es/components/drag-layout/src/DragLayout.js +19 -17
- package/es/components/drag-layout/src/DragLayout.vue.d.ts +1 -1
- package/es/components/editor/index.js +10 -1
- package/es/components/fabric-chart/index.d.ts +1 -1
- package/es/components/fabric-chart/index.js +10 -1
- package/es/components/fabric-chart/src/FabricChart.js +30 -11
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +1 -1
- package/es/components/fabric-chart/src/components/PopupMenu.js +1 -1
- package/es/components/fabric-chart/src/components/PopupTip.js +1 -1
- package/es/components/fabric-chart/src/components/PopupTip.vue.d.ts +1 -1
- package/es/components/fabric-chart/src/components/useStyle.js +36 -1
- package/es/components/fabric-chart/src/hooks/constant.js +78 -1
- package/es/components/fabric-chart/src/hooks/index.js +9 -9
- package/es/components/fabric-chart/src/hooks/useBottom.js +97 -1
- package/es/components/fabric-chart/src/hooks/useCenter.js +588 -1
- package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +60 -1
- package/es/components/fabric-chart/src/hooks/useDraw.js +182 -1
- package/es/components/fabric-chart/src/hooks/useEvent.js +161 -1
- package/es/components/fabric-chart/src/hooks/useGrid.js +50 -1
- package/es/components/fabric-chart/src/hooks/useLeft.js +331 -1
- package/es/components/fabric-chart/src/hooks/useOther.js +100 -1
- package/es/components/fabric-chart/src/hooks/useRight.js +27 -1
- package/es/components/fabric-chart/src/hooks/useShadow.js +132 -1
- package/es/components/fabric-chart/src/hooks/useTop.js +160 -1
- package/es/components/fabric-chart/src/interface.js +4 -1
- package/es/components/fabric-chart/src/utils/index.js +9713 -9169
- package/es/components/field-set/index.js +10 -1
- package/es/components/field-set/src/FieldSet.js +58 -62
- package/es/components/form-config/index.d.ts +16 -23
- package/es/components/form-config/index.js +10 -1
- package/es/components/form-config/src/FormConfig.js +10 -11
- package/es/components/form-config/src/FormConfig.vue.d.ts +16 -23
- package/es/components/form-config/src/components/FormConfigCreator.js +6 -8
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +1 -1
- package/es/components/form-config/src/components/FormConfigDragDisplay.js +2 -2
- package/es/components/form-config/src/components/FormConfigDragDisplay.vue.d.ts +1 -1
- package/es/components/form-config/src/components/FormConfigEdit.js +24 -20
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +12 -17
- package/es/components/form-config/src/components/renderer/CloseButton.js +1 -1
- package/es/components/form-config/src/components/renderer/CloseButton.vue.d.ts +2 -4
- package/es/components/form-config/src/components/renderer/ComplexNode.js +2 -2
- package/es/components/form-config/src/components/renderer/ComplexNode.vue.d.ts +5 -9
- package/es/components/form-config/src/components/renderer/DefaultNode.js +2 -2
- package/es/components/form-config/src/components/renderer/DefaultNode.vue.d.ts +4 -8
- package/es/components/form-config/src/constants/index.js +60 -1
- package/es/components/form-config/src/hooks/index.js +2 -2
- package/es/components/form-config/src/hooks/useConfigurationField.js +54 -1
- package/es/components/form-config/src/hooks/useSortalbeConfig.js +27 -1
- package/es/components/form-config/src/utils/index.js +26 -1
- package/es/components/form-render/index.js +23 -14
- package/es/components/form-render/src/FormRender.js +21 -14
- package/es/components/form-render/src/components/renderer/checkbox.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/checkbox.js +1 -1
- package/es/components/form-render/src/components/renderer/combination.js +4 -4
- package/es/components/form-render/src/components/renderer/complex.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/complex.js +1 -1
- package/es/components/form-render/src/components/renderer/date.js +3 -3
- package/es/components/form-render/src/components/renderer/formItem.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/formItem.js +3 -3
- package/es/components/form-render/src/components/renderer/index.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/index.js +2 -2
- package/es/components/form-render/src/components/renderer/input.js +9 -3
- package/es/components/form-render/src/components/renderer/inputGroup.js +11 -1
- package/es/components/form-render/src/components/renderer/inputNumber.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/inputNumber.js +2 -2
- package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate.js +35 -1
- package/es/components/form-render/src/components/renderer/jsonCombination/index.js +2 -2
- package/es/components/form-render/src/components/renderer/labelSelect.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/levelSearchCascade.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/levelSearchCascade.js +52 -35
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.js +57 -0
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +54 -0
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +53 -0
- package/es/components/form-render/src/components/renderer/lineBar/index.js +11 -0
- package/es/components/form-render/src/components/renderer/radio.js +1 -1
- package/es/components/form-render/src/components/renderer/search.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/search.js +16 -11
- package/es/components/form-render/src/components/renderer/searchCascade.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/searchCascade.js +18 -12
- package/es/components/form-render/src/components/renderer/select.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/select.js +15 -10
- package/es/components/form-render/src/components/renderer/slider.js +1 -1
- package/es/components/form-render/src/components/renderer/switch.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/switch.js +1 -1
- package/es/components/form-render/src/components/renderer/textarea.js +2 -2
- package/es/components/form-render/src/constants/index.js +45 -1
- package/es/components/form-render/src/hooks/index.js +13 -13
- package/es/components/form-render/src/hooks/useAnchor.js +99 -1
- package/es/components/form-render/src/hooks/useAsyncQueue.js +151 -1
- package/es/components/form-render/src/hooks/useBusinessBinding.js +107 -1
- package/es/components/form-render/src/hooks/useChangeContext.js +20 -1
- package/es/components/form-render/src/hooks/useCommonInjection.js +36 -1
- package/es/components/form-render/src/hooks/useCommonLog.js +12 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +287 -1
- package/es/components/form-render/src/hooks/useFieldNormalize.js +65 -1
- package/es/components/form-render/src/hooks/useFieldVisitor.js +46 -1
- package/es/components/form-render/src/hooks/useFormContext.js +68 -1
- package/es/components/form-render/src/hooks/useFormField.js +13 -1
- package/es/components/form-render/src/hooks/useFormItemDeps.js +31 -1
- package/es/components/form-render/src/hooks/useFormRenderLifeCycle.js +10 -1
- package/es/components/form-render/src/hooks/useFormRequest.js +19 -1
- package/es/components/form-render/src/hooks/useFormValidator.js +68 -1
- package/es/components/form-render/src/hooks/useNuiThemeOverrides.js +18 -1
- package/es/components/form-render/src/hooks/usePresetScope.js +22 -1
- package/es/components/form-render/src/types/fieldItem.d.ts +5 -1
- package/es/components/form-render/src/types/index.d.ts +1 -0
- package/es/components/form-render/src/utils/business.js +78 -1
- package/es/components/form-render/src/utils/dom.js +14 -1
- package/es/components/form-render/src/utils/index.d.ts +2 -2
- package/es/components/form-render/src/utils/index.js +6 -6
- package/es/components/form-render/src/utils/schema.js +105 -1
- package/es/components/form-render/style/index.css +1 -1
- package/es/components/grid/index.d.ts +1 -1
- package/es/components/grid/index.js +11 -1
- package/es/components/grid/src/Grid.d.ts +1 -1
- package/es/components/grid/src/Grid.js +1 -1
- package/es/components/grid/src/hooks.js +167 -1
- package/es/components/iho-table/index.d.ts +1 -1
- package/es/components/iho-table/index.js +34 -3
- package/es/components/iho-table/src/IhoTable.js +21 -13
- package/es/components/iho-table/src/IhoTable.vue.d.ts +1 -1
- package/es/components/iho-table/src/components/IhoTableColumn.d.ts +1 -1
- package/es/components/iho-table/src/constants/index.js +123 -1
- package/es/components/iho-table/src/hooks/index.js +2 -2
- package/es/components/iho-table/src/hooks/tapHooks/index.js +140 -1
- package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.js +67 -1
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.js +26 -1
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.js +252 -1
- package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.js +33 -1
- package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks.js +27 -1
- package/es/components/iho-table/src/hooks/useTablePlugin.js +20 -1
- package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +33 -1
- package/es/components/iho-table/src/plugins/index.js +4 -4
- package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +36 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.d.ts +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useCommon.js +17 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.d.ts +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.js +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +4 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.js +20 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +6 -6
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separateUtils.js +57 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.d.ts +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.js +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/index.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/colorRendererPlugin.js +4 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/defaultRendererPlugin.js +4 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/labelRendererPlugin.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.js +5 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +3 -3
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index.js +30 -1
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.js +50 -1
- package/es/components/iho-table/src/plugins/virtualTreePlugin/index.js +89 -1
- package/es/components/iho-table/src/types/index.js +1 -1
- package/es/components/iho-table/src/types/pluginType.js +12 -1
- package/es/components/iho-table/src/utils/index.js +23 -1
- package/es/components/index.css +1 -1
- package/es/components/index.js +98 -41
- package/es/components/info-header/index.d.ts +5 -7
- package/es/components/info-header/index.js +10 -1
- package/es/components/info-header/src/HiddenContent.vue.d.ts +3 -5
- package/es/components/info-header/src/InfoEllipsis.vue.d.ts +1 -1
- package/es/components/info-header/src/InfoHeader.js +21 -16
- package/es/components/info-header/src/InfoHeader.vue.d.ts +5 -7
- package/es/components/map/index.js +10 -1
- package/es/components/map/src/Map.js +10 -12
- package/es/components/scale-view/index.d.ts +7 -11
- package/es/components/scale-view/index.js +35 -1
- package/es/components/scale-view/src/ScaleView.js +51 -42
- package/es/components/scale-view/src/ScaleView.vue.d.ts +7 -11
- package/es/components/scale-view/src/components/AnswerParse.vue.d.ts +3 -5
- package/es/components/scale-view/src/components/EvaluateCountdown.js +16 -8
- package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +1 -1
- package/es/components/scale-view/src/components/EvaluatePage.js +1 -1
- package/es/components/scale-view/src/components/NoData.vue.d.ts +2 -4
- package/es/components/scale-view/src/components/composables/choose-common.js +83 -1
- package/es/components/scale-view/src/components/formitem/address.js +3993 -1
- package/es/components/scale-view/src/components/formitem/r-address.js +1 -1
- package/es/components/scale-view/src/components/formitem/r-checkbox.js +1 -1
- package/es/components/scale-view/src/components/formitem/r-map.js +1 -1
- package/es/components/scale-view/src/components/formitem/r-radio.js +1 -1
- package/es/components/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +1 -1
- package/es/components/scale-view/src/hooks/scaleview-computed.js +309 -1
- package/es/components/scale-view/src/hooks/scaleview-init.js +437 -1
- package/es/components/scale-view/src/hooks/scaleview-props.js +81 -1
- package/es/components/scale-view/src/hooks/scaleview-state.js +38 -1
- package/es/components/scale-view/src/hooks/scaleview-submit.js +154 -1
- package/es/components/scale-view/src/hooks/scaleview-validate.js +187 -1
- package/es/components/scale-view/src/hooks/use-component.d.ts +2 -2
- package/es/components/scale-view/src/hooks/use-component.js +82 -1
- package/es/components/scale-view/src/hooks/use-evaluate.js +150 -1
- package/es/components/scale-view/src/hooks/use-event.js +129 -1
- package/es/components/scale-view/src/hooks/use-noData.js +41 -1
- package/es/components/scale-view/src/utils/judge-types.js +36 -1
- package/es/components/search-cascader/index.d.ts +1 -1
- package/es/components/search-cascader/index.js +10 -1
- package/es/components/search-cascader/src/SearchCascader.js +10 -7
- package/es/components/search-cascader/src/SearchCascader.vue.d.ts +1 -1
- package/es/components/search-cascader/src/components/SearchMenu.d.ts +1 -1
- package/es/components/search-cascader/src/components/SearchMenu.js +2 -2
- package/es/components/search-cascader/src/constants/index.js +5 -1
- package/es/components/search-cascader/src/hooks/index.js +1 -1
- package/es/components/search-cascader/src/hooks/useCssVariable.js +7 -1
- package/es/components/search-cascader/src/utils/index.js +11 -1
- package/es/components/select-label/index.d.ts +2 -2
- package/es/components/select-label/index.js +15 -1
- package/es/components/select-label/src/LabelFormContent.js +10 -6
- package/es/components/select-label/src/LabelFormContent.vue.d.ts +1 -1
- package/es/components/select-label/src/SelectLabel.vue.d.ts +1 -1
- package/es/components/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +7 -8
- package/es/components/select-label/src/components/label-classify.js +8 -5
- package/es/components/select-label/src/components/label-classify.vue.d.ts +1 -1
- package/es/components/select-person/index.js +10 -1
- package/es/components/select-person/src/SelectPerson.vue.d.ts +3 -1
- package/es/components/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +7 -9
- package/es/components/select-person/src/utils/index.js +84 -1
- package/es/components/shortcut-provider/index.d.ts +2 -4
- package/es/components/shortcut-provider/index.js +12 -3
- package/es/components/shortcut-provider/src/ShortcutProvider.js +4 -4
- package/es/components/shortcut-provider/src/ShortcutProvider.vue.d.ts +2 -4
- package/es/components/shortcut-provider/src/constants/index.js +8 -1
- package/es/components/shortcut-provider/src/hooks/index.js +2 -2
- package/es/components/shortcut-provider/src/hooks/useShortcutSignature.js +12 -1
- package/es/components/shortcut-provider/src/hooks/useShortcuts.js +185 -1
- package/es/components/shortcut-provider/src/utils/index.js +59 -1
- package/es/components/shortcut-setter/index.d.ts +11 -16
- package/es/components/shortcut-setter/index.js +10 -1
- package/es/components/shortcut-setter/src/ShortcutSetter.js +4 -4
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +11 -16
- package/es/components/shortcut-setter/src/ShortcutSetterItem.js +1 -1
- package/es/components/steps-wheel/index.d.ts +2 -4
- package/es/components/steps-wheel/index.js +10 -1
- package/es/components/steps-wheel/src/StepsWheel.js +10 -6
- package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +2 -4
- package/es/components/time-line/index.d.ts +1 -1
- package/es/components/time-line/index.js +10 -1
- package/es/components/time-line/src/TimeLine.vue.d.ts +1 -1
- package/es/shared/components/SelectPage/SelectPage.js +2 -4
- package/es/shared/components/SelectPage/SelectPage.vue.d.ts +2 -4
- package/es/shared/components/SelectPage/index.js +1 -0
- package/es/shared/components/SlotRender/SlotRender.d.ts +1 -1
- package/es/shared/components/SlotRender/index.js +1 -0
- package/es/shared/components/SvgIcon/SvgIcon.vue.d.ts +1 -1
- package/es/shared/components/SvgIcon/index.js +1 -0
- package/es/shared/components/TextOverTooltip/TextOverTooltip.vue.d.ts +1 -1
- package/es/shared/components/TextOverTooltip/index.js +1 -0
- package/es/shared/components/no-data/NoData.vue.d.ts +2 -4
- package/es/shared/components/no-data/index.js +1 -0
- package/es/shared/components/player-vod/index.vue.d.ts +1 -1
- package/es/shared/components/player-vod/player.d.ts +1 -1
- package/es/shared/components/player-vod/video-list.d.ts +1 -1
- package/es/shared/components/player-vod/video-modal.d.ts +1 -1
- package/es/shared/global/variable.js +3 -1
- package/es/shared/utils/anime.js +129 -1
- package/es/shared/utils/clickoutside.js +52 -1
- package/es/shared/utils/colorLog.js +53 -1
- package/es/shared/utils/index.js +98 -1
- package/es/shared/utils/loadViewer.js +11 -1
- package/es/shared/utils/state.js +44 -1
- package/es/shared/utils/tapable/HookCodeFactory.js +80 -67
- package/es/shared/utils/utilExpand.js +46 -46
- package/package.json +68 -68
- package/es/components/annotation-edit/index2.js +0 -10
- package/es/components/big-table/index2.js +0 -17
- package/es/components/big-table/src/bigTableEmits2.js +0 -53
- package/es/components/big-table/src/bigTableProps2.js +0 -119
- package/es/components/big-table/src/bigTableState2.js +0 -62
- package/es/components/big-table/src/components/edit-form/useCommon2.js +0 -19
- package/es/components/big-table/src/constants/index2.js +0 -3
- package/es/components/big-table/src/hooks/useAnchor2.js +0 -49
- package/es/components/big-table/src/hooks/useBatchEditing2.js +0 -289
- package/es/components/big-table/src/hooks/useColumnConfigAdaptor2.js +0 -154
- package/es/components/big-table/src/hooks/useEdit2.js +0 -126
- package/es/components/big-table/src/hooks/useEvent2.js +0 -81
- package/es/components/big-table/src/hooks/useFormat2.js +0 -501
- package/es/components/big-table/src/hooks/useNestTable2.js +0 -86
- package/es/components/big-table/src/hooks/useSeparateRow2.js +0 -125
- package/es/components/big-table/src/hooks/useTableParse2.js +0 -136
- package/es/components/big-table/src/utils2.js +0 -603
- package/es/components/bpmn-workflow/index2.js +0 -10
- package/es/components/button-print/index2.js +0 -11
- package/es/components/button-print/src/utils/print2.js +0 -349
- package/es/components/chunk-upload/index2.js +0 -14
- package/es/components/chunk-upload/src/hooks/upload-computed2.js +0 -70
- package/es/components/chunk-upload/src/hooks/upload-data2.js +0 -96
- package/es/components/chunk-upload/src/hooks/vod-computed2.js +0 -79
- package/es/components/chunk-upload/src/hooks/vod-data2.js +0 -28
- package/es/components/chunk-upload/src/vod-chunk-upload/index2.js +0 -2
- package/es/components/drag-layout/index2.js +0 -11
- package/es/components/editor/index2.js +0 -10
- package/es/components/fabric-chart/index2.js +0 -10
- package/es/components/fabric-chart/src/components/useStyle2.js +0 -36
- package/es/components/fabric-chart/src/hooks/constant2.js +0 -78
- package/es/components/fabric-chart/src/hooks/useBottom2.js +0 -85
- package/es/components/fabric-chart/src/hooks/useCenter2.js +0 -583
- package/es/components/fabric-chart/src/hooks/useCumputedPoint2.js +0 -60
- package/es/components/fabric-chart/src/hooks/useDraw2.js +0 -182
- package/es/components/fabric-chart/src/hooks/useEvent2.js +0 -136
- package/es/components/fabric-chart/src/hooks/useGrid2.js +0 -50
- package/es/components/fabric-chart/src/hooks/useLeft2.js +0 -321
- package/es/components/fabric-chart/src/hooks/useOther2.js +0 -100
- package/es/components/fabric-chart/src/hooks/useRight2.js +0 -27
- package/es/components/fabric-chart/src/hooks/useShadow2.js +0 -127
- package/es/components/fabric-chart/src/hooks/useTop2.js +0 -140
- package/es/components/fabric-chart/src/interface2.js +0 -4
- package/es/components/field-set/index2.js +0 -10
- package/es/components/form-config/index2.js +0 -10
- package/es/components/form-config/src/constants/index2.js +0 -60
- package/es/components/form-config/src/hooks/useConfigurationField2.js +0 -52
- package/es/components/form-config/src/hooks/useSortalbeConfig2.js +0 -27
- package/es/components/form-config/src/utils/index2.js +0 -26
- package/es/components/form-render/index2.js +0 -47
- package/es/components/form-render/src/components/renderer/index2.js +0 -20
- package/es/components/form-render/src/components/renderer/inputGroup2.js +0 -8
- package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate2.js +0 -33
- package/es/components/form-render/src/components/renderer/linebar.d.ts +0 -31
- package/es/components/form-render/src/components/renderer/linebar.js +0 -61
- package/es/components/form-render/src/constants/index2.js +0 -41
- package/es/components/form-render/src/hooks/useAnchor2.js +0 -88
- package/es/components/form-render/src/hooks/useAsyncQueue2.js +0 -144
- package/es/components/form-render/src/hooks/useBusinessBinding2.js +0 -107
- package/es/components/form-render/src/hooks/useChangeContext2.js +0 -20
- package/es/components/form-render/src/hooks/useCommonInjection2.js +0 -36
- package/es/components/form-render/src/hooks/useCommonLog2.js +0 -10
- package/es/components/form-render/src/hooks/useFieldListAdaptor2.js +0 -282
- package/es/components/form-render/src/hooks/useFieldNormalize2.js +0 -65
- package/es/components/form-render/src/hooks/useFieldVisitor2.js +0 -46
- package/es/components/form-render/src/hooks/useFormContext2.js +0 -59
- package/es/components/form-render/src/hooks/useFormField2.js +0 -13
- package/es/components/form-render/src/hooks/useFormItemDeps2.js +0 -31
- package/es/components/form-render/src/hooks/useFormRenderLifeCycle2.js +0 -10
- package/es/components/form-render/src/hooks/useFormRequest2.js +0 -19
- package/es/components/form-render/src/hooks/useFormValidator2.js +0 -68
- package/es/components/form-render/src/hooks/useNuiThemeOverrides2.js +0 -18
- package/es/components/form-render/src/hooks/usePresetScope2.js +0 -22
- package/es/components/form-render/src/utils/business2.js +0 -78
- package/es/components/form-render/src/utils/dom2.js +0 -14
- package/es/components/form-render/src/utils/schema2.js +0 -105
- package/es/components/grid/index2.js +0 -11
- package/es/components/grid/src/hooks2.js +0 -167
- package/es/components/iho-table/index2.js +0 -30
- package/es/components/iho-table/src/constants/index2.js +0 -123
- package/es/components/iho-table/src/hooks/tapHooks/index2.js +0 -132
- package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks2.js +0 -67
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks2.js +0 -26
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +0 -248
- package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks2.js +0 -33
- package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks2.js +0 -27
- package/es/components/iho-table/src/hooks/useTablePlugin2.js +0 -20
- package/es/components/iho-table/src/plugins/defaultConfigPlugin/index2.js +0 -30
- package/es/components/iho-table/src/plugins/index2.js +0 -15
- package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index2.js +0 -36
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useCommon2.js +0 -17
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils2.js +0 -20
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separateUtils2.js +0 -54
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index2.js +0 -27
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils2.js +0 -50
- package/es/components/iho-table/src/plugins/virtualTreePlugin/index2.js +0 -84
- package/es/components/iho-table/src/types/pluginType2.js +0 -12
- package/es/components/iho-table/src/utils/index2.js +0 -23
- package/es/components/index2.js +0 -79
- package/es/components/info-header/index2.js +0 -10
- package/es/components/map/index2.js +0 -10
- package/es/components/scale-view/index2.js +0 -35
- package/es/components/scale-view/src/components/composables/choose-common2.js +0 -83
- package/es/components/scale-view/src/components/formitem/address2.js +0 -3993
- package/es/components/scale-view/src/hooks/scaleview-computed2.js +0 -309
- package/es/components/scale-view/src/hooks/scaleview-init2.js +0 -437
- package/es/components/scale-view/src/hooks/scaleview-props2.js +0 -81
- package/es/components/scale-view/src/hooks/scaleview-state2.js +0 -38
- package/es/components/scale-view/src/hooks/scaleview-submit2.js +0 -154
- package/es/components/scale-view/src/hooks/scaleview-validate2.js +0 -187
- package/es/components/scale-view/src/hooks/use-component2.js +0 -82
- package/es/components/scale-view/src/hooks/use-evaluate2.js +0 -150
- package/es/components/scale-view/src/hooks/use-event2.js +0 -129
- package/es/components/scale-view/src/hooks/use-noData2.js +0 -41
- package/es/components/scale-view/src/utils/judge-types2.js +0 -36
- package/es/components/search-cascader/index2.js +0 -10
- package/es/components/search-cascader/src/constants/index2.js +0 -3
- package/es/components/search-cascader/src/hooks/useCssVariable2.js +0 -7
- package/es/components/search-cascader/src/utils/index2.js +0 -11
- package/es/components/select-label/index2.js +0 -15
- package/es/components/select-person/index2.js +0 -10
- package/es/components/select-person/src/utils/index2.js +0 -84
- package/es/components/shortcut-provider/index2.js +0 -13
- package/es/components/shortcut-provider/src/constants/index2.js +0 -8
- package/es/components/shortcut-provider/src/hooks/useShortcutSignature2.js +0 -12
- package/es/components/shortcut-provider/src/hooks/useShortcuts2.js +0 -183
- package/es/components/shortcut-provider/src/utils/index2.js +0 -59
- package/es/components/shortcut-setter/index2.js +0 -10
- package/es/components/steps-wheel/index2.js +0 -10
- package/es/components/time-line/index2.js +0 -10
- package/es/shared/components/SelectPage/index2.js +0 -2
- package/es/shared/components/SlotRender/index2.js +0 -2
- package/es/shared/components/SvgIcon/index2.js +0 -2
- package/es/shared/components/TextOverTooltip/index2.js +0 -2
- package/es/shared/components/no-data/index2.js +0 -2
- package/es/shared/global/variable2.js +0 -3
- package/es/shared/utils/anime2.js +0 -129
- package/es/shared/utils/clickoutside2.js +0 -48
- package/es/shared/utils/colorLog2.js +0 -44
- package/es/shared/utils/index2.js +0 -98
- package/es/shared/utils/loadViewer2.js +0 -11
- package/es/shared/utils/state2.js +0 -44
|
@@ -1 +1,608 @@
|
|
|
1
|
-
|
|
1
|
+
import img from '../../../shared/assets/img/xb_small.js';
|
|
2
|
+
import XEUtils from 'xe-utils';
|
|
3
|
+
import 'moment';
|
|
4
|
+
import { nextTick } from 'vue';
|
|
5
|
+
import { groupTraverser, createRowGroupList } from '../../iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.js';
|
|
6
|
+
|
|
7
|
+
const isJSON = (str) => {
|
|
8
|
+
if (typeof str == "string") {
|
|
9
|
+
try {
|
|
10
|
+
const obj = JSON.parse(str);
|
|
11
|
+
return !!(typeof obj == "object" && obj);
|
|
12
|
+
} catch (e) {
|
|
13
|
+
return false;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
return false;
|
|
17
|
+
};
|
|
18
|
+
const getEvaluate = (row, item) => {
|
|
19
|
+
const str = row[item.columnName];
|
|
20
|
+
if (isJSON(str)) {
|
|
21
|
+
const obj = JSON.parse(str);
|
|
22
|
+
return obj.star ? `${obj.star}\u661F` : "";
|
|
23
|
+
}
|
|
24
|
+
return str;
|
|
25
|
+
};
|
|
26
|
+
const getMapVal = (row, item) => {
|
|
27
|
+
const str = row[item.columnName];
|
|
28
|
+
if (isJSON(str)) {
|
|
29
|
+
const obj = JSON.parse(str);
|
|
30
|
+
return obj.address || "";
|
|
31
|
+
}
|
|
32
|
+
return str;
|
|
33
|
+
};
|
|
34
|
+
const getageShowType = (row, item) => {
|
|
35
|
+
const objStr = row[item.columnName];
|
|
36
|
+
if (isJSON(objStr)) {
|
|
37
|
+
const obj = JSON.parse(objStr);
|
|
38
|
+
const days = obj.days || 0;
|
|
39
|
+
if (days > 0) {
|
|
40
|
+
if (days < 91) {
|
|
41
|
+
return `${days} \u5929`;
|
|
42
|
+
} else if (90 < days && days < 365) {
|
|
43
|
+
return `${Math.floor(days / 30)} \u4E2A\u6708`;
|
|
44
|
+
} else if (365 < days && days < 1095) {
|
|
45
|
+
return `${obj.year} \u5C81 ${obj.month} \u6708`;
|
|
46
|
+
} else if (1095 < days) {
|
|
47
|
+
return `${obj.year}\u5C81`;
|
|
48
|
+
}
|
|
49
|
+
} else {
|
|
50
|
+
return "";
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
return objStr || "";
|
|
54
|
+
};
|
|
55
|
+
const getConObj = (arr, state) => {
|
|
56
|
+
var _a;
|
|
57
|
+
if (!Array.isArray(arr)) {
|
|
58
|
+
return [];
|
|
59
|
+
}
|
|
60
|
+
const conObj = [];
|
|
61
|
+
for (let i = 0; i < arr.length; i++) {
|
|
62
|
+
const item = arr[i];
|
|
63
|
+
let value = 0;
|
|
64
|
+
let limit_date = "";
|
|
65
|
+
if (item.EQ || item.CL) {
|
|
66
|
+
value = item.EQ || item.CL;
|
|
67
|
+
if (((_a = item.settingObj) == null ? void 0 : _a.attr) === "PERCENTAGE") {
|
|
68
|
+
value = Number(value) / 100;
|
|
69
|
+
}
|
|
70
|
+
if (item.EVALUATEAttr) {
|
|
71
|
+
value = item.selecteds.join("|#|");
|
|
72
|
+
}
|
|
73
|
+
} else if (!XEUtils.isEmpty(item.QUOTE)) {
|
|
74
|
+
value = item.QUOTE.join("|#|");
|
|
75
|
+
} else if (!XEUtils.isEmpty(item.CONVERT)) {
|
|
76
|
+
value = item.CONVERT.map((item2) => JSON.parse(item2));
|
|
77
|
+
} else if (item.DATE) {
|
|
78
|
+
if (item.DATE.start_val || item.DATE.end_val) {
|
|
79
|
+
item.DATE.con = "IN";
|
|
80
|
+
}
|
|
81
|
+
item.tempCon = item.DATE.con;
|
|
82
|
+
item.start_val = item.DATE.start_val ? item.DATE.start_val.format("YYYY-MM-DD HH:mm:ss") : "";
|
|
83
|
+
item.end_val = item.DATE.end_val ? item.DATE.end_val.format("YYYY-MM-DD HH:mm:ss") : "";
|
|
84
|
+
} else if (item.BIRTHDAY) {
|
|
85
|
+
let isChange = false;
|
|
86
|
+
if (item.BIRTHDAY.limit_date.length > 0 || item.BIRTHDAY.start_val || item.BIRTHDAY.end_val) {
|
|
87
|
+
item.BIRTHDAY.con = "IN";
|
|
88
|
+
}
|
|
89
|
+
item.tempCon = item.BIRTHDAY.con;
|
|
90
|
+
if (item.BIRTHDAY.start_val || item.BIRTHDAY.end_val) {
|
|
91
|
+
isChange = true;
|
|
92
|
+
} else {
|
|
93
|
+
isChange = false;
|
|
94
|
+
}
|
|
95
|
+
if (item.BIRTHDAY.start_val) {
|
|
96
|
+
const res2 = XEUtils.validateBirthday(item.BIRTHDAY.start_val, item.title, item.BIRTHDAY.unit);
|
|
97
|
+
if (!res2)
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
if (item.BIRTHDAY.end_val) {
|
|
101
|
+
const res2 = XEUtils.validateBirthday(item.BIRTHDAY.end_val, item.title, item.BIRTHDAY.unit);
|
|
102
|
+
if (!res2)
|
|
103
|
+
return;
|
|
104
|
+
}
|
|
105
|
+
if (+item.BIRTHDAY.start_val > +item.BIRTHDAY.end_val) {
|
|
106
|
+
window.$message.warning(`${item.title}\u8BF7\u8F93\u5165\u6709\u6548\u8303\u56F4`, 2);
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
limit_date = state.limit_date || "";
|
|
110
|
+
item.unit = isChange ? item.BIRTHDAY.unit || "" : "";
|
|
111
|
+
item.start_val = item.BIRTHDAY.start_val || "";
|
|
112
|
+
item.end_val = item.BIRTHDAY.end_val || "";
|
|
113
|
+
} else if (item.LABELAttr) {
|
|
114
|
+
const valList = [];
|
|
115
|
+
item.labelSelectList.forEach((v) => {
|
|
116
|
+
valList.push(v.labelName);
|
|
117
|
+
});
|
|
118
|
+
value = valList.join("|#|");
|
|
119
|
+
} else if (item.EVALUATEAttr) {
|
|
120
|
+
value = item.selecteds.join("|#|");
|
|
121
|
+
}
|
|
122
|
+
const temp = {
|
|
123
|
+
field_key: item.columnName,
|
|
124
|
+
con: item.DATE || item.BIRTHDAY ? item.tempCon : item.con,
|
|
125
|
+
value,
|
|
126
|
+
limit_date: limit_date || "",
|
|
127
|
+
start_val: item.start_val || "",
|
|
128
|
+
end_val: item.end_val || "",
|
|
129
|
+
unit: item.unit || ""
|
|
130
|
+
};
|
|
131
|
+
conObj.push(temp);
|
|
132
|
+
}
|
|
133
|
+
const res = conObj.filter(
|
|
134
|
+
(item) => item.value || item.limit_date || item.start_val || item.end_val
|
|
135
|
+
);
|
|
136
|
+
return res;
|
|
137
|
+
};
|
|
138
|
+
const reScrollFilterWrap = () => {
|
|
139
|
+
const filterWrapEl = document.querySelectorAll(".big-table-filter-wrap");
|
|
140
|
+
const checkboxWrapEl = filterWrapEl[filterWrapEl.length - 1].querySelector(".js-checkbox-wrap");
|
|
141
|
+
const tableScrollTop = checkboxWrapEl.scrollTop;
|
|
142
|
+
nextTick(() => {
|
|
143
|
+
checkboxWrapEl.scrollTop = tableScrollTop;
|
|
144
|
+
});
|
|
145
|
+
};
|
|
146
|
+
const showFilter = (field, columnName, event, props, state) => {
|
|
147
|
+
var _a, _b, _c;
|
|
148
|
+
if (props.isInlineOperating)
|
|
149
|
+
return false;
|
|
150
|
+
const target = event.target;
|
|
151
|
+
const FILTER_BOX_WIDTH = 400;
|
|
152
|
+
const FILTER_BOX_TOP_OFFSET = 20;
|
|
153
|
+
const transformWrap = document.body;
|
|
154
|
+
const { left: btnRectLeft, right: btnRectRight, top: btnRectTop, width: btnWidth } = target.getBoundingClientRect();
|
|
155
|
+
field.left = "initial";
|
|
156
|
+
field.right = "initial";
|
|
157
|
+
field.top = "initial";
|
|
158
|
+
const transformWrapWidth = transformWrap.clientWidth;
|
|
159
|
+
if (btnRectLeft + FILTER_BOX_WIDTH > transformWrapWidth) {
|
|
160
|
+
const transformWrapRight = (transformWrap == null ? void 0 : transformWrap.getBoundingClientRect().right) || 0;
|
|
161
|
+
field.right = transformWrapRight - btnRectRight - btnWidth / 2 + "px";
|
|
162
|
+
} else {
|
|
163
|
+
field.left = btnRectLeft + "px";
|
|
164
|
+
}
|
|
165
|
+
field.top = btnRectTop + FILTER_BOX_TOP_OFFSET + (props.filterTopOffset || 0) + "px";
|
|
166
|
+
field.visible = !field.visible;
|
|
167
|
+
const len = (_a = state.filterFields[columnName]) == null ? void 0 : _a.CONVERT.length;
|
|
168
|
+
field.checkAll = len === ((_c = (_b = state.filterFields[columnName]) == null ? void 0 : _b.filterItems) == null ? void 0 : _c.length);
|
|
169
|
+
field.indeterminate = !!len && len !== field.setting.showSetting.length;
|
|
170
|
+
field.searchFilterText = "";
|
|
171
|
+
};
|
|
172
|
+
const handleGroupColums = (columns, props) => {
|
|
173
|
+
const { rowGroupSetting } = props;
|
|
174
|
+
return groupTraverser(
|
|
175
|
+
createRowGroupList(rowGroupSetting, columns, (field) => field.columnName || field.type),
|
|
176
|
+
(fieldName, isBlock) => {
|
|
177
|
+
if (isBlock)
|
|
178
|
+
return { field: fieldName, title: fieldName, align: "center" };
|
|
179
|
+
return fieldSearcher(fieldName, columns);
|
|
180
|
+
}
|
|
181
|
+
);
|
|
182
|
+
function fieldSearcher(fieldName, fieldList) {
|
|
183
|
+
return fieldList.find((field) => (field.columnName || field.type) === fieldName);
|
|
184
|
+
}
|
|
185
|
+
};
|
|
186
|
+
const handlerInitSearchItem = (arr) => {
|
|
187
|
+
if (!Array.isArray(arr))
|
|
188
|
+
return;
|
|
189
|
+
arr.forEach((el) => {
|
|
190
|
+
var _a;
|
|
191
|
+
if (el.setting) {
|
|
192
|
+
el.setting = typeof el.setting == "string" ? JSON.parse(el.setting) : el.setting;
|
|
193
|
+
if (!XEUtils.isEmpty(el.setting.wordbook)) {
|
|
194
|
+
el["con"] = "QUOTE";
|
|
195
|
+
el["dataSource"] = [];
|
|
196
|
+
el["QUOTE"] = [];
|
|
197
|
+
return;
|
|
198
|
+
} else if (el.setting.showSetting && el.setting.showSetting.length > 0) {
|
|
199
|
+
el["con"] = "CONVERT";
|
|
200
|
+
el.setting.showSetting.forEach((set) => {
|
|
201
|
+
set["label"] = set.change_text;
|
|
202
|
+
set["value"] = JSON.stringify(set.filter);
|
|
203
|
+
});
|
|
204
|
+
el["CONVERT"] = [];
|
|
205
|
+
return;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
if ((_a = el.fieldType) == null ? void 0 : _a.includes("DATE")) {
|
|
209
|
+
if (el.settingObj && el.settingObj.attr == "BIRTHDAY") {
|
|
210
|
+
el["con"] = "BIRTHDAY";
|
|
211
|
+
el["showDate"] = false;
|
|
212
|
+
el["marginx"] = "ml";
|
|
213
|
+
} else {
|
|
214
|
+
el["con"] = "DATE";
|
|
215
|
+
el["showDate"] = false;
|
|
216
|
+
el["marginx"] = "ml";
|
|
217
|
+
el["DATE"] = {
|
|
218
|
+
con: null,
|
|
219
|
+
start_val: null,
|
|
220
|
+
end_val: null
|
|
221
|
+
};
|
|
222
|
+
}
|
|
223
|
+
} else if (el.fieldType == "TEXT") {
|
|
224
|
+
el["con"] = "CL";
|
|
225
|
+
el["CL"] = "";
|
|
226
|
+
} else if (el.fieldType == "NUMBER") {
|
|
227
|
+
el["con"] = "EQ";
|
|
228
|
+
el["EQ"] = "";
|
|
229
|
+
} else if (el.fieldType == "JSONB") {
|
|
230
|
+
el["con"] = "EQ";
|
|
231
|
+
el["EQ"] = "";
|
|
232
|
+
}
|
|
233
|
+
if (el.setting.attr === "LABEL") {
|
|
234
|
+
el["con"] = "EQ";
|
|
235
|
+
el["LABELAttr"] = true;
|
|
236
|
+
el["labelSelectList"] = [];
|
|
237
|
+
}
|
|
238
|
+
if (el.setting.attr === "EVALUATE") {
|
|
239
|
+
el["con"] = "CL";
|
|
240
|
+
el["selecteds"] = [];
|
|
241
|
+
el["EVALUATEAttr"] = true;
|
|
242
|
+
}
|
|
243
|
+
});
|
|
244
|
+
};
|
|
245
|
+
const generateEditRender = (fieldItem) => {
|
|
246
|
+
if (fieldItem.columnName === "operatorColumn") {
|
|
247
|
+
return void 0;
|
|
248
|
+
}
|
|
249
|
+
return {
|
|
250
|
+
name: "EditInput",
|
|
251
|
+
enabled: fieldItem.isEdit == 1
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
const footerFieldSum = (list, field, conObj = [], props) => {
|
|
255
|
+
let sum = 0, count = 0;
|
|
256
|
+
const { fieldList = [] } = props.columnConfig;
|
|
257
|
+
list.forEach((i) => {
|
|
258
|
+
DFS(i, (node) => {
|
|
259
|
+
var _a, _b;
|
|
260
|
+
if (!node.childrenList || !node.childrenList.length) {
|
|
261
|
+
let isShow = true;
|
|
262
|
+
if (conObj.length) {
|
|
263
|
+
const paramObj = {
|
|
264
|
+
table: node,
|
|
265
|
+
form: {},
|
|
266
|
+
sys: ((_b = (_a = props == null ? void 0 : props.userInfo) == null ? void 0 : _a.map) == null ? void 0 : _b.sysParams) || {}
|
|
267
|
+
};
|
|
268
|
+
isShow = XEUtils.parseCondition(conObj, paramObj, fieldList);
|
|
269
|
+
}
|
|
270
|
+
if (isShow) {
|
|
271
|
+
const value = node[field] || 0;
|
|
272
|
+
sum += Number(value);
|
|
273
|
+
++count;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
});
|
|
277
|
+
});
|
|
278
|
+
return { sum, count };
|
|
279
|
+
};
|
|
280
|
+
const getFooterGroup = (columns, data, props) => {
|
|
281
|
+
const { groupCountMap } = props;
|
|
282
|
+
const res = [];
|
|
283
|
+
props.groupCountFields.forEach((item) => {
|
|
284
|
+
const tips = item.tips;
|
|
285
|
+
const color = item.color || "#000";
|
|
286
|
+
const unit = item.unit || "";
|
|
287
|
+
let value = item.defaultValue || 0;
|
|
288
|
+
if (item.range == "all") {
|
|
289
|
+
value = groupCountMap[item.key];
|
|
290
|
+
} else if (item.range == "page") {
|
|
291
|
+
const { sum = 0, count = 0 } = footerFieldSum(data, item.field, item.conObj, props);
|
|
292
|
+
value = count;
|
|
293
|
+
if (item.method == "avg") {
|
|
294
|
+
value = sum / count || 0;
|
|
295
|
+
} else if (item.method == "sum") {
|
|
296
|
+
value = sum;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
value = XEUtils.round(value, 4);
|
|
300
|
+
res.push(`<span style="color: ${color}">${tips}\uFF1A${value}${unit}</span>`);
|
|
301
|
+
});
|
|
302
|
+
return res.join("\u3001");
|
|
303
|
+
};
|
|
304
|
+
const DFS = (node, fn) => {
|
|
305
|
+
if (!node)
|
|
306
|
+
return;
|
|
307
|
+
const stack = [node];
|
|
308
|
+
while (stack.length > 0) {
|
|
309
|
+
const first = stack.shift();
|
|
310
|
+
if (first) {
|
|
311
|
+
fn(first);
|
|
312
|
+
}
|
|
313
|
+
first.childrenList && first.childrenList.reverse().forEach((child) => {
|
|
314
|
+
stack.unshift(child);
|
|
315
|
+
});
|
|
316
|
+
}
|
|
317
|
+
};
|
|
318
|
+
const safeRandomNumber = () => {
|
|
319
|
+
return window.crypto.getRandomValues(new Uint32Array(1))[0];
|
|
320
|
+
};
|
|
321
|
+
const checkMethod = ({ row }) => {
|
|
322
|
+
return !row.forbiddenBatchSelect;
|
|
323
|
+
};
|
|
324
|
+
const visibleMethod = ({ row }) => {
|
|
325
|
+
return !row.$__SEPARATE;
|
|
326
|
+
};
|
|
327
|
+
const treeToList = (treeData) => {
|
|
328
|
+
const res = [];
|
|
329
|
+
const deepFilter = (arr, key) => {
|
|
330
|
+
if (arr.length > 0) {
|
|
331
|
+
arr.forEach((item) => {
|
|
332
|
+
if (!item.qianduan_id)
|
|
333
|
+
item.qianduan_id = item.theUniqueKey || safeRandomNumber();
|
|
334
|
+
item.qianduan_parent_id = key || null;
|
|
335
|
+
if (item.childrenList) {
|
|
336
|
+
deepFilter(item.childrenList, item.qianduan_id);
|
|
337
|
+
}
|
|
338
|
+
res.push(item);
|
|
339
|
+
});
|
|
340
|
+
}
|
|
341
|
+
};
|
|
342
|
+
deepFilter(treeData);
|
|
343
|
+
return res;
|
|
344
|
+
};
|
|
345
|
+
const flattenRow = (row, newRow, newTheUniqueKeyArr, handleRowId) => {
|
|
346
|
+
newRow.push(row);
|
|
347
|
+
newTheUniqueKeyArr.push(row[handleRowId]);
|
|
348
|
+
if (row.childrenList && row.childrenList.length) {
|
|
349
|
+
row.childrenList.forEach((item) => {
|
|
350
|
+
if (item.childrenList && item.childrenList.length) {
|
|
351
|
+
flattenRow(item, newRow, newTheUniqueKeyArr, handleRowId);
|
|
352
|
+
} else {
|
|
353
|
+
newTheUniqueKeyArr.push(item[handleRowId]);
|
|
354
|
+
newRow.push(item);
|
|
355
|
+
}
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
};
|
|
359
|
+
const intersectRow = (checkedRow, newTheUniqueKeyArr, handleRowId) => {
|
|
360
|
+
const theUniqueKeyArr = [];
|
|
361
|
+
if (!checkedRow.length)
|
|
362
|
+
return 1;
|
|
363
|
+
checkedRow.forEach((item) => theUniqueKeyArr.push(item[handleRowId]));
|
|
364
|
+
if (!theUniqueKeyArr.length)
|
|
365
|
+
return 1;
|
|
366
|
+
if (theUniqueKeyArr.length !== newTheUniqueKeyArr.length)
|
|
367
|
+
return 1;
|
|
368
|
+
const res = theUniqueKeyArr.filter((x) => {
|
|
369
|
+
newTheUniqueKeyArr.includes(x);
|
|
370
|
+
});
|
|
371
|
+
return res.length;
|
|
372
|
+
};
|
|
373
|
+
const removeCheckedDisabledRows = (state) => {
|
|
374
|
+
if (state.checkedRows.length == 1 && !checkMethod({ row: state.checkedRows[0] })) {
|
|
375
|
+
state.checkedRows.pop();
|
|
376
|
+
}
|
|
377
|
+
};
|
|
378
|
+
const setFilterStatus = (state, props) => {
|
|
379
|
+
if (!state.filterFields || !Object.keys(state.filterFields).length)
|
|
380
|
+
return;
|
|
381
|
+
const val = props.quickSearchConfig;
|
|
382
|
+
if (!val || !val.length) {
|
|
383
|
+
const keys = Object.keys(state.filterFields);
|
|
384
|
+
keys.forEach((key) => {
|
|
385
|
+
state.filterFields[key]["CONVERT"] = [];
|
|
386
|
+
});
|
|
387
|
+
return false;
|
|
388
|
+
}
|
|
389
|
+
for (const key in state.filterFields) {
|
|
390
|
+
const item = state.filterFields[key];
|
|
391
|
+
item && (item["CONVERT"] = []);
|
|
392
|
+
}
|
|
393
|
+
val.forEach((item) => {
|
|
394
|
+
const itemKey = item.field_key;
|
|
395
|
+
if (itemKey in state.filterFields) {
|
|
396
|
+
if (!state.filterFields[item.field_key]) {
|
|
397
|
+
state.filterFields[item.field_key]["CONVERT"] = [];
|
|
398
|
+
return false;
|
|
399
|
+
}
|
|
400
|
+
const value = item.value;
|
|
401
|
+
state.filterFields[item.field_key]["CONVERT"] = value;
|
|
402
|
+
}
|
|
403
|
+
});
|
|
404
|
+
};
|
|
405
|
+
const getRowStyle = ({ row }) => {
|
|
406
|
+
if (row.rowColor) {
|
|
407
|
+
const rowRGBA = XEUtils.hexToRGBA(row.rowColor, 0.2);
|
|
408
|
+
const rowBg = `rgba(${rowRGBA.r}, ${rowRGBA.g}, ${rowRGBA.b}, ${rowRGBA.a})`;
|
|
409
|
+
return `background-color:${rowBg}`;
|
|
410
|
+
}
|
|
411
|
+
return null;
|
|
412
|
+
};
|
|
413
|
+
const handleTableHeight = (state, props) => {
|
|
414
|
+
var _a, _b;
|
|
415
|
+
if (!props.isNestTable)
|
|
416
|
+
return props.height;
|
|
417
|
+
const tableHeight = ((_a = props.styleSetting) == null ? void 0 : _a.tableHeight) || "table-simple";
|
|
418
|
+
const dataLen = ((_b = props.data) == null ? void 0 : _b.length) || 1;
|
|
419
|
+
const height = state.checkWidth[tableHeight] * dataLen + 90;
|
|
420
|
+
return `${height}px`;
|
|
421
|
+
};
|
|
422
|
+
const handleName = (item, key = "name") => {
|
|
423
|
+
return item.alias || item[key];
|
|
424
|
+
};
|
|
425
|
+
const formatField = (value) => {
|
|
426
|
+
if (value && typeof value == "string" && value.startsWith("###")) {
|
|
427
|
+
value = value.slice(3);
|
|
428
|
+
value = JSON.parse(value);
|
|
429
|
+
value = value.tooltip || value.value;
|
|
430
|
+
}
|
|
431
|
+
return value;
|
|
432
|
+
};
|
|
433
|
+
const handleImgArr = (imgs, type, imgs2imgArr) => {
|
|
434
|
+
if (type === "HEADPORTRAIT") {
|
|
435
|
+
if (!imgs)
|
|
436
|
+
imgs = img;
|
|
437
|
+
}
|
|
438
|
+
return imgs2imgArr(imgs);
|
|
439
|
+
};
|
|
440
|
+
const handleImgSrc = (curSrc, imageArr, type) => {
|
|
441
|
+
if (!imageArr || !imageArr.length)
|
|
442
|
+
return curSrc;
|
|
443
|
+
const matchItem = imageArr.find((item) => item.type === type);
|
|
444
|
+
if (!matchItem)
|
|
445
|
+
return curSrc;
|
|
446
|
+
if (matchItem.suffix)
|
|
447
|
+
return curSrc + matchItem.suffix;
|
|
448
|
+
let h = matchItem.h;
|
|
449
|
+
const w = matchItem.w;
|
|
450
|
+
if (matchItem.h === "adaptive" && matchItem.w != "adaptive") {
|
|
451
|
+
h = matchItem.w;
|
|
452
|
+
}
|
|
453
|
+
if (matchItem.w === "adaptive" && matchItem.h != "adaptive") {
|
|
454
|
+
h = matchItem.h;
|
|
455
|
+
}
|
|
456
|
+
const size = `_${h}x${w}`;
|
|
457
|
+
return curSrc + size;
|
|
458
|
+
};
|
|
459
|
+
const modalDetailImage = (imageArr, type, defaultHeight) => {
|
|
460
|
+
if (!imageArr || !imageArr.length)
|
|
461
|
+
return {
|
|
462
|
+
display: "inline-block",
|
|
463
|
+
maxWidth: "100%",
|
|
464
|
+
maxheight: defaultHeight
|
|
465
|
+
};
|
|
466
|
+
const matchItem = imageArr.find((item) => item.type === type);
|
|
467
|
+
if (!matchItem) {
|
|
468
|
+
return { display: "inline-block", height: defaultHeight };
|
|
469
|
+
}
|
|
470
|
+
const res = XEUtils.handleImageSize(matchItem, defaultHeight);
|
|
471
|
+
return res;
|
|
472
|
+
};
|
|
473
|
+
const getCandidateComponents = (row, item) => {
|
|
474
|
+
var _a;
|
|
475
|
+
const str = row[item.columnName];
|
|
476
|
+
if (XEUtils.isJSON(str)) {
|
|
477
|
+
const hasNameField = str.includes("user_name");
|
|
478
|
+
const obj = JSON.parse(str);
|
|
479
|
+
if (Array.isArray(obj)) {
|
|
480
|
+
const len = obj.length;
|
|
481
|
+
if (len > 1) {
|
|
482
|
+
return `\u5DF2\u9009${len}\u4EBA`;
|
|
483
|
+
} else if (len === 1) {
|
|
484
|
+
return hasNameField && ((_a = obj[0]) == null ? void 0 : _a.user_name) || `\u5DF2\u9009${len}\u4EBA`;
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
};
|
|
489
|
+
const handleQrCodeContent = (row, field) => {
|
|
490
|
+
var _a, _b;
|
|
491
|
+
const { settingObj = {}, fieldSetting = {} } = field;
|
|
492
|
+
const { mergedFeildExpression } = fieldSetting;
|
|
493
|
+
let content = row[field.field];
|
|
494
|
+
if (mergedFeildExpression) {
|
|
495
|
+
const regexp = /#{(.+?)\}/g;
|
|
496
|
+
const formatHtml = mergedFeildExpression.replace(regexp, (match, $1) => {
|
|
497
|
+
const value = row[$1] || "";
|
|
498
|
+
return value;
|
|
499
|
+
});
|
|
500
|
+
content = formatHtml;
|
|
501
|
+
}
|
|
502
|
+
const params = {
|
|
503
|
+
content
|
|
504
|
+
};
|
|
505
|
+
const btnObj = {
|
|
506
|
+
btnName: (_a = settingObj == null ? void 0 : settingObj.qrCode) == null ? void 0 : _a.name,
|
|
507
|
+
trigger_id: (_b = settingObj == null ? void 0 : settingObj.qrCode) == null ? void 0 : _b.id,
|
|
508
|
+
params
|
|
509
|
+
};
|
|
510
|
+
return btnObj;
|
|
511
|
+
};
|
|
512
|
+
const getInlineEditBtn = (row, btnListKey) => {
|
|
513
|
+
var _a;
|
|
514
|
+
if (!((_a = row[btnListKey]) == null ? void 0 : _a.length))
|
|
515
|
+
return [];
|
|
516
|
+
return row[btnListKey].filter((item) => {
|
|
517
|
+
return item.settingObj[0].trigger_type === "EDIT_ROW";
|
|
518
|
+
});
|
|
519
|
+
};
|
|
520
|
+
const isCopy = (item, row) => {
|
|
521
|
+
return row[item.columnName] && item.fieldSetting && item.fieldSetting.fontContentCopy == 1;
|
|
522
|
+
};
|
|
523
|
+
const handleTableImageSize = (imageArr, type, defaultHeight) => {
|
|
524
|
+
if (!imageArr || imageArr.length === 0) {
|
|
525
|
+
document.body.style.setProperty("--tableImageHeight", defaultHeight);
|
|
526
|
+
document.body.style.setProperty("--tableImageWidth", "auto");
|
|
527
|
+
return;
|
|
528
|
+
}
|
|
529
|
+
const matchItem = imageArr.find((item) => item.type === type);
|
|
530
|
+
if (!matchItem) {
|
|
531
|
+
document.body.style.setProperty("--tableImageHeight", defaultHeight);
|
|
532
|
+
document.body.style.setProperty("--tableImageWidth", "auto");
|
|
533
|
+
return;
|
|
534
|
+
}
|
|
535
|
+
let height = defaultHeight, width = "auto";
|
|
536
|
+
if (matchItem.h) {
|
|
537
|
+
height = matchItem.h === "adaptive" ? "auto" : matchItem.h + "px";
|
|
538
|
+
}
|
|
539
|
+
if (matchItem.w) {
|
|
540
|
+
width = matchItem.w === "adaptive" ? "auto" : matchItem.w + "px";
|
|
541
|
+
}
|
|
542
|
+
document.body.style.setProperty("--tableImageHeight", height);
|
|
543
|
+
document.body.style.setProperty("--tableImageWidth", width);
|
|
544
|
+
};
|
|
545
|
+
const setDefaultFormData = (property, fieldItem, originalRow = {}) => {
|
|
546
|
+
const defaultValue = originalRow[property];
|
|
547
|
+
return {
|
|
548
|
+
[fieldItem.name]: formatField(defaultValue)
|
|
549
|
+
};
|
|
550
|
+
};
|
|
551
|
+
const hideFilterWrap = (state, props) => {
|
|
552
|
+
const values = Object.values(state.filterFields);
|
|
553
|
+
values.forEach((item) => {
|
|
554
|
+
item.visible = false;
|
|
555
|
+
});
|
|
556
|
+
setFilterStatus(state, props);
|
|
557
|
+
};
|
|
558
|
+
const mergeConObjFn = (state, props) => {
|
|
559
|
+
const fields = Object.values(state.filterFields);
|
|
560
|
+
const fieldkeys = Object.keys(state.filterFields);
|
|
561
|
+
const conObj = getConObj(fields, state);
|
|
562
|
+
const mergeConObj = [...conObj];
|
|
563
|
+
const qqConObj = props.tableParams.qqConObj ? JSON.parse(props.tableParams.qqConObj) : [];
|
|
564
|
+
qqConObj.forEach((i) => {
|
|
565
|
+
if (!fieldkeys.includes(i.field_key)) {
|
|
566
|
+
mergeConObj.push(i);
|
|
567
|
+
}
|
|
568
|
+
});
|
|
569
|
+
return mergeConObj;
|
|
570
|
+
};
|
|
571
|
+
const isLink = (props, item, row) => {
|
|
572
|
+
var _a;
|
|
573
|
+
return item.clickFieldKey == item.columnName || props.relatedItems.triggerMethodPc == "field" && item.columnName == props.relatedItems.triggerMethodField || item.isbtnLink && row.btnLinks && ((_a = row.btnLinks) == null ? void 0 : _a.includes(item.columnName));
|
|
574
|
+
};
|
|
575
|
+
const setTableConfig = (config, state) => {
|
|
576
|
+
state.showButtonTop = config.showButtonTop;
|
|
577
|
+
state.isTree = config.isTree;
|
|
578
|
+
state.openOnly = config.openOnly;
|
|
579
|
+
state.isExpand = config.spreadAllBtn;
|
|
580
|
+
state.levelLazyLoadSetting = Object.assign({}, config.levelLazyLoadSetting);
|
|
581
|
+
state.checkWidth = Object.assign({}, state.checkWidth, config.checkWidth);
|
|
582
|
+
};
|
|
583
|
+
const setTreeGroupTitle = (formatList, key, GROUP_TITLE_KEY) => {
|
|
584
|
+
formatList.forEach((row) => {
|
|
585
|
+
if (XEUtils.has(row, "childrenList")) {
|
|
586
|
+
setTreeGroupTitle(row["childrenList"], key, GROUP_TITLE_KEY);
|
|
587
|
+
}
|
|
588
|
+
if (!XEUtils.has(row, GROUP_TITLE_KEY))
|
|
589
|
+
return;
|
|
590
|
+
row[key] = row[GROUP_TITLE_KEY];
|
|
591
|
+
});
|
|
592
|
+
};
|
|
593
|
+
const setVisibleCheckAllWrap = (state, props, currentCheckedKeys) => {
|
|
594
|
+
if (props.isNestTable)
|
|
595
|
+
return;
|
|
596
|
+
if (state.isTree == 1) {
|
|
597
|
+
state.visibleCheckAllWrap = false;
|
|
598
|
+
return false;
|
|
599
|
+
}
|
|
600
|
+
state.visibleCheckAllWrap = currentCheckedKeys.length > 1;
|
|
601
|
+
const len = currentCheckedKeys.length;
|
|
602
|
+
const isLargerOrEqualPageSize = len >= state.curAbleCheckedLen;
|
|
603
|
+
const isShowAllTable = props.pageVO.pageSize === props.pageVO.total;
|
|
604
|
+
const isSpreadSelected = currentCheckedKeys.length > state.currentPageSelectedLength;
|
|
605
|
+
state.visibleCheckAllWrapMore = isSpreadSelected || isLargerOrEqualPageSize && !isShowAllTable;
|
|
606
|
+
};
|
|
607
|
+
|
|
608
|
+
export { checkMethod, flattenRow, generateEditRender, getCandidateComponents, getEvaluate, getFooterGroup, getInlineEditBtn, getMapVal, getRowStyle, getageShowType, handleGroupColums, handleImgArr, handleImgSrc, handleName, handleQrCodeContent, handleTableHeight, handleTableImageSize, handlerInitSearchItem, hideFilterWrap, intersectRow, isCopy, isLink, mergeConObjFn, modalDetailImage, reScrollFilterWrap, removeCheckedDisabledRows, setDefaultFormData, setFilterStatus, setTableConfig, setTreeGroupTitle, setVisibleCheckAllWrap, showFilter, treeToList, visibleMethod };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.big-table-filter-wrap{background-color:#fff;border-radius:4px;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.2);display:flex;flex-direction:column;flex-wrap:wrap;margin-top:-6px;min-width:280px;overflow:hidden;position:fixed;transform:translateX(-2%);transition:width 2s;z-index:99998}.big-table-filter-wrap .sort-list{margin-top:6px}.big-table-filter-wrap .sort-item{align-items:center;display:flex;height:32px;padding:0 13px}.big-table-filter-wrap .sort-item.active,.big-table-filter-wrap .sort-item:hover{background:#f2f2f2}.big-table-filter-wrap .sort-icon{background-size:contain;display:inline-block;height:16px;width:16px}.big-table-filter-wrap .sort-text{color:rgba(0,0,0,.8);font-size:14px;line-height:32px;margin-left:11px}.big-table-filter-wrap .sort-icon-desc{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABT0lEQVRYR+3WvSuGYRTH8c9TykpJSimLMvgHpLyUCQsmg/wBMss/ILvdJgspNnkbZFYGk7JQSAaLwUuX7uFxu3E/nvvqSd3XeHW6zvec65zfORUNPpUG+1cClBnIysABhiMV5y4mqt/OAliPCHCImd8AIgWf/WzMIhzFK/Z/iigWQAtuE4A2PH0HEQugG5eJ005clwBlBmrJwDwGcorBNjYybOsqwit05QQ4R1/RAB3oqQHgoWiAnL5/NKvrC/4tQBNacYesDAR5fkxHV6QU72EQczhNSfE4VpOOmY01jsOyMYYXLGElcbSIZT4W4C1MxQIIUy9sU1ltGXyeYQSfuua7L2jOWYnPKbt2HKE3dR/0Iqx593lq4AT9OQE2MZ2yDTpyXKUlF0lthP3gy8nKwBqGcgLsYCHDNuwAAe4Nk7ipZRbk9F2MWZFt+CeiEuAdAU5CIQxYYdUAAAAASUVORK5CYII=")}.big-table-filter-wrap .filter-header{cursor:auto;padding:0 13px}.big-table-filter-wrap .filter-header-icon{border-right-color:#333;border-top-color:#333}.big-table-filter-wrap .filter-header-text{margin-left:11px}.big-table-filter-wrap .check-search-wrap{background:#f7f7f7;display:flex;justify-content:center;padding:8px 0;width:100%}.big-table-filter-wrap .check-seach-input{line-height:32px}.big-table-filter-wrap .checkbox-box{padding-right:3px;width:100%}.big-table-filter-wrap .checkbox-wrap{background:#fff;display:flex;flex-direction:column;overflow-y:auto;padding-left:13px;padding-right:3px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar{height:4px;width:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-thumb{background-color:#d5d5d5;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-track{background-color:#fff;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-corner{background-color:#000;border-radius:4px;width:4px}.big-table-filter-wrap .checkbox-wrap--search{padding-right:10px}.big-table-filter-wrap .checkbox-btn-wrap{display:flex;padding:9px 10px 9px 14px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn{padding:0;width:56px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn+.checkbox-btn{margin-left:8px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn{border:0;border-radius:0;margin:0 13px;position:relative;width:auto}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn:hover:after{background-color:#5585f5;bottom:5px;content:"";display:block;height:1px;position:absolute;width:100%}.big-table-filter-wrap .arrows-icon{bottom:-1px;cursor:nw-resize;font-size:15px;height:20px;position:absolute;right:-1px;width:25px}.big-table__separate{padding:4px}.big-table__separatePlaceholder{display:inline-block;max-width:0;visibility:hidden;width:0;word-break:keep-all}.custom-big-table{position:relative}.custom-big-table .n-input{width:fit-content}.custom-big-table .img-wrap{align-items:center;display:flex;height:100%;line-height:1;padding:2px 0}.custom-big-table .img-wrap img{cursor:pointer;max-height:100%;object-fit:contain}.custom-big-table .img-wrap.img-circle img{border-radius:50%;object-fit:contain;width:28px}.custom-big-table .bigTable-qr-span{display:inline-block;height:100%;position:relative}.custom-big-table .bigTable-qr-span .bigTable-qr-img{max-height:96%}.custom-big-table .bigTable-qr-span>span{align-items:center;background:rgba(0,0,0,.7);color:#fff;cursor:pointer;display:none;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.custom-big-table .bigTable-qr-span:hover>span{display:inline-flex}.custom-big-table .base-form{align-items:center;display:flex;overflow:hidden!important;width:100%}.custom-big-table .base-form-content{width:100%}.custom-big-table textarea{height:32px;margin-bottom:0;resize:none}.custom-big-table .formItem-select-multiple{align-items:center;display:flex;line-height:40px;width:100%}.custom-big-table.mt{height:calc(100% - 78px)!important;margin-top:26px}.custom-big-table.expand-padding .vxe-table .vxe-body--expanded-cell{padding-left:66px!important;padding-right:66px!important}.custom-big-table th.vxe-header--column{cursor:pointer}.custom-big-table .row-btn{margin-right:10px}.custom-big-table .vxe-table{transform:translateZ(0)}.custom-big-table .vxe-table .vxe-table--empty-content,.custom-big-table .vxe-table .vxe-table--empty-content>div{height:100%;width:100%}.custom-big-table .vxe-table .vxe-table--empty-content>div .no-data-tip{display:inline-flex}.custom-big-table .vxe-table .col--checkbox .vxe-cell,.custom-big-table .vxe-table .col--seq .vxe-cell{padding:0}.custom-big-table .vxe-table .col--checkbox .vxe-cell .vxe-checkbox--label,.custom-big-table .vxe-table .col--seq .vxe-cell .vxe-checkbox--label{padding-left:0}.custom-big-table .vxe-table .vxe-cell .vxe-tree-cell{height:100%}.custom-big-table .vxe-table .scan-multi-delete{color:#f06f64}.custom-big-table .vxe-table .vxe-table--header{background-color:#f2f2f2}.custom-big-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title{color:#35393c;height:100%;line-height:unset}.custom-big-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title .header-title-span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.custom-big-table .vxe-table .vxe-table--header .col--checkbox .vxe-cell--title,.custom-big-table .vxe-table .vxe-table--header .col--seq .vxe-cell--title{display:inline-block}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar{background-color:transparent;height:10px;width:10px}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#f2f2f2;border:3px dashed transparent;border-radius:0}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb:hover{background:#b2b2b2}.custom-big-table .vxe-table .vxe-footer--row .vxe-footer--column>.vxe-cell .vxe-cell--item{height:30px;line-height:30px}.custom-big-table .vxe-table .vxe-cell--checkbox .vxe-checkbox--label{display:none}.custom-big-table .filter-box{align-items:center;display:flex;width:100%}.custom-big-table .filter-box .text-over-tooltip-components{max-width:calc(100% - 40px)}.custom-big-table .filter-box .vxe-filter--btn{border-right-color:#c0c4cc;border-top-color:#c0c4cc}.custom-big-table .filter-box .vxe-filter--btn.active{border-right-color:#35393c;border-top-color:#35393c}.custom-big-table .filter-box .vxe-filter--btn.checked{border-right-color:#5585f5;border-top-color:#5585f5}.custom-big-table .disabled-checked-tips{background:#fff;border:2px solid #ff1818;border-radius:50%;bottom:0;box-sizing:border-box;height:16px;margin-top:-8px;overflow:hidden;position:absolute;right:0;top:50%;width:16px}.custom-big-table .disabled-checked-tips:after{background-color:#ff1818;content:"";height:2px;left:0;position:absolute;top:0;transform:rotate(45deg);transform-origin:0 2px;width:16px}.custom-big-table .form-select-table .n-base-select-menu__empty{display:none}.custom-big-table .percent-wrap{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}.custom-big-table .percent-wrap .percent-value{line-height:1;margin-bottom:-4px;margin-top:4px}.custom-big-table .refresh{align-items:center;background-color:#fff;border-bottom-left-radius:14px;border-top-left-radius:14px;box-shadow:0 2px 4px 0 hsla(0,0%,42%,.13);color:#5585f5;cursor:pointer;display:flex;font-size:12px;height:27px;padding-left:14px;padding-right:14px;position:absolute;right:0;top:6px;z-index:1}.custom-big-table .refresh-row{margin-bottom:0;margin-left:3px}.custom-big-table .check-wrap{background:#ffffe9;display:flex;justify-content:center;line-height:26px;margin-top:-26px;position:absolute;width:100%}.custom-big-table .check-wrap .check-wrap-btn,.custom-big-table .check-wrap .check-wrap-title{color:#000;cursor:pointer;font-size:12px;margin-bottom:0}.custom-big-table .check-wrap .check-wrap-btn{color:#5585f5}.custom-big-table .domPropsInnerHTML-span{height:100%}.custom-big-table .domPropsInnerHTML-span img{display:inline-block;height:var(--tableImageHeight);width:var(--tableImageWidth)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom{background:var(--table-icon-color);box-shadow:0 2px 4px 0 var(--table-icon-shadow)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom,.custom-big-table .domPropsInnerHTML-span .icon-dot-red{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-red{background:red;box-shadow:0 2px 4px 0 rgba(255,0,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue{background:blue;box-shadow:0 2px 4px 0 rgba(0,0,255,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue,.custom-big-table .domPropsInnerHTML-span .icon-dot-green{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-green{background:green;box-shadow:0 2px 4px 0 rgba(0,128,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray{background:gray;box-shadow:0 2px 4px 0 hsla(0,0%,50%,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray,.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{background:#ff0;box-shadow:0 2px 4px 0 rgba(255,255,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{background:#36be8c;box-shadow:0 2px 4px 0 rgba(54,190,140,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu,.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu{background:#42d0f6;box-shadow:0 2px 4px 0 rgba(66,208,246,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-close{background:#718391;box-shadow:0 2px 4px 0 rgba(113,131,145,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit,.custom-big-table .domPropsInnerHTML-span .icon-dot-close{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit{background:#f4ba32;box-shadow:0 2px 4px 0 rgba(244,186,50,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design{background:#927ce1;box-shadow:0 2px 4px 0 rgba(146,124,225,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design,.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{background:#4eb0ef;box-shadow:0 2px 4px 0 rgba(78,176,239,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop-complete{background:#6381f9;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;box-shadow:0 2px 4px 0 rgba(99,129,249,.5);display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .vxe-table--render-default .vxe-table--fixed-left-wrapper.scrolling--middle{box-shadow:4px 0 4px 0 rgba(0,0,0,.12)}.custom-big-table .vxe-table--render-default .vxe-table--fixed-right-wrapper.scrolling--middle{box-shadow:-4px 0 4px 0 rgba(0,0,0,.12)}.annotation-edit{align-items:center;color:#0067ee;cursor:pointer;display:inline-flex;font-size:16px;user-select:none}.annotation-edit.is-active{color:#ff9828}.annotation-edit__icon{align-items:center;display:inline-flex}.no-data-tip{align-items:center;color:#333;display:flex;flex-direction:column;font-size:22px;height:100%;justify-content:center;width:100%}.no-data-tip>img{max-width:70%;width:260px}.no-data-tip>p{color:rgba(0,0,0,.8);font-size:16px;margin-bottom:0;margin-top:12px}.no-data-tip>span{color:rgba(0,0,0,.4);font-size:14px;margin-top:6px}.text-over-tooltip-components{display:inline-block;max-width:98%}.text-over-tooltip-components .ellipsis{color:#35393c;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-over-tooltip-components .ellipsis i{font-style:normal;white-space:nowrap;word-break:keep-all}.text-over-tooltip-components .fs20{color:green;font-size:20px;font-weight:600;line-height:22px}.text-over-tooltip-components .fs12{color:orange;font-size:12px;font-weight:400;line-height:14px}.svg-icon{fill:currentColor;height:1em;overflow:hidden;vertical-align:-.15em;width:1em}.vxe-header--column [annotation-hover-show=true]{visibility:hidden}.vxe-header--column:hover [annotation-hover-show=true]{visibility:visible}.big-table__annotationWrapper{align-items:center;display:inline-flex;width:20px}.big-table__annotationWrapper .is-active{position:relative;top:3px}
|
|
1
|
+
.big-table-filter-wrap{background-color:#fff;border-radius:4px;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.2);display:flex;flex-direction:column;flex-wrap:wrap;margin-top:-6px;min-width:280px;overflow:hidden;position:fixed;transform:translateX(-2%);transition:width 2s;z-index:99998}.big-table-filter-wrap .sort-list{margin-top:6px}.big-table-filter-wrap .sort-item{align-items:center;display:flex;height:32px;padding:0 13px}.big-table-filter-wrap .sort-item.active,.big-table-filter-wrap .sort-item:hover{background:#f2f2f2}.big-table-filter-wrap .sort-icon{background-size:contain;display:inline-block;height:16px;width:16px}.big-table-filter-wrap .sort-text{color:rgba(0,0,0,.8);font-size:14px;line-height:32px;margin-left:11px}.big-table-filter-wrap .sort-icon-desc{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABT0lEQVRYR+3WvSuGYRTH8c9TykpJSimLMvgHpLyUCQsmg/wBMss/ILvdJgspNnkbZFYGk7JQSAaLwUuX7uFxu3E/nvvqSd3XeHW6zvec65zfORUNPpUG+1cClBnIysABhiMV5y4mqt/OAliPCHCImd8AIgWf/WzMIhzFK/Z/iigWQAtuE4A2PH0HEQugG5eJ005clwBlBmrJwDwGcorBNjYybOsqwit05QQ4R1/RAB3oqQHgoWiAnL5/NKvrC/4tQBNacYesDAR5fkxHV6QU72EQczhNSfE4VpOOmY01jsOyMYYXLGElcbSIZT4W4C1MxQIIUy9sU1ltGXyeYQSfuua7L2jOWYnPKbt2HKE3dR/0Iqx593lq4AT9OQE2MZ2yDTpyXKUlF0lthP3gy8nKwBqGcgLsYCHDNuwAAe4Nk7ipZRbk9F2MWZFt+CeiEuAdAU5CIQxYYdUAAAAASUVORK5CYII=")}.big-table-filter-wrap .filter-header{cursor:auto;padding:0 13px}.big-table-filter-wrap .filter-header-icon{border-right-color:#333;border-top-color:#333}.big-table-filter-wrap .filter-header-text{margin-left:11px}.big-table-filter-wrap .check-search-wrap{background:#f7f7f7;display:flex;justify-content:center;padding:8px 0;width:100%}.big-table-filter-wrap .check-seach-input{line-height:32px}.big-table-filter-wrap .checkbox-box{padding-right:3px;width:100%}.big-table-filter-wrap .checkbox-wrap{background:#fff;display:flex;flex-direction:column;overflow-y:auto;padding-left:13px;padding-right:3px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar{height:4px;width:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-thumb{background-color:#d5d5d5;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-track{background-color:#fff;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-corner{background-color:#000;border-radius:4px;width:4px}.big-table-filter-wrap .checkbox-wrap--search{padding-right:10px}.big-table-filter-wrap .checkbox-btn-wrap{display:flex;padding:9px 10px 9px 14px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn{padding:0;width:56px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn+.checkbox-btn{margin-left:8px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn{border:0;border-radius:0;margin:0 13px;position:relative;width:auto}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn:hover:after{background-color:#5585f5;bottom:5px;content:"";display:block;height:1px;position:absolute;width:100%}.big-table-filter-wrap .arrows-icon{bottom:-1px;cursor:nw-resize;font-size:15px;height:20px;position:absolute;right:-1px;width:25px}.big-table__separate{padding:4px}.big-table__separatePlaceholder{display:inline-block;max-width:0;visibility:hidden;width:0;word-break:keep-all}.custom-big-table{position:relative}.custom-big-table .n-input{width:fit-content}.custom-big-table .img-wrap{align-items:center;display:flex;height:100%;line-height:1;padding:2px 0}.custom-big-table .img-wrap img{cursor:pointer;max-height:100%;object-fit:contain}.custom-big-table .img-wrap.img-circle img{border-radius:50%;object-fit:contain;width:28px}.custom-big-table .bigTable-qr-span{display:inline-block;height:100%;position:relative}.custom-big-table .bigTable-qr-span .bigTable-qr-img{max-height:96%}.custom-big-table .bigTable-qr-span>span{align-items:center;background:rgba(0,0,0,.7);color:#fff;cursor:pointer;display:none;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.custom-big-table .bigTable-qr-span:hover>span{display:inline-flex}.custom-big-table .base-form{align-items:center;display:flex;overflow:hidden!important;width:100%}.custom-big-table .base-form-content{width:100%}.custom-big-table textarea{height:32px;margin-bottom:0;resize:none}.custom-big-table .formItem-select-multiple{align-items:center;display:flex;line-height:40px;width:100%}.custom-big-table.mt{height:calc(100% - 78px)!important;margin-top:26px}.custom-big-table.expand-padding .vxe-table .vxe-body--expanded-cell{padding-left:66px!important;padding-right:66px!important}.custom-big-table th.vxe-header--column{cursor:pointer}.custom-big-table .row-btn{margin-right:10px}.custom-big-table .vxe-table{transform:translateZ(0)}.custom-big-table .vxe-table .vxe-table--empty-content,.custom-big-table .vxe-table .vxe-table--empty-content>div{height:100%;width:100%}.custom-big-table .vxe-table .vxe-table--empty-content>div .no-data-tip{display:inline-flex}.custom-big-table .vxe-table .col--checkbox .vxe-cell,.custom-big-table .vxe-table .col--seq .vxe-cell{padding:0}.custom-big-table .vxe-table .col--checkbox .vxe-cell .vxe-checkbox--label,.custom-big-table .vxe-table .col--seq .vxe-cell .vxe-checkbox--label{padding-left:0}.custom-big-table .vxe-table .vxe-cell .vxe-tree-cell{height:100%}.custom-big-table .vxe-table .scan-multi-delete{color:#f06f64}.custom-big-table .vxe-table .vxe-table--header{background-color:#f2f2f2}.custom-big-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title{color:#35393c;height:100%;line-height:unset}.custom-big-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title .header-title-span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.custom-big-table .vxe-table .vxe-table--header .col--checkbox .vxe-cell--title,.custom-big-table .vxe-table .vxe-table--header .col--seq .vxe-cell--title{display:inline-block}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar{background-color:transparent;height:10px;width:10px}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#f2f2f2;border:3px dashed transparent;border-radius:0}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb:hover{background:#b2b2b2}.custom-big-table .vxe-table .vxe-footer--row .vxe-footer--column>.vxe-cell .vxe-cell--item{height:30px;line-height:30px}.custom-big-table .vxe-table .vxe-cell--checkbox .vxe-checkbox--label{display:none}.custom-big-table .filter-box{align-items:center;display:flex;width:100%}.custom-big-table .filter-box .text-over-tooltip-components{max-width:calc(100% - 40px)}.custom-big-table .filter-box .vxe-filter--btn{border-right-color:#c0c4cc;border-top-color:#c0c4cc}.custom-big-table .filter-box .vxe-filter--btn.active{border-right-color:#35393c;border-top-color:#35393c}.custom-big-table .filter-box .vxe-filter--btn.checked{border-right-color:#5585f5;border-top-color:#5585f5}.custom-big-table .disabled-checked-tips{background:#fff;border:2px solid #ff1818;border-radius:50%;bottom:0;box-sizing:border-box;height:16px;margin-top:-8px;overflow:hidden;position:absolute;right:0;top:50%;width:16px}.custom-big-table .disabled-checked-tips:after{background-color:#ff1818;content:"";height:2px;left:0;position:absolute;top:0;transform:rotate(45deg);transform-origin:0 2px;width:16px}.custom-big-table .form-select-table .n-base-select-menu__empty{display:none}.custom-big-table .percent-wrap{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}.custom-big-table .percent-wrap .percent-value{line-height:1;margin-bottom:-4px;margin-top:4px}.custom-big-table .refresh{align-items:center;background-color:#fff;border-bottom-left-radius:14px;border-top-left-radius:14px;box-shadow:0 2px 4px 0 hsla(0,0%,42%,.13);color:#5585f5;cursor:pointer;display:flex;font-size:12px;height:27px;padding-left:14px;padding-right:14px;position:absolute;right:0;top:6px;z-index:1}.custom-big-table .refresh-row{margin-bottom:0;margin-left:3px}.custom-big-table .check-wrap{background:#ffffe9;display:flex;justify-content:center;line-height:26px;margin-top:-26px;position:absolute;width:100%}.custom-big-table .check-wrap .check-wrap-btn,.custom-big-table .check-wrap .check-wrap-title{color:#000;cursor:pointer;font-size:12px;margin-bottom:0}.custom-big-table .check-wrap .check-wrap-btn{color:#5585f5}.custom-big-table .domPropsInnerHTML-span{height:100%}.custom-big-table .domPropsInnerHTML-span img{display:inline-block;height:var(--tableImageHeight);width:var(--tableImageWidth)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom{background:var(--table-icon-color);box-shadow:0 2px 4px 0 var(--table-icon-shadow)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom,.custom-big-table .domPropsInnerHTML-span .icon-dot-red{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-red{background:red;box-shadow:0 2px 4px 0 rgba(255,0,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue{background:blue;box-shadow:0 2px 4px 0 rgba(0,0,255,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue,.custom-big-table .domPropsInnerHTML-span .icon-dot-green{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-green{background:green;box-shadow:0 2px 4px 0 rgba(0,128,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray{background:gray;box-shadow:0 2px 4px 0 hsla(0,0%,50%,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray,.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{background:#ff0;box-shadow:0 2px 4px 0 rgba(255,255,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{background:#36be8c;box-shadow:0 2px 4px 0 rgba(54,190,140,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu,.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu{background:#42d0f6;box-shadow:0 2px 4px 0 rgba(66,208,246,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-close{background:#718391;box-shadow:0 2px 4px 0 rgba(113,131,145,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit,.custom-big-table .domPropsInnerHTML-span .icon-dot-close{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit{background:#f4ba32;box-shadow:0 2px 4px 0 rgba(244,186,50,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design{background:#927ce1;box-shadow:0 2px 4px 0 rgba(146,124,225,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design,.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{background:#4eb0ef;box-shadow:0 2px 4px 0 rgba(78,176,239,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop-complete{background:#6381f9;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;box-shadow:0 2px 4px 0 rgba(99,129,249,.5);display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .vxe-table--render-default .vxe-table--fixed-left-wrapper.scrolling--middle{box-shadow:7px 0 8px -3px rgba(0,0,0,.15)}.custom-big-table .vxe-table--render-default .vxe-table--fixed-right-wrapper.scrolling--middle{box-shadow:-7px 0 8px -3px rgba(0,0,0,.15)}.annotation-edit{align-items:center;color:#0067ee;cursor:pointer;display:inline-flex;font-size:16px;user-select:none}.annotation-edit.is-active{color:#ff9828}.annotation-edit__icon{align-items:center;display:inline-flex}.no-data-tip{align-items:center;color:#333;display:flex;flex-direction:column;font-size:22px;height:100%;justify-content:center;width:100%}.no-data-tip>img{max-width:70%;width:260px}.no-data-tip>p{color:rgba(0,0,0,.8);font-size:16px;margin-bottom:0;margin-top:12px}.no-data-tip>span{color:rgba(0,0,0,.4);font-size:14px;margin-top:6px}.text-over-tooltip-components{display:inline-block;max-width:98%}.text-over-tooltip-components .ellipsis{color:#35393c;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-over-tooltip-components .ellipsis i{font-style:normal;white-space:nowrap;word-break:keep-all}.text-over-tooltip-components .fs20{color:green;font-size:20px;font-weight:600;line-height:22px}.text-over-tooltip-components .fs12{color:orange;font-size:12px;font-weight:400;line-height:14px}.svg-icon{fill:currentColor;height:1em;overflow:hidden;vertical-align:-.15em;width:1em}.vxe-header--column [annotation-hover-show=true]{visibility:hidden}.vxe-header--column:hover [annotation-hover-show=true]{visibility:visible}.big-table__annotationWrapper{align-items:center;display:inline-flex;width:20px}.big-table__annotationWrapper .is-active{position:relative;top:3px}
|
|
@@ -37,9 +37,7 @@ declare const BpmnWorkflow: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
37
37
|
getNodeApprovaler: {
|
|
38
38
|
type: FunctionConstructor;
|
|
39
39
|
};
|
|
40
|
-
}>> & {
|
|
41
|
-
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
42
|
-
}>>;
|
|
40
|
+
}>> & {}>>;
|
|
43
41
|
instance: import("axios").AxiosInstance;
|
|
44
42
|
unique: (objArray: any[], key: string) => any[];
|
|
45
43
|
initDetails: (processId: string | undefined, instanceId: string | undefined) => Promise<void>;
|
|
@@ -51,7 +49,7 @@ declare const BpmnWorkflow: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
51
49
|
addEventListener: () => void;
|
|
52
50
|
setNodeColor: (element: any, color: string | undefined) => void;
|
|
53
51
|
handleNodeMenuData: (processId: string | undefined, instanceId: string | undefined) => Promise<void>;
|
|
54
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
52
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
53
|
flowType: {
|
|
56
54
|
type: StringConstructor;
|
|
57
55
|
default: string;
|