cnhis-design-vue 3.3.3-release.0 → 3.3.3-release.13
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/README.md +87 -87
- package/es/components/audio-sdk/index.d.ts +18 -16
- package/es/components/audio-sdk/src/Index.vue.d.ts +18 -16
- package/es/components/audio-sdk/src/Index.vue2.js +47 -12
- package/es/components/audio-sdk/src/audioSDK.js +1 -1
- package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +6 -6
- package/es/components/audio-sdk/src/components/recording.vue.d.ts +6 -6
- package/es/components/audio-sdk/src/components/recording.vue2.js +17 -3
- package/es/components/base-search/index.d.ts +3 -0
- package/es/components/base-search/src/index.vue.d.ts +3 -0
- package/es/components/big-table/src/components/NoData.vue2.js +8 -1
- package/es/components/big-table/src/hooks/useTableParse.js +8 -1
- package/es/components/button-print/index.d.ts +69 -3
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +69 -3
- package/es/components/button-print/src/ButtonPrint.vue2.js +12 -1
- package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +29 -4
- package/es/components/button-print/src/components/NewPrintComponent.vue2.js +121 -16
- package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +18 -0
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +17 -3
- package/es/components/button-print/src/utils/print.d.ts +6 -4
- package/es/components/button-print/src/utils/print.js +201 -27
- package/es/components/button-print/style/index.css +1 -1
- package/es/components/callback/src/components/render/popupMaps.d.ts +18 -0
- package/es/components/card-reader-sdk-cn/src/henan/index.js +8 -1
- package/es/components/classification/index.d.ts +56 -6
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +56 -6
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +56 -6
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
- package/es/components/classification/src/index.vue.d.ts +56 -6
- package/es/components/date-picker/src/DatePicker.vue2.js +8 -1
- package/es/components/expand-field/index.d.ts +792 -1
- package/es/components/expand-field/src/components/FormItemPerson.vue.d.ts +792 -1
- package/es/components/expand-field/src/components/PersonModal.vue.d.ts +792 -1
- package/es/components/expand-field/src/components/form.vue.d.ts +792 -1
- package/es/components/expand-field/src/components/form.vue2.js +8 -1
- package/es/components/expand-field/src/index.vue.d.ts +792 -1
- package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +3 -1
- package/es/components/field-editor/index.d.ts +18 -0
- package/es/components/field-editor/src/FieldEditor.vue.d.ts +18 -0
- package/es/components/field-editor/src/FieldEditor.vue2.js +2 -1
- package/es/components/field-editor/src/fields.d.ts +1 -0
- package/es/components/field-editor/src/fields.js +6 -0
- package/es/components/field-set/src/FieldColor.vue.d.ts +6 -1
- package/es/components/field-set/src/FieldFilter.vue.d.ts +6 -1
- package/es/components/field-set/src/FieldSet.vue.d.ts +38 -1
- package/es/components/field-set/src/FieldSet.vue2.js +118 -69
- package/es/components/field-set/src/Index.vue2.js +8 -3
- package/es/components/field-set/src/TableStyle.vue2.js +2 -2
- package/es/components/field-set/src/components/table-row.vue.d.ts +2 -1
- package/es/components/field-set/src/components/table-row.vue2.js +21 -6
- package/es/components/field-set/src/constants/index.d.ts +1 -1
- package/es/components/field-set/src/types/index.d.ts +3 -1
- package/es/components/field-set/style/index.css +1 -1
- package/es/components/form-config/index.d.ts +102 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +102 -0
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +18 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +63 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue2.js +4 -4
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +18 -0
- package/es/components/form-config/src/components/FormConfigEventSetting.vue2.js +9 -2
- package/es/components/form-config/src/constants/index.d.ts +31 -1
- package/es/components/form-config/src/constants/index.js +150 -1
- package/es/components/form-config/src/hooks/useConfigurationField.d.ts +2 -2
- package/es/components/form-config/src/hooks/useConfigurationField.js +53 -6
- package/es/components/form-config/src/hooks/useLocale.d.ts +6 -0
- package/es/components/form-config/src/hooks/useLocale.js +34 -0
- package/es/components/form-config/src/types/index.d.ts +12 -0
- package/es/components/form-render/index.d.ts +18 -0
- package/es/components/form-render/src/FormRender.vue.d.ts +18 -0
- package/es/components/form-render/src/FormRender.vue2.js +5 -0
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +18 -0
- package/es/components/form-render/src/components/renderer/formItem.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/formItem.js +17 -3
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.js +4 -2
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +1 -0
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +1 -0
- package/es/components/form-render/src/components/renderer/radio_checkbox.js +2 -1
- package/es/components/form-render/src/components/renderer/searchCascade.js +3 -0
- package/es/components/form-render/src/hooks/useBusinessBinding.d.ts +12 -3
- package/es/components/form-render/src/hooks/useBusinessBinding.js +7 -7
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +5 -2
- package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +2 -0
- package/es/components/form-render/src/hooks/useFieldNormalize.js +15 -0
- package/es/components/form-render/src/hooks/useFormContext.js +1 -1
- package/es/components/form-render/src/hooks/useFormValidator.js +8 -1
- package/es/components/form-render/src/hooks/useLowCodeReactions.js +2 -1
- package/es/components/form-render/src/types/index.d.ts +1 -0
- package/es/components/form-render/src/utils/business.d.ts +3 -1
- package/es/components/form-render/src/utils/business.js +7 -1
- package/es/components/iho-chat/index.d.ts +901 -98
- package/es/components/iho-chat/src/Index.vue.d.ts +901 -98
- package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/ChatFile.vue.d.ts +181 -8
- package/es/components/iho-chat/src/components/ChatFile.vue2.js +51 -41
- package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +66 -6
- package/es/components/iho-chat/src/components/ChatFooter.vue2.js +158 -57
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +329 -15
- package/es/components/iho-chat/src/components/ChatHeader.vue2.js +21 -19
- package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +235 -20
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +298 -279
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +51 -5
- package/es/components/iho-chat/src/components/ChatRecord.vue2.js +3 -3
- package/es/components/iho-chat/src/components/ChatSearch.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +48 -2
- package/es/components/iho-chat/src/components/ContextMenu.js +34 -27
- package/es/components/iho-chat/src/components/ImageLightbox.vue.d.ts +104 -0
- package/es/components/iho-chat/src/components/ImageLightbox.vue.js +6 -0
- package/es/components/iho-chat/src/components/ImageLightbox.vue2.js +307 -0
- package/es/components/iho-chat/src/components/MessageEvent.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue.d.ts +53 -6
- package/es/components/iho-chat/src/components/MessageMergeForward.vue2.js +3 -3
- package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +93 -30
- package/es/components/iho-chat/src/components/MultipleVideo.vue2.js +349 -143
- package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SelectLabel.vue.d.ts +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/Video.vue.d.ts +38 -25
- package/es/components/iho-chat/src/components/Video.vue2.js +35 -40
- package/es/components/iho-chat/src/hooks/index.d.ts +1 -0
- package/es/components/iho-chat/src/hooks/index.js +1 -0
- package/es/components/iho-chat/src/hooks/useData.d.ts +51 -4
- package/es/components/iho-chat/src/hooks/useData.js +2 -7
- package/es/components/iho-chat/src/hooks/useDraggable.d.ts +25 -0
- package/es/components/iho-chat/src/hooks/useDraggable.js +160 -0
- package/es/components/iho-chat/src/hooks/useVideo.d.ts +78 -11
- package/es/components/iho-chat/src/hooks/useVideo.js +422 -44
- package/es/components/iho-chat/src/types/index.d.ts +37 -1
- package/es/components/iho-chat/src/utils/emoji.d.ts +1 -1
- package/es/components/iho-chat/src/utils/emoji.js +1 -1
- package/es/components/iho-chat/src/utils/index.d.ts +4 -3
- package/es/components/iho-chat/src/utils/index.js +33 -39
- package/es/components/iho-chat/style/index.css +1 -1
- package/es/components/iho-table/src/plugins/filterRenderPlugin/filter.vue2.js +8 -1
- package/es/components/iho-table/src/plugins/headerPlugin/index.js +5 -2
- package/es/components/iho-table/src/plugins/highLightSetPlugin.js +2 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.js +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.d.ts +2 -0
- package/es/components/index.js +1 -0
- package/es/components/info-header/index.d.ts +41 -0
- package/es/components/info-header/src/InfoHeader.vue.d.ts +41 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +1 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue2.js +56 -22
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +1 -0
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +19 -0
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +18 -0
- package/es/components/info-header/src/components/patientInfo/index.vue2.js +16 -2
- package/es/components/keyboard/index.d.ts +8 -0
- package/es/components/keyboard/src/Keyboard.vue.d.ts +8 -0
- package/es/components/keyboard/src/Keyboard.vue2.js +33 -9
- package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +3 -0
- package/es/components/keyboard/src/components/NumberPanel.vue2.js +27 -7
- package/es/components/keyboard/src/types.d.ts +17 -0
- package/es/components/keyboard/src/types.js +1 -0
- package/es/components/quick-search/index.d.ts +2 -0
- package/es/components/quick-search/src/index.vue.d.ts +2 -0
- package/es/components/scale-view/index.d.ts +80 -17
- package/es/components/scale-view/src/ScaleView.vue.d.ts +83 -19
- package/es/components/scale-view/src/ScaleView.vue2.js +84 -10
- package/es/components/scale-view/src/components/AnswerParse.vue.d.ts +5 -0
- package/es/components/scale-view/src/components/AnswerParse.vue2.js +74 -8
- package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +10 -7
- package/es/components/scale-view/src/components/EvaluateCountdown.vue2.js +28 -4
- package/es/components/scale-view/src/components/EvaluatePage.vue.d.ts +10 -7
- package/es/components/scale-view/src/components/EvaluatePage.vue2.js +29 -8
- package/es/components/scale-view/src/components/NoData.vue2.js +9 -3
- package/es/components/scale-view/src/components/ScaleScore.d.ts +1 -1
- package/es/components/scale-view/src/components/ScaleScore.js +47 -4
- package/es/components/scale-view/src/components/formitem/r-checkbox.js +20 -2
- package/es/components/scale-view/src/components/formitem/r-radio.js +2 -0
- package/es/components/scale-view/src/components/formitem/r-sign.js +32 -4
- package/es/components/scale-view/src/components/formitem/r-upload.js +65 -7
- package/es/components/scale-view/src/components/formitem/sign-com.js +8 -1
- package/es/components/scale-view/src/hooks/scaleview-computed.js +22 -6
- package/es/components/scale-view/src/hooks/scaleview-init.js +24 -3
- package/es/components/scale-view/src/hooks/scaleview-methods.js +40 -5
- package/es/components/scale-view/src/hooks/scaleview-props.d.ts +12 -0
- package/es/components/scale-view/src/hooks/scaleview-props.js +12 -0
- package/es/components/scale-view/src/hooks/scaleview-submit.d.ts +2 -1
- package/es/components/scale-view/src/hooks/scaleview-submit.js +64 -8
- package/es/components/scale-view/src/hooks/scaleview-validate.d.ts +1 -1
- package/es/components/scale-view/src/hooks/scaleview-validate.js +157 -24
- package/es/components/scale-view/src/hooks/use-evaluate.js +16 -2
- package/es/components/scale-view/src/hooks/use-noData.js +33 -5
- package/es/components/scale-view/src/utils/judge-types.d.ts +2 -1
- package/es/components/scale-view/src/utils/judge-types.js +10 -10
- package/es/components/scale-view/src/utils/watch-form-change.d.ts +13 -0
- package/es/components/scale-view/src/utils/watch-form-change.js +71 -0
- package/es/components/scale-view/style/index.css +1 -1
- package/es/components/select-person/index.d.ts +792 -1
- package/es/components/select-person/src/SelectPerson.vue.d.ts +434 -341
- package/es/components/select-person/src/SelectPerson.vue2.js +521 -675
- package/es/components/select-person/src/SelectPersonRole.vue.d.ts +630 -0
- package/es/components/select-person/src/SelectPersonRole.vue.js +6 -0
- package/es/components/select-person/src/SelectPersonRole.vue2.js +942 -0
- package/es/components/select-person/src/components/GroupItem.vue.d.ts +19 -0
- package/es/components/select-person/src/components/GroupItem.vue.js +6 -0
- package/es/components/select-person/src/components/GroupItem.vue2.js +37 -0
- package/es/components/select-person/src/components/SearchGroupList.vue.d.ts +214 -0
- package/es/components/select-person/src/components/SearchGroupList.vue.js +6 -0
- package/es/components/select-person/src/components/SearchGroupList.vue2.js +145 -0
- package/es/components/select-person/src/components/SearchMultiple.vue2.js +1 -1
- package/es/components/select-person/src/components/SearchOrgAndStaff.vue2.js +21 -12
- package/es/components/select-person/src/components/TagItem.vue.d.ts +43 -0
- package/es/components/select-person/src/components/TagItem.vue.js +6 -0
- package/es/components/select-person/src/components/TagItem.vue2.js +40 -0
- package/es/components/select-person/src/index.vue.d.ts +793 -1
- package/es/components/select-person/src/index.vue2.js +21 -4
- package/es/components/select-person/src/types/index.d.ts +35 -0
- package/es/components/select-person/src/types/index.js +1 -0
- package/es/components/select-person/src/utils/index.d.ts +3 -0
- package/es/components/select-person/src/utils/index.js +29 -8
- package/es/components/select-person/style/index.css +1 -1
- package/es/components/shortcut-setter/index.d.ts +18 -0
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +18 -0
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/SelectFilter.vue.d.ts +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +1 -0
- package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +1 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +54 -6
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue2.js +26 -10
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +17 -2
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue2.js +37 -2
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +18 -2
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +44 -1
- package/es/components/table-filter/src/components/classify-filter/components/SelectFilter.vue.d.ts +1 -0
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +36 -4
- package/es/components/table-filter/src/components/classify-filter/hooks/useFilterConditions.js +2 -1
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +55 -6
- package/es/components/table-filter/src/components/classify-filter/index.vue2.js +6 -3
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue2.js +12 -1
- package/es/components/table-filter/src/components/render-widget/components/DateQuickBtn/index.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/DateQuickBtn/index.vue2.js +25 -6
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue2.js +12 -1
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +2 -2
- package/es/components/table-filter/src/components/render-widget/helpers/dateExtraMap.js +32 -4
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +2 -2
- package/es/components/table-filter/src/hooks/useAdvanced.d.ts +2 -0
- package/es/components/table-filter/src/hooks/useAdvanced.js +20 -3
- package/es/components/table-filter/src/hooks/useRenderWidget.js +4 -0
- package/es/components/table-filter/src/tool/baseOptions.js +8 -1
- package/es/components/table-filter/src/tool/date.d.ts +3 -0
- package/es/components/table-filter/src/tool/date.js +139 -0
- package/es/components/table-filter/src/tool/transformData.d.ts +1 -0
- package/es/components/table-filter/src/tool/transformData.js +11 -8
- package/es/components/table-filter/src/types/enums.d.ts +1 -0
- package/es/components/table-filter/src/types/enums.js +2 -1
- package/es/components/table-filter/src/types/index.d.ts +12 -0
- package/es/components/vertify/index.d.ts +1 -0
- package/es/components/vertify/index.js +1 -0
- package/es/components/vertify/src/components/IdentityVerification.vue.d.ts +89 -0
- package/es/components/vertify/src/components/IdentityVerification.vue.js +6 -0
- package/es/components/vertify/src/components/IdentityVerification.vue2.js +256 -0
- package/es/components/vertify/src/utils/dialog.d.ts +7 -0
- package/es/components/vertify/src/utils/dialog.js +73 -0
- package/es/components/vertify/src/utils/index.d.ts +11 -0
- package/es/components/vertify/src/utils/index.js +24 -0
- package/es/components/vod-chunk-upload/index.d.ts +16 -0
- package/es/components/vod-chunk-upload/src/chunk-upload-new.vue.d.ts +20 -31
- package/es/components/vod-chunk-upload/src/chunk-upload-new.vue2.js +205 -78
- package/es/components/vod-chunk-upload/src/hooks/upload-computed.d.ts +1 -0
- package/es/components/vod-chunk-upload/src/hooks/upload-computed.js +35 -4
- package/es/components/vod-chunk-upload/src/hooks/upload-data.d.ts +4 -0
- package/es/components/vod-chunk-upload/src/hooks/upload-data.js +78 -11
- package/es/components/vod-chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +16 -0
- package/es/components/vod-chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue2.js +81 -10
- package/es/components/vod-chunk-upload/style/index.css +1 -1
- package/es/env.d.ts +25 -25
- package/es/shared/assets/img/defaultCover/10review_successful.png.js +1 -1
- package/es/shared/assets/img/defaultCover/11review_fail.png.js +1 -1
- package/es/shared/assets/img/defaultCover/12no_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/13no_menu_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/14no_call_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/15no_use_tag.png.js +1 -1
- package/es/shared/assets/img/defaultCover/16no_table_data.png.js +1 -1
- package/es/shared/assets/img/defaultCover/1location.png.js +1 -1
- package/es/shared/assets/img/defaultCover/2notfound.png.js +1 -1
- package/es/shared/assets/img/defaultCover/3loading.png.js +1 -1
- package/es/shared/assets/img/defaultCover/4no_permission.png.js +1 -1
- package/es/shared/assets/img/defaultCover/5no_data.png.js +1 -1
- package/es/shared/assets/img/defaultCover/6no_network.png.js +1 -1
- package/es/shared/assets/img/defaultCover/7no_doctor.png.js +1 -1
- package/es/shared/assets/img/defaultCover/8system_error.png.js +1 -1
- package/es/shared/assets/img/defaultCover/9system_upgrade.png.js +1 -1
- package/es/shared/components/InputNumberSlash/InputNumberSlash.js +1 -1
- package/es/shared/hooks/selectHooks/useSearchContent.js +1 -1
- package/es/shared/hooks/useLevelSearchCascader.js +3 -3
- package/es/shared/package.json.js +1 -1
- package/es/shared/utils/fabricjs/index.js +1 -1
- package/package.json +4 -3
@@ -38,7 +38,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
38
38
|
type: PropType<AnyFn>;
|
39
39
|
};
|
40
40
|
recorderStatus: {
|
41
|
-
type:
|
41
|
+
type: StringConstructor;
|
42
42
|
default: string;
|
43
43
|
};
|
44
44
|
}, {
|
@@ -80,7 +80,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
80
80
|
type: PropType<AnyFn>;
|
81
81
|
};
|
82
82
|
recorderStatus: {
|
83
|
-
type:
|
83
|
+
type: StringConstructor;
|
84
84
|
default: string;
|
85
85
|
};
|
86
86
|
}>> & {
|
@@ -98,12 +98,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
98
98
|
data: string;
|
99
99
|
}>;
|
100
100
|
wsConnected: import("vue").Ref<boolean>;
|
101
|
-
recorderStatus: import("vue").Ref<
|
101
|
+
recorderStatus: import("vue").Ref<string>;
|
102
102
|
audioChartRef: import("vue").Ref<HTMLDivElement | undefined>;
|
103
103
|
audioChartSamllRef: import("vue").Ref<HTMLDivElement | undefined>;
|
104
104
|
contentScrollRef: import("vue").Ref<HTMLDivElement | undefined>;
|
105
|
-
isActive: import("vue").Ref<boolean>;
|
106
105
|
isWarning: import("vue").Ref<boolean>;
|
106
|
+
isActive: import("vue").Ref<boolean>;
|
107
107
|
formattedTime: import("vue").ComputedRef<string>;
|
108
108
|
isCountFinished: import("vue").Ref<boolean>;
|
109
109
|
isCountActive: import("vue").Ref<boolean>;
|
@@ -214,7 +214,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
214
214
|
type: PropType<AnyFn>;
|
215
215
|
};
|
216
216
|
recorderStatus: {
|
217
|
-
type:
|
217
|
+
type: StringConstructor;
|
218
218
|
default: string;
|
219
219
|
};
|
220
220
|
}>> & {
|
@@ -234,6 +234,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
234
234
|
showBtn: boolean;
|
235
235
|
wsConnected: boolean;
|
236
236
|
fromSdk: boolean;
|
237
|
-
recorderStatus:
|
237
|
+
recorderStatus: string;
|
238
238
|
}>;
|
239
239
|
export default _default;
|
@@ -24,7 +24,14 @@ const _hoisted_3 = {
|
|
24
24
|
const _hoisted_4 = {
|
25
25
|
class: "tip-small"
|
26
26
|
};
|
27
|
-
const _hoisted_5 = /* @__PURE__ */ createElementVNode("span", null,
|
27
|
+
const _hoisted_5 = /* @__PURE__ */ createElementVNode("span", null, function() {
|
28
|
+
var _a, _b, _c;
|
29
|
+
try {
|
30
|
+
return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.630")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.630")) || "\u6682\u505C";
|
31
|
+
} catch (e) {
|
32
|
+
return "\u6682\u505C";
|
33
|
+
}
|
34
|
+
}(), -1);
|
28
35
|
const _hoisted_6 = /* @__PURE__ */ createElementVNode("span", null, "\u7EE7\u7EED", -1);
|
29
36
|
const _hoisted_7 = /* @__PURE__ */ createElementVNode("span", null, function() {
|
30
37
|
var _a, _b, _c;
|
@@ -120,9 +127,9 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
120
127
|
const audioChartRef = ref();
|
121
128
|
const audioChartSamllRef = ref();
|
122
129
|
const contentScrollRef = ref();
|
130
|
+
const isWarning = ref(false);
|
123
131
|
const {
|
124
132
|
isActive,
|
125
|
-
isWarning,
|
126
133
|
formattedTime,
|
127
134
|
isCountFinished,
|
128
135
|
isCountActive,
|
@@ -322,7 +329,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
322
329
|
disabled: unref(btnDisabled),
|
323
330
|
onClick: unref(onPause)
|
324
331
|
}, {
|
325
|
-
default: withCtx(() => [createTextVNode(
|
332
|
+
default: withCtx(() => [createTextVNode(function() {
|
333
|
+
var _a, _b, _c;
|
334
|
+
try {
|
335
|
+
return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.630")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.630")) || "\u6682\u505C";
|
336
|
+
} catch (e) {
|
337
|
+
return "\u6682\u505C";
|
338
|
+
}
|
339
|
+
}())]),
|
326
340
|
_: 1
|
327
341
|
}, 8, ["disabled", "onClick"]), [[vShow, unref(isActive)]]), withDirectives(createVNode(unref(NButton), {
|
328
342
|
size: "large",
|
@@ -53,6 +53,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
53
53
|
defaultValue: any;
|
54
54
|
defValueUnit: any;
|
55
55
|
optionSetting: string | undefined;
|
56
|
+
dateShortcuts: any[] | undefined;
|
56
57
|
multiple: boolean;
|
57
58
|
manualMapping: boolean | null | undefined;
|
58
59
|
showWholeOption: boolean | undefined;
|
@@ -76,6 +77,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
76
77
|
accurateSearch: any;
|
77
78
|
extendKey: string;
|
78
79
|
extendType: string;
|
80
|
+
dateShortcuts: any[];
|
79
81
|
}[];
|
80
82
|
transformParams: (paramsList: any[]) => any;
|
81
83
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
@@ -120,6 +122,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
|
|
120
122
|
unit: "custom" | null;
|
121
123
|
widgetType?: string | undefined;
|
122
124
|
dynamicBaseList?: any[] | undefined;
|
125
|
+
dateShortcuts?: any[] | undefined;
|
123
126
|
isAccurateSearch?: boolean | undefined;
|
124
127
|
accurateSearchKey?: string | undefined;
|
125
128
|
}[]>;
|
@@ -54,6 +54,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
54
54
|
defaultValue: any;
|
55
55
|
defValueUnit: any;
|
56
56
|
optionSetting: string | undefined;
|
57
|
+
dateShortcuts: any[] | undefined;
|
57
58
|
multiple: boolean;
|
58
59
|
manualMapping: boolean | null | undefined;
|
59
60
|
showWholeOption: boolean | undefined;
|
@@ -77,6 +78,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
77
78
|
accurateSearch: any;
|
78
79
|
extendKey: string;
|
79
80
|
extendType: string;
|
81
|
+
dateShortcuts: any[];
|
80
82
|
}[];
|
81
83
|
transformParams: (paramsList: any[]) => any;
|
82
84
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
@@ -121,6 +123,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
121
123
|
unit: "custom" | null;
|
122
124
|
widgetType?: string | undefined;
|
123
125
|
dynamicBaseList?: any[] | undefined;
|
126
|
+
dateShortcuts?: any[] | undefined;
|
124
127
|
isAccurateSearch?: boolean | undefined;
|
125
128
|
accurateSearchKey?: string | undefined;
|
126
129
|
}[]>;
|
@@ -58,7 +58,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
58
58
|
let res = "";
|
59
59
|
switch (props.noDataImg) {
|
60
60
|
case "no-permission":
|
61
|
-
res =
|
61
|
+
res = function() {
|
62
|
+
var _a, _b, _c;
|
63
|
+
try {
|
64
|
+
return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.622")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.622")) || "\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458";
|
65
|
+
} catch (e) {
|
66
|
+
return "\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458";
|
67
|
+
}
|
68
|
+
}();
|
62
69
|
break;
|
63
70
|
case "failure":
|
64
71
|
res = function() {
|
@@ -25,7 +25,14 @@ const useTableParse = (formatData) => {
|
|
25
25
|
const du = hu * 24;
|
26
26
|
if (value < du) {
|
27
27
|
const v2 = Math.floor(value / 60) % 60;
|
28
|
-
return `${Math.floor(value / hu)}\u5C0F\u65F6${v2 ? v2 +
|
28
|
+
return `${Math.floor(value / hu)}\u5C0F\u65F6${v2 ? v2 + function() {
|
29
|
+
var _a, _b, _c;
|
30
|
+
try {
|
31
|
+
return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.611")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.611")) || "\u5206";
|
32
|
+
} catch (e) {
|
33
|
+
return "\u5206";
|
34
|
+
}
|
35
|
+
}() : ""}`;
|
29
36
|
}
|
30
37
|
const MU = du * 30;
|
31
38
|
if (value < MU) {
|
@@ -111,6 +111,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
111
111
|
svrUpdateIp: {
|
112
112
|
type: StringConstructor;
|
113
113
|
};
|
114
|
+
apptype: {
|
115
|
+
type: StringConstructor;
|
116
|
+
};
|
117
|
+
uuid: {
|
118
|
+
type: StringConstructor;
|
119
|
+
};
|
114
120
|
hidePreviewBtns: {
|
115
121
|
type: StringConstructor;
|
116
122
|
};
|
@@ -228,6 +234,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
228
234
|
svrUpdateIp: {
|
229
235
|
type: StringConstructor;
|
230
236
|
};
|
237
|
+
apptype: {
|
238
|
+
type: StringConstructor;
|
239
|
+
};
|
240
|
+
uuid: {
|
241
|
+
type: StringConstructor;
|
242
|
+
};
|
231
243
|
hidePreviewBtns: {
|
232
244
|
type: StringConstructor;
|
233
245
|
};
|
@@ -340,11 +352,18 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
340
352
|
buttonProps: {};
|
341
353
|
showMaxHeight: null;
|
342
354
|
initLoadPrintParams: boolean;
|
355
|
+
showPreviewDataList: boolean;
|
343
356
|
};
|
344
357
|
};
|
345
358
|
svrUpdateIp: {
|
346
359
|
type: StringConstructor;
|
347
360
|
};
|
361
|
+
apptype: {
|
362
|
+
type: StringConstructor;
|
363
|
+
};
|
364
|
+
uuid: {
|
365
|
+
type: StringConstructor;
|
366
|
+
};
|
348
367
|
hidePreviewBtns: {
|
349
368
|
type: StringConstructor;
|
350
369
|
};
|
@@ -459,11 +478,18 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
459
478
|
buttonProps: {};
|
460
479
|
showMaxHeight: null;
|
461
480
|
initLoadPrintParams: boolean;
|
481
|
+
showPreviewDataList: boolean;
|
462
482
|
};
|
463
483
|
};
|
464
484
|
svrUpdateIp: {
|
465
485
|
type: StringConstructor;
|
466
486
|
};
|
487
|
+
apptype: {
|
488
|
+
type: StringConstructor;
|
489
|
+
};
|
490
|
+
uuid: {
|
491
|
+
type: StringConstructor;
|
492
|
+
};
|
467
493
|
hidePreviewBtns: {
|
468
494
|
type: StringConstructor;
|
469
495
|
};
|
@@ -493,6 +519,7 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
493
519
|
showMaxHeight: import("vue").ComputedRef<any>;
|
494
520
|
printAllFormatIds: import("vue").ComputedRef<any>;
|
495
521
|
positionElement: import("vue").ComputedRef<any>;
|
522
|
+
showPreviewDataList: import("vue").ComputedRef<any>;
|
496
523
|
printAllShortcut: import("vue").ComputedRef<any>;
|
497
524
|
showSettingItems: import("vue").ComputedRef<import("../../shared/types").AnyObject[]>;
|
498
525
|
isSelectedAll: import("vue").WritableComputedRef<boolean>;
|
@@ -511,13 +538,13 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
511
538
|
callLocalServicesCancelCb: (res: unknown) => void;
|
512
539
|
prevFnError: (type: string) => void;
|
513
540
|
getPrintParams: () => string;
|
514
|
-
getOnceParams: (curPrintParamList: any[] | undefined, templateCode: string) => string;
|
541
|
+
getOnceParams: (curPrintParamList: any[] | undefined, templateCode: string, name?: string | undefined) => string;
|
515
542
|
handleClickPrintAll: () => void;
|
516
543
|
toggleExpandLoading: (isLoading: boolean, formatId?: string | undefined) => void;
|
517
544
|
getCurrentLoading: () => any;
|
518
545
|
handleOneTypePrint: (templateCode: string, templateId: string, formatId: string, isOuterClick: boolean) => void;
|
519
546
|
handleClickPrint: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string, printToParam?: never[], needContinuePrint?: boolean | undefined) => Promise<void>;
|
520
|
-
handleClickPreview: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
|
547
|
+
handleClickPreview: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string, name?: string | undefined) => Promise<void>;
|
521
548
|
handleClickPdf: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
|
522
549
|
handleClickEdit: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => void;
|
523
550
|
handleResetPrinter: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
|
@@ -540,7 +567,7 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
540
567
|
mergeTemplateList: (list: any[]) => any;
|
541
568
|
initCRM: (formatListResult: any) => Promise<void>;
|
542
569
|
init: () => Promise<boolean>;
|
543
|
-
registerShort: () => Promise<void>;
|
570
|
+
registerShort: (obj?: any) => Promise<void>;
|
544
571
|
handleClickBtn: (visible?: boolean) => Promise<false | undefined>;
|
545
572
|
reformatPrintParams: () => void;
|
546
573
|
verifiySuccess: (token: string) => void;
|
@@ -557,6 +584,7 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
557
584
|
NCheckbox: any;
|
558
585
|
PrintOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
559
586
|
ChevronDownSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
587
|
+
ArrowForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
560
588
|
ArrowForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
561
589
|
SettingsOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
562
590
|
IdentityVerification: import("vue").DefineComponent<{
|
@@ -838,11 +866,18 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
838
866
|
buttonProps: {};
|
839
867
|
showMaxHeight: null;
|
840
868
|
initLoadPrintParams: boolean;
|
869
|
+
showPreviewDataList: boolean;
|
841
870
|
};
|
842
871
|
};
|
843
872
|
svrUpdateIp: {
|
844
873
|
type: StringConstructor;
|
845
874
|
};
|
875
|
+
apptype: {
|
876
|
+
type: StringConstructor;
|
877
|
+
};
|
878
|
+
uuid: {
|
879
|
+
type: StringConstructor;
|
880
|
+
};
|
846
881
|
hidePreviewBtns: {
|
847
882
|
type: StringConstructor;
|
848
883
|
};
|
@@ -973,6 +1008,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
973
1008
|
svrUpdateIp: {
|
974
1009
|
type: StringConstructor;
|
975
1010
|
};
|
1011
|
+
apptype: {
|
1012
|
+
type: StringConstructor;
|
1013
|
+
};
|
1014
|
+
uuid: {
|
1015
|
+
type: StringConstructor;
|
1016
|
+
};
|
976
1017
|
hidePreviewBtns: {
|
977
1018
|
type: StringConstructor;
|
978
1019
|
};
|
@@ -1090,6 +1131,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
1090
1131
|
svrUpdateIp: {
|
1091
1132
|
type: StringConstructor;
|
1092
1133
|
};
|
1134
|
+
apptype: {
|
1135
|
+
type: StringConstructor;
|
1136
|
+
};
|
1137
|
+
uuid: {
|
1138
|
+
type: StringConstructor;
|
1139
|
+
};
|
1093
1140
|
hidePreviewBtns: {
|
1094
1141
|
type: StringConstructor;
|
1095
1142
|
};
|
@@ -1439,6 +1486,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
1439
1486
|
svrUpdateIp: {
|
1440
1487
|
type: StringConstructor;
|
1441
1488
|
};
|
1489
|
+
apptype: {
|
1490
|
+
type: StringConstructor;
|
1491
|
+
};
|
1492
|
+
uuid: {
|
1493
|
+
type: StringConstructor;
|
1494
|
+
};
|
1442
1495
|
hidePreviewBtns: {
|
1443
1496
|
type: StringConstructor;
|
1444
1497
|
};
|
@@ -1577,6 +1630,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
1577
1630
|
svrUpdateIp: {
|
1578
1631
|
type: StringConstructor;
|
1579
1632
|
};
|
1633
|
+
apptype: {
|
1634
|
+
type: StringConstructor;
|
1635
|
+
};
|
1636
|
+
uuid: {
|
1637
|
+
type: StringConstructor;
|
1638
|
+
};
|
1580
1639
|
hidePreviewBtns: {
|
1581
1640
|
type: StringConstructor;
|
1582
1641
|
};
|
@@ -1592,6 +1651,7 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
1592
1651
|
emits: (event: "success" | "error" | "cancel" | "clickoutside" | "saveOuterPrint", ...args: any[]) => void;
|
1593
1652
|
directPrint: () => Promise<void>;
|
1594
1653
|
handleShortcutStartAndStop: (status: "start" | "stop") => void;
|
1654
|
+
registerShort: (obj: any) => void;
|
1595
1655
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("success" | "error" | "cancel" | "clickoutside" | "saveOuterPrint")[], "success" | "error" | "cancel" | "clickoutside" | "saveOuterPrint", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1596
1656
|
printParams: {
|
1597
1657
|
type: import("vue").PropType<import("../../shared/types").AnyObject[]>;
|
@@ -1702,6 +1762,12 @@ declare const ButtonPrint: SFCWithInstall<import("vue").DefineComponent<{
|
|
1702
1762
|
svrUpdateIp: {
|
1703
1763
|
type: StringConstructor;
|
1704
1764
|
};
|
1765
|
+
apptype: {
|
1766
|
+
type: StringConstructor;
|
1767
|
+
};
|
1768
|
+
uuid: {
|
1769
|
+
type: StringConstructor;
|
1770
|
+
};
|
1705
1771
|
hidePreviewBtns: {
|
1706
1772
|
type: StringConstructor;
|
1707
1773
|
};
|
@@ -114,6 +114,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
114
114
|
svrUpdateIp: {
|
115
115
|
type: StringConstructor;
|
116
116
|
};
|
117
|
+
apptype: {
|
118
|
+
type: StringConstructor;
|
119
|
+
};
|
120
|
+
uuid: {
|
121
|
+
type: StringConstructor;
|
122
|
+
};
|
117
123
|
hidePreviewBtns: {
|
118
124
|
type: StringConstructor;
|
119
125
|
};
|
@@ -234,6 +240,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
234
240
|
svrUpdateIp: {
|
235
241
|
type: StringConstructor;
|
236
242
|
};
|
243
|
+
apptype: {
|
244
|
+
type: StringConstructor;
|
245
|
+
};
|
246
|
+
uuid: {
|
247
|
+
type: StringConstructor;
|
248
|
+
};
|
237
249
|
hidePreviewBtns: {
|
238
250
|
type: StringConstructor;
|
239
251
|
};
|
@@ -346,11 +358,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
346
358
|
buttonProps: {};
|
347
359
|
showMaxHeight: null;
|
348
360
|
initLoadPrintParams: boolean;
|
361
|
+
showPreviewDataList: boolean;
|
349
362
|
};
|
350
363
|
};
|
351
364
|
svrUpdateIp: {
|
352
365
|
type: StringConstructor;
|
353
366
|
};
|
367
|
+
apptype: {
|
368
|
+
type: StringConstructor;
|
369
|
+
};
|
370
|
+
uuid: {
|
371
|
+
type: StringConstructor;
|
372
|
+
};
|
354
373
|
hidePreviewBtns: {
|
355
374
|
type: StringConstructor;
|
356
375
|
};
|
@@ -465,11 +484,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
465
484
|
buttonProps: {};
|
466
485
|
showMaxHeight: null;
|
467
486
|
initLoadPrintParams: boolean;
|
487
|
+
showPreviewDataList: boolean;
|
468
488
|
};
|
469
489
|
};
|
470
490
|
svrUpdateIp: {
|
471
491
|
type: StringConstructor;
|
472
492
|
};
|
493
|
+
apptype: {
|
494
|
+
type: StringConstructor;
|
495
|
+
};
|
496
|
+
uuid: {
|
497
|
+
type: StringConstructor;
|
498
|
+
};
|
473
499
|
hidePreviewBtns: {
|
474
500
|
type: StringConstructor;
|
475
501
|
};
|
@@ -499,6 +525,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
499
525
|
showMaxHeight: import("vue").ComputedRef<any>;
|
500
526
|
printAllFormatIds: import("vue").ComputedRef<any>;
|
501
527
|
positionElement: import("vue").ComputedRef<any>;
|
528
|
+
showPreviewDataList: import("vue").ComputedRef<any>;
|
502
529
|
printAllShortcut: import("vue").ComputedRef<any>;
|
503
530
|
showSettingItems: import("vue").ComputedRef<AnyObject[]>;
|
504
531
|
isSelectedAll: import("vue").WritableComputedRef<boolean>;
|
@@ -517,13 +544,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
517
544
|
callLocalServicesCancelCb: (res: unknown) => void;
|
518
545
|
prevFnError: (type: string) => void;
|
519
546
|
getPrintParams: () => string;
|
520
|
-
getOnceParams: (curPrintParamList: any[] | undefined, templateCode: string) => string;
|
547
|
+
getOnceParams: (curPrintParamList: any[] | undefined, templateCode: string, name?: string | undefined) => string;
|
521
548
|
handleClickPrintAll: () => void;
|
522
549
|
toggleExpandLoading: (isLoading: boolean, formatId?: string | undefined) => void;
|
523
550
|
getCurrentLoading: () => any;
|
524
551
|
handleOneTypePrint: (templateCode: string, templateId: string, formatId: string, isOuterClick: boolean) => void;
|
525
552
|
handleClickPrint: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string, printToParam?: never[], needContinuePrint?: boolean | undefined) => Promise<void>;
|
526
|
-
handleClickPreview: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
|
553
|
+
handleClickPreview: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string, name?: string | undefined) => Promise<void>;
|
527
554
|
handleClickPdf: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
|
528
555
|
handleClickEdit: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => void;
|
529
556
|
handleResetPrinter: (curPrintParamList: any[] | undefined, templateCode: string, templateId: string, formatId: string) => Promise<void>;
|
@@ -546,7 +573,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
546
573
|
mergeTemplateList: (list: any[]) => any;
|
547
574
|
initCRM: (formatListResult: any) => Promise<void>;
|
548
575
|
init: () => Promise<boolean>;
|
549
|
-
registerShort: () => Promise<void>;
|
576
|
+
registerShort: (obj?: any) => Promise<void>;
|
550
577
|
handleClickBtn: (visible?: boolean) => Promise<false | undefined>;
|
551
578
|
reformatPrintParams: () => void;
|
552
579
|
verifiySuccess: (token: string) => void;
|
@@ -563,6 +590,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
563
590
|
NCheckbox: any;
|
564
591
|
PrintOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
565
592
|
ChevronDownSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
593
|
+
ArrowForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
566
594
|
ArrowForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
567
595
|
SettingsOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
568
596
|
IdentityVerification: import("vue").DefineComponent<{
|
@@ -844,11 +872,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
844
872
|
buttonProps: {};
|
845
873
|
showMaxHeight: null;
|
846
874
|
initLoadPrintParams: boolean;
|
875
|
+
showPreviewDataList: boolean;
|
847
876
|
};
|
848
877
|
};
|
849
878
|
svrUpdateIp: {
|
850
879
|
type: StringConstructor;
|
851
880
|
};
|
881
|
+
apptype: {
|
882
|
+
type: StringConstructor;
|
883
|
+
};
|
884
|
+
uuid: {
|
885
|
+
type: StringConstructor;
|
886
|
+
};
|
852
887
|
hidePreviewBtns: {
|
853
888
|
type: StringConstructor;
|
854
889
|
};
|
@@ -979,6 +1014,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
979
1014
|
svrUpdateIp: {
|
980
1015
|
type: StringConstructor;
|
981
1016
|
};
|
1017
|
+
apptype: {
|
1018
|
+
type: StringConstructor;
|
1019
|
+
};
|
1020
|
+
uuid: {
|
1021
|
+
type: StringConstructor;
|
1022
|
+
};
|
982
1023
|
hidePreviewBtns: {
|
983
1024
|
type: StringConstructor;
|
984
1025
|
};
|
@@ -1096,6 +1137,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1096
1137
|
svrUpdateIp: {
|
1097
1138
|
type: StringConstructor;
|
1098
1139
|
};
|
1140
|
+
apptype: {
|
1141
|
+
type: StringConstructor;
|
1142
|
+
};
|
1143
|
+
uuid: {
|
1144
|
+
type: StringConstructor;
|
1145
|
+
};
|
1099
1146
|
hidePreviewBtns: {
|
1100
1147
|
type: StringConstructor;
|
1101
1148
|
};
|
@@ -1445,6 +1492,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1445
1492
|
svrUpdateIp: {
|
1446
1493
|
type: StringConstructor;
|
1447
1494
|
};
|
1495
|
+
apptype: {
|
1496
|
+
type: StringConstructor;
|
1497
|
+
};
|
1498
|
+
uuid: {
|
1499
|
+
type: StringConstructor;
|
1500
|
+
};
|
1448
1501
|
hidePreviewBtns: {
|
1449
1502
|
type: StringConstructor;
|
1450
1503
|
};
|
@@ -1586,6 +1639,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1586
1639
|
svrUpdateIp: {
|
1587
1640
|
type: StringConstructor;
|
1588
1641
|
};
|
1642
|
+
apptype: {
|
1643
|
+
type: StringConstructor;
|
1644
|
+
};
|
1645
|
+
uuid: {
|
1646
|
+
type: StringConstructor;
|
1647
|
+
};
|
1589
1648
|
hidePreviewBtns: {
|
1590
1649
|
type: StringConstructor;
|
1591
1650
|
};
|
@@ -1601,6 +1660,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1601
1660
|
emits: (event: "success" | "error" | "cancel" | "clickoutside" | "saveOuterPrint", ...args: any[]) => void;
|
1602
1661
|
directPrint: () => Promise<void>;
|
1603
1662
|
handleShortcutStartAndStop: (status: 'start' | 'stop') => void;
|
1663
|
+
registerShort: (obj: any) => void;
|
1604
1664
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("success" | "error" | "cancel" | "clickoutside" | "saveOuterPrint")[], "success" | "error" | "cancel" | "clickoutside" | "saveOuterPrint", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1605
1665
|
printParams: {
|
1606
1666
|
type: PropType<AnyObject[]>;
|
@@ -1714,6 +1774,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1714
1774
|
svrUpdateIp: {
|
1715
1775
|
type: StringConstructor;
|
1716
1776
|
};
|
1777
|
+
apptype: {
|
1778
|
+
type: StringConstructor;
|
1779
|
+
};
|
1780
|
+
uuid: {
|
1781
|
+
type: StringConstructor;
|
1782
|
+
};
|
1717
1783
|
hidePreviewBtns: {
|
1718
1784
|
type: StringConstructor;
|
1719
1785
|
};
|
@@ -154,6 +154,12 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
154
154
|
svrUpdateIp: {
|
155
155
|
type: String
|
156
156
|
},
|
157
|
+
apptype: {
|
158
|
+
type: String
|
159
|
+
},
|
160
|
+
uuid: {
|
161
|
+
type: String
|
162
|
+
},
|
157
163
|
hidePreviewBtns: {
|
158
164
|
type: String
|
159
165
|
}
|
@@ -191,9 +197,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
191
197
|
var _a;
|
192
198
|
(_a = printComponentRef.value) == null ? void 0 : _a.handleShortcutStartAndStop(status);
|
193
199
|
};
|
200
|
+
const registerShort = (obj) => {
|
201
|
+
var _a;
|
202
|
+
(_a = printComponentRef.value) == null ? void 0 : _a.registerShort(obj);
|
203
|
+
};
|
194
204
|
expose({
|
195
205
|
directPrint,
|
196
|
-
handleShortcutStartAndStop
|
206
|
+
handleShortcutStartAndStop,
|
207
|
+
registerShort
|
197
208
|
});
|
198
209
|
return (_ctx, _cache) => {
|
199
210
|
return openBlock(), createBlock(resolveDynamicComponent(unref(isComponent)), mergeProps({
|