cnhis-design-vue 3.3.1-beta.3 → 3.3.1-beta.44
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/ai-chat/index.d.ts +289 -68
- package/es/components/ai-chat/src/Index.vue.d.ts +289 -68
- package/es/components/ai-chat/src/Index.vue2.js +1 -1
- package/es/components/ai-chat/src/api/index.d.ts +5 -3
- package/es/components/ai-chat/src/api/index.js +1 -1
- package/es/components/ai-chat/src/components/ChatAudio.vue.d.ts +9 -15
- package/es/components/ai-chat/src/components/ChatAudio.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatBI.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatBI.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatCard.js +1 -1
- package/es/components/ai-chat/src/components/ChatFooter.vue.d.ts +46 -55
- package/es/components/ai-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatMain.js +1 -1
- package/es/components/ai-chat/src/components/ChatMainDefault.js +1 -0
- package/es/components/ai-chat/src/components/ChatPatient.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatPatient.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatPrompt.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatPrompt.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatRight.vue.d.ts +6 -5
- package/es/components/ai-chat/src/components/ChatRight.vue2.js +1 -1
- package/es/components/ai-chat/src/components/card/JsonCard.js +1 -1
- package/es/components/ai-chat/src/components/{card/SelectIcon.d.ts → message-render/CardRender.d.ts} +9 -7
- package/es/components/ai-chat/src/components/message-render/CardRender.js +1 -0
- package/es/components/ai-chat/src/components/message-render/FormRender.d.ts +16 -0
- package/es/components/ai-chat/src/components/message-render/FormRender.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.d.ts +36 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue2.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.d.ts +105 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue2.js +1 -0
- package/es/components/ai-chat/src/components/svgs/AddIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/AudioIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/KeyboardIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/MicroPhone.vue.js +1 -0
- package/es/components/ai-chat/src/hooks/index.d.ts +2 -0
- package/es/components/ai-chat/src/hooks/index.js +1 -0
- package/es/components/ai-chat/src/hooks/useChartAudioContext.d.ts +18 -0
- package/es/components/ai-chat/src/hooks/useChartAudioContext.js +1 -0
- package/es/components/ai-chat/src/hooks/useData.d.ts +77 -0
- package/es/components/ai-chat/src/hooks/useData.js +1 -0
- package/es/components/ai-chat/src/hooks/useFooterContext.d.ts +38 -0
- package/es/components/ai-chat/src/hooks/useFooterContext.js +1 -0
- package/es/components/ai-chat/src/hooks/useProgram.d.ts +12 -4
- package/es/components/ai-chat/src/hooks/useProgram.js +1 -1
- package/es/components/ai-chat/src/hooks/useSSE.d.ts +9 -0
- package/es/components/ai-chat/src/hooks/useSSE.js +1 -0
- package/es/components/ai-chat/src/hooks/useWebsocket.d.ts +3 -1
- package/es/components/ai-chat/src/hooks/useWebsocket.js +1 -1
- package/es/components/ai-chat/src/types/index.d.ts +1 -3
- package/es/components/ai-chat/src/types/index.js +1 -1
- package/es/components/ai-chat/src/utils/index.d.ts +6 -1
- package/es/components/ai-chat/src/utils/index.js +1 -1
- package/es/components/ai-chat/style/index.css +1 -1
- package/es/components/audio-sdk/index.d.ts +274 -2
- package/es/components/audio-sdk/index.js +1 -1
- package/es/components/audio-sdk/src/Index.vue.d.ts +274 -0
- package/es/components/audio-sdk/src/Index.vue.js +1 -0
- package/es/components/audio-sdk/src/Index.vue2.js +1 -0
- package/es/components/audio-sdk/src/audioSDK.d.ts +59 -26
- package/es/components/audio-sdk/src/audioSDK.js +1 -1
- package/es/components/audio-sdk/src/components/form.vue.d.ts +51 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +100 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue.js +1 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue2.js +1 -0
- package/es/components/audio-sdk/src/components/recording.vue.d.ts +53 -4
- package/es/components/audio-sdk/src/components/recording.vue2.js +1 -1
- package/es/components/audio-sdk/src/utils/index.d.ts +7 -0
- package/es/components/audio-sdk/src/utils/index.js +1 -0
- package/es/components/audio-sdk/src/utils/recordingModal.d.ts +7 -4
- package/es/components/audio-sdk/src/utils/recordingModal.js +1 -1
- package/es/components/audio-sdk/style/index.css +1 -1
- package/es/components/button-print/index.d.ts +30 -0
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +30 -0
- package/es/components/button-print/src/ButtonPrint.vue2.js +1 -1
- package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +9 -0
- package/es/components/button-print/src/components/NewPrintComponent.vue2.js +1 -1
- package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +9 -0
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -1
- package/es/components/button-print/src/utils/print.d.ts +2 -2
- package/es/components/button-print/src/utils/print.js +1 -1
- package/es/components/calendar/index.d.ts +126 -3
- package/es/components/calendar/src/Calendar.vue.d.ts +126 -2
- package/es/components/callback/src/components/render/popupMaps.d.ts +7 -1
- package/es/components/card-reader-sdk/src/cardReaderSDK.d.ts +4 -8
- package/es/components/card-reader-sdk/src/cardReaderSDK.js +1 -1
- package/es/components/card-render/src/components/Button.vue.d.ts +3 -0
- package/es/components/card-render/src/components/Button.vue2.js +1 -1
- package/es/components/card-render/src/components/ScaleView.vue.d.ts +39 -0
- package/es/components/card-render/src/components/ScaleView.vue.js +1 -0
- package/es/components/card-render/src/components/ScaleView.vue2.js +1 -0
- package/es/components/card-render/src/components/Table.vue.d.ts +104 -0
- package/es/components/card-render/src/components/Table.vue.js +1 -0
- package/es/components/card-render/src/components/Table.vue2.js +1 -0
- package/es/components/card-render/src/components/Text.vue.d.ts +1 -0
- package/es/components/card-render/src/components/Text.vue2.js +1 -1
- package/es/components/card-render/src/components/index.d.ts +139 -0
- package/es/components/card-render/src/components/index.js +1 -1
- package/es/components/card-render/src/constants/index.d.ts +4 -1
- package/es/components/card-render/src/constants/index.js +1 -1
- package/es/components/card-render/style/index.css +1 -1
- package/es/components/date-picker/src/DatePicker.vue2.js +1 -1
- package/es/components/fabric-chart/index.d.ts +6 -2
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +6 -2
- package/es/components/fabric-chart/src/FabricChart.vue2.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useOther.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +1 -1
- package/es/components/field-editor/index.d.ts +7 -1
- package/es/components/field-editor/src/FieldEditor.vue.d.ts +7 -1
- package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
- package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
- package/es/components/form-config/index.d.ts +73 -13
- package/es/components/form-config/src/FormConfig.vue.d.ts +73 -13
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +7 -1
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +45 -9
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +15 -3
- package/es/components/form-render/index.d.ts +7 -1
- package/es/components/form-render/index.js +1 -1
- package/es/components/form-render/src/FormRender.vue.d.ts +7 -1
- package/es/components/form-render/src/FormRender.vue2.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +7 -1
- package/es/components/form-render/src/components/renderer/date.d.ts +4 -2
- package/es/components/form-render/src/components/renderer/date.js +1 -1
- package/es/components/form-render/src/components/renderer/formItem.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/formItem.js +1 -1
- package/es/components/form-render/src/components/renderer/input.d.ts +5 -0
- package/es/components/form-render/src/components/renderer/input.js +1 -1
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.js +1 -1
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +14 -1
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +14 -1
- package/es/components/form-render/src/components/renderer/searchCascade.js +1 -1
- package/es/components/form-render/src/components/renderer/select.d.ts +5 -0
- package/es/components/form-render/src/components/renderer/select.js +1 -1
- package/es/components/form-render/src/components/tooltipMessage.vue.d.ts +12 -1
- package/es/components/form-render/src/components/tooltipMessage.vue2.js +1 -1
- package/es/components/form-render/src/hooks/useBusinessBinding.js +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
- package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +4 -0
- package/es/components/form-render/src/hooks/useLowCodeReactions.js +1 -1
- package/es/components/form-render/src/types/fieldItem.d.ts +9 -3
- package/es/components/form-render/src/types/index.d.ts +2 -0
- package/es/components/form-render/src/utils/index.d.ts +1 -0
- package/es/components/form-render/src/utils/index.js +1 -1
- package/es/components/form-render/style/index.css +1 -1
- package/es/components/guide/src/renderer.d.ts +2 -2
- package/es/components/iho-chat/index.d.ts +206 -4
- package/es/components/iho-chat/src/Index.vue.d.ts +206 -4
- package/es/components/iho-chat/src/api/index.d.ts +1 -0
- package/es/components/iho-chat/src/api/index.js +1 -1
- package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +8 -0
- package/es/components/iho-chat/src/components/ChatAdd.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatFile.vue.d.ts +11 -3
- package/es/components/iho-chat/src/components/ChatFile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +7 -0
- package/es/components/iho-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +96 -2
- package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +77 -0
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +71 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSearch.vue.d.ts +8 -2
- package/es/components/iho-chat/src/components/ChatSearch.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +10 -0
- package/es/components/iho-chat/src/components/ChatSet.vue2.js +1 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue.d.ts +70 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue2.js +1 -1
- package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +7 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +3 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +3 -1
- package/es/components/iho-chat/src/components/SiderList.vue2.js +1 -1
- package/es/components/iho-chat/src/constants/index.d.ts +9 -2
- package/es/components/iho-chat/src/constants/index.js +1 -1
- package/es/components/iho-chat/src/hooks/useSearchPatientList.d.ts +11 -0
- package/es/components/iho-chat/src/hooks/useSearchPatientList.js +1 -0
- package/es/components/iho-chat/src/utils/chatSock.js +1 -1
- package/es/components/iho-chat/src/utils/index.d.ts +6 -0
- package/es/components/iho-chat/src/utils/index.js +1 -1
- package/es/components/iho-chat/style/index.css +1 -1
- package/es/components/iho-table/index.d.ts +3 -0
- package/es/components/iho-table/index.js +1 -1
- package/es/components/iho-table/src/IhoTable.vue2.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +3 -3
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.js +1 -1
- package/es/components/iho-table/src/hooks/useTablePlugin.js +1 -1
- package/es/components/iho-table/src/plugins/filterRenderPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/headerPlugin/index.d.ts +1 -1
- package/es/components/iho-table/src/plugins/headerPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/highLightSetPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/index.d.ts +79 -3
- package/es/components/iho-table/src/plugins/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useSelectOption.d.ts +7 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useSelectOption.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.d.ts +1 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/stickyFixedPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/varialbleHeightPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/verticalTablePlugin/src/utils.js +1 -1
- package/es/components/iho-table/src/types/index.d.ts +1 -0
- package/es/components/iho-table/src/types/pluginType.d.ts +2 -2
- package/es/components/iho-table/src/utils/index.js +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.d.ts +2 -1
- package/es/components/index.js +1 -1
- package/es/components/info-header/index.d.ts +24 -2
- package/es/components/info-header/src/InfoHeader.vue.d.ts +24 -2
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +2 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +2 -0
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +9 -1
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +7 -1
- package/es/components/scale-view/index.d.ts +17 -3
- package/es/components/scale-view/src/ScaleView.vue.d.ts +17 -3
- package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
- package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +1 -1
- package/es/components/scale-view/src/hooks/scaleview-computed.js +1 -1
- package/es/components/scale-view/src/hooks/scaleview-init.d.ts +3 -1
- package/es/components/scale-view/src/hooks/scaleview-init.js +1 -1
- package/es/components/scale-view/src/hooks/scaleview-props.d.ts +4 -0
- package/es/components/scale-view/src/hooks/scaleview-props.js +1 -1
- package/es/components/scale-view/src/hooks/use-component.d.ts +1 -2189
- package/es/components/shortcut-provider/src/ShortcutProvider.vue2.js +1 -1
- package/es/components/shortcut-setter/index.d.ts +15 -3
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +15 -3
- package/es/components/steps-wheel/index.d.ts +18 -0
- package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +18 -0
- package/es/components/steps-wheel/src/StepsWheel.vue2.js +1 -1
- package/es/shared/assets/img/use.png.js +1 -1
- package/es/shared/components/ArrowIcon/ArrowIcon.vue.js +1 -0
- package/es/shared/components/ArrowIcon/index.d.ts +2 -0
- package/es/shared/components/ArrowIcon/index.js +1 -0
- package/es/shared/components/DateIcon/DateIcon.vue.js +1 -0
- package/es/shared/components/DateIcon/index.d.ts +2 -0
- package/es/shared/components/DateIcon/index.js +1 -0
- package/es/shared/hooks/useLevelSearchCascader.d.ts +1 -0
- package/es/shared/hooks/useLevelSearchCascader.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +5 -3
- package/es/components/ai-chat/src/components/ChatMainInner.js +0 -1
- package/es/components/ai-chat/src/components/card/SelectIcon.js +0 -1
- /package/es/components/ai-chat/src/components/{ChatMainInner.d.ts → ChatMainDefault.d.ts} +0 -0
@@ -328,6 +328,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
328
328
|
beforeUnmount(el: any): void;
|
329
329
|
};
|
330
330
|
formatTime: typeof import("./utils").formatTime;
|
331
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
332
|
+
getRoleName: typeof import("./utils").getRoleName;
|
331
333
|
STATUS: typeof import("./constants").STATUS;
|
332
334
|
CDatePicker: import("../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
333
335
|
updateUnchangedValue: {
|
@@ -751,6 +753,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
751
753
|
remark: import("vue").Ref<string>;
|
752
754
|
currentTab: import("vue").Ref<AnyObject[]>;
|
753
755
|
breadcrumbList: import("vue").Ref<AnyObject[]>;
|
756
|
+
breadcrumbRef: import("vue").Ref<any>;
|
754
757
|
userList: import("vue").Ref<AnyObject[]>;
|
755
758
|
handleInput: () => void;
|
756
759
|
_disabledIds: import("vue").ComputedRef<any[]>;
|
@@ -759,18 +762,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
759
762
|
name: any;
|
760
763
|
avatar: any;
|
761
764
|
chatType: any;
|
765
|
+
roleInfo: any;
|
762
766
|
}[]>;
|
763
767
|
friends: import("vue").ComputedRef<{
|
764
768
|
id: any;
|
765
769
|
name: any;
|
766
770
|
avatar: any;
|
767
771
|
chatType: any;
|
772
|
+
roleInfo: any;
|
768
773
|
}[]>;
|
769
774
|
groups: import("vue").ComputedRef<{
|
770
775
|
id: any;
|
771
776
|
name: any;
|
772
777
|
avatar: any;
|
773
778
|
chatType: any;
|
779
|
+
roleInfo: any;
|
774
780
|
}[]>;
|
775
781
|
checkedIds: import("vue").ComputedRef<any[]>;
|
776
782
|
btnDisabled: import("vue").ComputedRef<boolean>;
|
@@ -779,6 +785,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
779
785
|
currentTabKey: import("vue").ComputedRef<any>;
|
780
786
|
showAllCheckbox: import("vue").ComputedRef<boolean>;
|
781
787
|
getOrgList: () => Promise<void>;
|
788
|
+
handleSearchInput: () => void;
|
782
789
|
setUserTotal: (tree: AnyObject[]) => void;
|
783
790
|
getDisabled: (id: string | number) => boolean;
|
784
791
|
handleClickCheckbox: (option: AnyObject) => Promise<void>;
|
@@ -808,6 +815,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
808
815
|
ChevronBackOutline: 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<{}>>, {}>;
|
809
816
|
ChevronForwardOutline: 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<{}>>, {}>;
|
810
817
|
last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
|
818
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
819
|
+
getRoleName: typeof import("./utils").getRoleName;
|
811
820
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
812
821
|
title: {
|
813
822
|
type: StringConstructor;
|
@@ -841,6 +850,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
841
850
|
mode: string;
|
842
851
|
disabledIds: string[];
|
843
852
|
}>;
|
853
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
854
|
+
getRoleName: typeof import("./utils").getRoleName;
|
844
855
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
845
856
|
ChatFile: import("vue").DefineComponent<{
|
846
857
|
type: {
|
@@ -913,8 +924,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
913
924
|
}[];
|
914
925
|
resetAndSearch: () => void;
|
915
926
|
title: import("vue").ComputedRef<"聊天图片" | "聊天文件">;
|
916
|
-
getDetail: (item: AnyObject) => string;
|
917
|
-
getFileType: (item: AnyObject) => any;
|
918
927
|
NModal: any;
|
919
928
|
NImageGroup: any;
|
920
929
|
NImage: any;
|
@@ -925,6 +934,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
925
934
|
OpenOutline: 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<{}>>, {}>;
|
926
935
|
DownloadOutline: 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<{}>>, {}>;
|
927
936
|
downloadFile: typeof import("./utils").downloadFile;
|
937
|
+
getFileDetails: typeof import("./utils").getFileDetails;
|
938
|
+
getFileType: typeof import("./utils").getFileType;
|
939
|
+
getDetail: typeof import("./utils").getDetail;
|
928
940
|
ChatAdd: import("vue").DefineComponent<{
|
929
941
|
title: {
|
930
942
|
type: StringConstructor;
|
@@ -1022,6 +1034,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1022
1034
|
remark: import("vue").Ref<string>;
|
1023
1035
|
currentTab: import("vue").Ref<AnyObject[]>;
|
1024
1036
|
breadcrumbList: import("vue").Ref<AnyObject[]>;
|
1037
|
+
breadcrumbRef: import("vue").Ref<any>;
|
1025
1038
|
userList: import("vue").Ref<AnyObject[]>;
|
1026
1039
|
handleInput: () => void;
|
1027
1040
|
_disabledIds: import("vue").ComputedRef<any[]>;
|
@@ -1030,18 +1043,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
1030
1043
|
name: any;
|
1031
1044
|
avatar: any;
|
1032
1045
|
chatType: any;
|
1046
|
+
roleInfo: any;
|
1033
1047
|
}[]>;
|
1034
1048
|
friends: import("vue").ComputedRef<{
|
1035
1049
|
id: any;
|
1036
1050
|
name: any;
|
1037
1051
|
avatar: any;
|
1038
1052
|
chatType: any;
|
1053
|
+
roleInfo: any;
|
1039
1054
|
}[]>;
|
1040
1055
|
groups: import("vue").ComputedRef<{
|
1041
1056
|
id: any;
|
1042
1057
|
name: any;
|
1043
1058
|
avatar: any;
|
1044
1059
|
chatType: any;
|
1060
|
+
roleInfo: any;
|
1045
1061
|
}[]>;
|
1046
1062
|
checkedIds: import("vue").ComputedRef<any[]>;
|
1047
1063
|
btnDisabled: import("vue").ComputedRef<boolean>;
|
@@ -1050,6 +1066,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1050
1066
|
currentTabKey: import("vue").ComputedRef<any>;
|
1051
1067
|
showAllCheckbox: import("vue").ComputedRef<boolean>;
|
1052
1068
|
getOrgList: () => Promise<void>;
|
1069
|
+
handleSearchInput: () => void;
|
1053
1070
|
setUserTotal: (tree: AnyObject[]) => void;
|
1054
1071
|
getDisabled: (id: string | number) => boolean;
|
1055
1072
|
handleClickCheckbox: (option: AnyObject) => Promise<void>;
|
@@ -1079,6 +1096,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1079
1096
|
ChevronBackOutline: 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<{}>>, {}>;
|
1080
1097
|
ChevronForwardOutline: 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<{}>>, {}>;
|
1081
1098
|
last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
|
1099
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
1100
|
+
getRoleName: typeof import("./utils").getRoleName;
|
1082
1101
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1083
1102
|
title: {
|
1084
1103
|
type: StringConstructor;
|
@@ -1167,6 +1186,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1167
1186
|
};
|
1168
1187
|
isForward: boolean;
|
1169
1188
|
};
|
1189
|
+
cssVars: import("vue").ComputedRef<AnyObject>;
|
1170
1190
|
recordRef: import("vue").Ref<any>;
|
1171
1191
|
recordList: import("vue").Ref<AnyObject[]>;
|
1172
1192
|
keyword: import("vue").Ref<any>;
|
@@ -1191,10 +1211,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
1191
1211
|
NModal: any;
|
1192
1212
|
NTag: any;
|
1193
1213
|
NInput: any;
|
1214
|
+
NIcon: any;
|
1194
1215
|
NSelect: any;
|
1195
1216
|
NAvatar: any;
|
1196
1217
|
NPopover: any;
|
1197
1218
|
NInputGroup: any;
|
1219
|
+
CallOutline: 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<{}>>, {}>;
|
1220
|
+
VideocamOutline: 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<{}>>, {}>;
|
1198
1221
|
DatePicker: import("../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
1199
1222
|
updateUnchangedValue: {
|
1200
1223
|
type: BooleanConstructor;
|
@@ -1324,12 +1347,78 @@ declare const _default: import("vue").DefineComponent<{
|
|
1324
1347
|
to: string | false | HTMLElement;
|
1325
1348
|
holidays: Date[];
|
1326
1349
|
}>>;
|
1350
|
+
isArray: {
|
1351
|
+
(value?: any): value is any[];
|
1352
|
+
<T_1>(value?: any): value is any[];
|
1353
|
+
};
|
1327
1354
|
formatTime: typeof import("./utils").formatTime;
|
1355
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
1356
|
+
getRoleName: typeof import("./utils").getRoleName;
|
1357
|
+
getFileDetails: typeof import("./utils").getFileDetails;
|
1358
|
+
getFileType: typeof import("./utils").getFileType;
|
1359
|
+
getDetail: typeof import("./utils").getDetail;
|
1360
|
+
showAudioAndVideoRecord: typeof import("./utils").showAudioAndVideoRecord;
|
1361
|
+
getForwardTitle: typeof import("./utils").getForwardTitle;
|
1362
|
+
simplifyMessage: typeof import("./utils").simplifyMessage;
|
1328
1363
|
MESSAGE_TYPE: typeof import("./constants").MESSAGE_TYPE;
|
1329
1364
|
emojis: {
|
1330
1365
|
default: string[][];
|
1331
1366
|
findEmoji(name: string): any;
|
1332
1367
|
};
|
1368
|
+
MessageEvent: import("vue").DefineComponent<{
|
1369
|
+
data: {
|
1370
|
+
type: PropType<AnyObject>;
|
1371
|
+
required: true;
|
1372
|
+
};
|
1373
|
+
}, {
|
1374
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1375
|
+
data: {
|
1376
|
+
type: PropType<AnyObject>;
|
1377
|
+
required: true;
|
1378
|
+
};
|
1379
|
+
}>> & {}>>;
|
1380
|
+
state: {
|
1381
|
+
orgId: string | number;
|
1382
|
+
currentSessionItem: AnyObject;
|
1383
|
+
id: string;
|
1384
|
+
userInfo: AnyObject;
|
1385
|
+
msgList: AnyObject[];
|
1386
|
+
currentMsg: AnyObject;
|
1387
|
+
isAppendMsg: boolean;
|
1388
|
+
sessionList: AnyObject[];
|
1389
|
+
isChangeSession: boolean;
|
1390
|
+
updateSessionItem: AnyObject;
|
1391
|
+
isUpdateSession: boolean;
|
1392
|
+
currentReferenceMsg: AnyObject | null;
|
1393
|
+
currentReEditMsg: AnyObject | null;
|
1394
|
+
showVideo: boolean;
|
1395
|
+
currentAVMsg: AnyObject;
|
1396
|
+
currentGroupUser: AnyObject[];
|
1397
|
+
showMultipleVideo: boolean;
|
1398
|
+
userDetail: {
|
1399
|
+
show: boolean;
|
1400
|
+
position: {
|
1401
|
+
x: number;
|
1402
|
+
y: number;
|
1403
|
+
};
|
1404
|
+
userId: string;
|
1405
|
+
info: AnyObject | null;
|
1406
|
+
};
|
1407
|
+
isForward: boolean;
|
1408
|
+
};
|
1409
|
+
setUserDetail: (event: MouseEvent, userDetail: AnyObject) => void;
|
1410
|
+
inviter: import("vue").Ref<any>;
|
1411
|
+
invitee: import("vue").Ref<any[]>;
|
1412
|
+
isValidJSON: (str: string) => boolean;
|
1413
|
+
getTask: (_id: string | number, arrRes: AnyObject[]) => () => Promise<unknown>;
|
1414
|
+
getEventContent: (data: AnyObject) => Promise<void>;
|
1415
|
+
NButton: any;
|
1416
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1417
|
+
data: {
|
1418
|
+
type: PropType<AnyObject>;
|
1419
|
+
required: true;
|
1420
|
+
};
|
1421
|
+
}>>, {}>;
|
1333
1422
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1334
1423
|
visible: {
|
1335
1424
|
type: BooleanConstructor;
|
@@ -1434,6 +1523,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1434
1523
|
remark: import("vue").Ref<string>;
|
1435
1524
|
currentTab: import("vue").Ref<AnyObject[]>;
|
1436
1525
|
breadcrumbList: import("vue").Ref<AnyObject[]>;
|
1526
|
+
breadcrumbRef: import("vue").Ref<any>;
|
1437
1527
|
userList: import("vue").Ref<AnyObject[]>;
|
1438
1528
|
handleInput: () => void;
|
1439
1529
|
_disabledIds: import("vue").ComputedRef<any[]>;
|
@@ -1442,18 +1532,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
1442
1532
|
name: any;
|
1443
1533
|
avatar: any;
|
1444
1534
|
chatType: any;
|
1535
|
+
roleInfo: any;
|
1445
1536
|
}[]>;
|
1446
1537
|
friends: import("vue").ComputedRef<{
|
1447
1538
|
id: any;
|
1448
1539
|
name: any;
|
1449
1540
|
avatar: any;
|
1450
1541
|
chatType: any;
|
1542
|
+
roleInfo: any;
|
1451
1543
|
}[]>;
|
1452
1544
|
groups: import("vue").ComputedRef<{
|
1453
1545
|
id: any;
|
1454
1546
|
name: any;
|
1455
1547
|
avatar: any;
|
1456
1548
|
chatType: any;
|
1549
|
+
roleInfo: any;
|
1457
1550
|
}[]>;
|
1458
1551
|
checkedIds: import("vue").ComputedRef<any[]>;
|
1459
1552
|
btnDisabled: import("vue").ComputedRef<boolean>;
|
@@ -1462,6 +1555,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1462
1555
|
currentTabKey: import("vue").ComputedRef<any>;
|
1463
1556
|
showAllCheckbox: import("vue").ComputedRef<boolean>;
|
1464
1557
|
getOrgList: () => Promise<void>;
|
1558
|
+
handleSearchInput: () => void;
|
1465
1559
|
setUserTotal: (tree: AnyObject[]) => void;
|
1466
1560
|
getDisabled: (id: string | number) => boolean;
|
1467
1561
|
handleClickCheckbox: (option: AnyObject) => Promise<void>;
|
@@ -1491,6 +1585,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1491
1585
|
ChevronBackOutline: 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<{}>>, {}>;
|
1492
1586
|
ChevronForwardOutline: 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<{}>>, {}>;
|
1493
1587
|
last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
|
1588
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
1589
|
+
getRoleName: typeof import("./utils").getRoleName;
|
1494
1590
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1495
1591
|
title: {
|
1496
1592
|
type: StringConstructor;
|
@@ -1595,6 +1691,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1595
1691
|
renderToolbar: ({ nodes }: import("naive-ui").ImageRenderToolbarProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
1596
1692
|
[key: string]: any;
|
1597
1693
|
}>[];
|
1694
|
+
formatImage: (obj: string | AnyObject, type: string) => any;
|
1598
1695
|
getHistoryRecord: () => Promise<void>;
|
1599
1696
|
handleSelectLabel: (event: MouseEvent, msgId: string) => void;
|
1600
1697
|
handleContextmenu: (event: MouseEvent, msgId: string) => Promise<void>;
|
@@ -1799,17 +1896,86 @@ declare const _default: import("vue").DefineComponent<{
|
|
1799
1896
|
};
|
1800
1897
|
isForward: boolean;
|
1801
1898
|
};
|
1899
|
+
cssVars: import("vue").ComputedRef<AnyObject>;
|
1802
1900
|
msgItem: import("vue").ComputedRef<AnyObject>;
|
1803
1901
|
msgList: import("vue").ComputedRef<any>;
|
1804
1902
|
NModal: any;
|
1805
1903
|
NAvatar: any;
|
1904
|
+
NIcon: any;
|
1905
|
+
isArray: {
|
1906
|
+
(value?: any): value is any[];
|
1907
|
+
<T_1>(value?: any): value is any[];
|
1908
|
+
};
|
1806
1909
|
formatTime: typeof import("./utils").formatTime;
|
1807
1910
|
getForwardTitle: typeof import("./utils").getForwardTitle;
|
1911
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
1912
|
+
getRoleName: typeof import("./utils").getRoleName;
|
1913
|
+
getFileDetails: typeof import("./utils").getFileDetails;
|
1914
|
+
getFileType: typeof import("./utils").getFileType;
|
1915
|
+
getDetail: typeof import("./utils").getDetail;
|
1916
|
+
showAudioAndVideoRecord: typeof import("./utils").showAudioAndVideoRecord;
|
1917
|
+
simplifyMessage: typeof import("./utils").simplifyMessage;
|
1808
1918
|
MESSAGE_TYPE: typeof import("./constants").MESSAGE_TYPE;
|
1809
1919
|
emojis: {
|
1810
1920
|
default: string[][];
|
1811
1921
|
findEmoji(name: string): any;
|
1812
1922
|
};
|
1923
|
+
MessageEvent: import("vue").DefineComponent<{
|
1924
|
+
data: {
|
1925
|
+
type: PropType<AnyObject>;
|
1926
|
+
required: true;
|
1927
|
+
};
|
1928
|
+
}, {
|
1929
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1930
|
+
data: {
|
1931
|
+
type: PropType<AnyObject>;
|
1932
|
+
required: true;
|
1933
|
+
};
|
1934
|
+
}>> & {}>>;
|
1935
|
+
state: {
|
1936
|
+
orgId: string | number;
|
1937
|
+
currentSessionItem: AnyObject;
|
1938
|
+
id: string;
|
1939
|
+
userInfo: AnyObject;
|
1940
|
+
msgList: AnyObject[];
|
1941
|
+
currentMsg: AnyObject;
|
1942
|
+
isAppendMsg: boolean;
|
1943
|
+
sessionList: AnyObject[];
|
1944
|
+
isChangeSession: boolean;
|
1945
|
+
updateSessionItem: AnyObject;
|
1946
|
+
isUpdateSession: boolean;
|
1947
|
+
currentReferenceMsg: AnyObject | null;
|
1948
|
+
currentReEditMsg: AnyObject | null;
|
1949
|
+
showVideo: boolean;
|
1950
|
+
currentAVMsg: AnyObject;
|
1951
|
+
currentGroupUser: AnyObject[];
|
1952
|
+
showMultipleVideo: boolean;
|
1953
|
+
userDetail: {
|
1954
|
+
show: boolean;
|
1955
|
+
position: {
|
1956
|
+
x: number;
|
1957
|
+
y: number;
|
1958
|
+
};
|
1959
|
+
userId: string;
|
1960
|
+
info: AnyObject | null;
|
1961
|
+
};
|
1962
|
+
isForward: boolean;
|
1963
|
+
};
|
1964
|
+
setUserDetail: (event: MouseEvent, userDetail: AnyObject) => void;
|
1965
|
+
inviter: import("vue").Ref<any>;
|
1966
|
+
invitee: import("vue").Ref<any[]>;
|
1967
|
+
isValidJSON: (str: string) => boolean;
|
1968
|
+
getTask: (_id: string | number, arrRes: AnyObject[]) => () => Promise<unknown>;
|
1969
|
+
getEventContent: (data: AnyObject) => Promise<void>;
|
1970
|
+
NButton: any;
|
1971
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1972
|
+
data: {
|
1973
|
+
type: PropType<AnyObject>;
|
1974
|
+
required: true;
|
1975
|
+
};
|
1976
|
+
}>>, {}>;
|
1977
|
+
CallOutline: 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<{}>>, {}>;
|
1978
|
+
VideocamOutline: 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<{}>>, {}>;
|
1813
1979
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1814
1980
|
id: {
|
1815
1981
|
type: StringConstructor;
|
@@ -2006,6 +2172,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2006
2172
|
remark: import("vue").Ref<string>;
|
2007
2173
|
currentTab: import("vue").Ref<AnyObject[]>;
|
2008
2174
|
breadcrumbList: import("vue").Ref<AnyObject[]>;
|
2175
|
+
breadcrumbRef: import("vue").Ref<any>;
|
2009
2176
|
userList: import("vue").Ref<AnyObject[]>;
|
2010
2177
|
handleInput: () => void;
|
2011
2178
|
_disabledIds: import("vue").ComputedRef<any[]>;
|
@@ -2014,18 +2181,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
2014
2181
|
name: any;
|
2015
2182
|
avatar: any;
|
2016
2183
|
chatType: any;
|
2184
|
+
roleInfo: any;
|
2017
2185
|
}[]>;
|
2018
2186
|
friends: import("vue").ComputedRef<{
|
2019
2187
|
id: any;
|
2020
2188
|
name: any;
|
2021
2189
|
avatar: any;
|
2022
2190
|
chatType: any;
|
2191
|
+
roleInfo: any;
|
2023
2192
|
}[]>;
|
2024
2193
|
groups: import("vue").ComputedRef<{
|
2025
2194
|
id: any;
|
2026
2195
|
name: any;
|
2027
2196
|
avatar: any;
|
2028
2197
|
chatType: any;
|
2198
|
+
roleInfo: any;
|
2029
2199
|
}[]>;
|
2030
2200
|
checkedIds: import("vue").ComputedRef<any[]>;
|
2031
2201
|
btnDisabled: import("vue").ComputedRef<boolean>;
|
@@ -2034,6 +2204,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2034
2204
|
currentTabKey: import("vue").ComputedRef<any>;
|
2035
2205
|
showAllCheckbox: import("vue").ComputedRef<boolean>;
|
2036
2206
|
getOrgList: () => Promise<void>;
|
2207
|
+
handleSearchInput: () => void;
|
2037
2208
|
setUserTotal: (tree: AnyObject[]) => void;
|
2038
2209
|
getDisabled: (id: string | number) => boolean;
|
2039
2210
|
handleClickCheckbox: (option: AnyObject) => Promise<void>;
|
@@ -2063,6 +2234,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
2063
2234
|
ChevronBackOutline: 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<{}>>, {}>;
|
2064
2235
|
ChevronForwardOutline: 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<{}>>, {}>;
|
2065
2236
|
last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
|
2237
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
2238
|
+
getRoleName: typeof import("./utils").getRoleName;
|
2066
2239
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2067
2240
|
title: {
|
2068
2241
|
type: StringConstructor;
|
@@ -2278,6 +2451,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2278
2451
|
remark: import("vue").Ref<string>;
|
2279
2452
|
currentTab: import("vue").Ref<AnyObject[]>;
|
2280
2453
|
breadcrumbList: import("vue").Ref<AnyObject[]>;
|
2454
|
+
breadcrumbRef: import("vue").Ref<any>;
|
2281
2455
|
userList: import("vue").Ref<AnyObject[]>;
|
2282
2456
|
handleInput: () => void;
|
2283
2457
|
_disabledIds: import("vue").ComputedRef<any[]>;
|
@@ -2286,18 +2460,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
2286
2460
|
name: any;
|
2287
2461
|
avatar: any;
|
2288
2462
|
chatType: any;
|
2463
|
+
roleInfo: any;
|
2289
2464
|
}[]>;
|
2290
2465
|
friends: import("vue").ComputedRef<{
|
2291
2466
|
id: any;
|
2292
2467
|
name: any;
|
2293
2468
|
avatar: any;
|
2294
2469
|
chatType: any;
|
2470
|
+
roleInfo: any;
|
2295
2471
|
}[]>;
|
2296
2472
|
groups: import("vue").ComputedRef<{
|
2297
2473
|
id: any;
|
2298
2474
|
name: any;
|
2299
2475
|
avatar: any;
|
2300
2476
|
chatType: any;
|
2477
|
+
roleInfo: any;
|
2301
2478
|
}[]>;
|
2302
2479
|
checkedIds: import("vue").ComputedRef<any[]>;
|
2303
2480
|
btnDisabled: import("vue").ComputedRef<boolean>;
|
@@ -2306,6 +2483,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2306
2483
|
currentTabKey: import("vue").ComputedRef<any>;
|
2307
2484
|
showAllCheckbox: import("vue").ComputedRef<boolean>;
|
2308
2485
|
getOrgList: () => Promise<void>;
|
2486
|
+
handleSearchInput: () => void;
|
2309
2487
|
setUserTotal: (tree: AnyObject[]) => void;
|
2310
2488
|
getDisabled: (id: string | number) => boolean;
|
2311
2489
|
handleClickCheckbox: (option: AnyObject) => Promise<void>;
|
@@ -2335,6 +2513,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
2335
2513
|
ChevronBackOutline: 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<{}>>, {}>;
|
2336
2514
|
ChevronForwardOutline: 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<{}>>, {}>;
|
2337
2515
|
last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
|
2516
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
2517
|
+
getRoleName: typeof import("./utils").getRoleName;
|
2338
2518
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2339
2519
|
title: {
|
2340
2520
|
type: StringConstructor;
|
@@ -2380,7 +2560,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
2380
2560
|
simplifyMessage: typeof import("./utils").simplifyMessage;
|
2381
2561
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2382
2562
|
ChatSearch: import("vue").DefineComponent<{}, {
|
2383
|
-
|
2563
|
+
userListRef: import("vue").Ref<any>;
|
2564
|
+
patientListRef: import("vue").Ref<any>;
|
2384
2565
|
inputRef: import("vue").Ref<any>;
|
2385
2566
|
showSearch: import("vue").Ref<boolean>;
|
2386
2567
|
keyword: import("vue").Ref<string>;
|
@@ -2417,14 +2598,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
2417
2598
|
openSession: (session: string | AnyObject) => Promise<void>;
|
2418
2599
|
userList: import("vue").Ref<AnyObject[]>;
|
2419
2600
|
handleInput: () => void;
|
2601
|
+
patientList: import("vue").Ref<AnyObject[]>;
|
2602
|
+
handlePatientInput: () => void;
|
2420
2603
|
currentTabValue: import("vue").Ref<string>;
|
2421
2604
|
currentIndex: import("vue").Ref<number>;
|
2422
2605
|
groupList: import("vue").ComputedRef<AnyObject[]>;
|
2423
|
-
|
2606
|
+
showNoUserData: import("vue").ComputedRef<boolean>;
|
2607
|
+
showNoPatientData: import("vue").ComputedRef<boolean>;
|
2424
2608
|
showAllNoData: import("vue").ComputedRef<boolean>;
|
2425
2609
|
showGroupNoData: import("vue").ComputedRef<boolean>;
|
2610
|
+
userStartIndex: import("vue").ComputedRef<number>;
|
2426
2611
|
groupStartIndex: import("vue").ComputedRef<number>;
|
2427
2612
|
currentList: import("vue").ComputedRef<AnyObject[]>;
|
2613
|
+
handleSearchInput: () => void;
|
2428
2614
|
handleKeyDown: (event: KeyboardEvent) => void;
|
2429
2615
|
addSession: (id: string) => Promise<void>;
|
2430
2616
|
handleTabChange: () => void;
|
@@ -2605,6 +2791,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2605
2791
|
remark: import("vue").Ref<string>;
|
2606
2792
|
currentTab: import("vue").Ref<AnyObject[]>;
|
2607
2793
|
breadcrumbList: import("vue").Ref<AnyObject[]>;
|
2794
|
+
breadcrumbRef: import("vue").Ref<any>;
|
2608
2795
|
userList: import("vue").Ref<AnyObject[]>;
|
2609
2796
|
handleInput: () => void;
|
2610
2797
|
_disabledIds: import("vue").ComputedRef<any[]>;
|
@@ -2613,18 +2800,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
2613
2800
|
name: any;
|
2614
2801
|
avatar: any;
|
2615
2802
|
chatType: any;
|
2803
|
+
roleInfo: any;
|
2616
2804
|
}[]>;
|
2617
2805
|
friends: import("vue").ComputedRef<{
|
2618
2806
|
id: any;
|
2619
2807
|
name: any;
|
2620
2808
|
avatar: any;
|
2621
2809
|
chatType: any;
|
2810
|
+
roleInfo: any;
|
2622
2811
|
}[]>;
|
2623
2812
|
groups: import("vue").ComputedRef<{
|
2624
2813
|
id: any;
|
2625
2814
|
name: any;
|
2626
2815
|
avatar: any;
|
2627
2816
|
chatType: any;
|
2817
|
+
roleInfo: any;
|
2628
2818
|
}[]>;
|
2629
2819
|
checkedIds: import("vue").ComputedRef<any[]>;
|
2630
2820
|
btnDisabled: import("vue").ComputedRef<boolean>;
|
@@ -2633,6 +2823,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2633
2823
|
currentTabKey: import("vue").ComputedRef<any>;
|
2634
2824
|
showAllCheckbox: import("vue").ComputedRef<boolean>;
|
2635
2825
|
getOrgList: () => Promise<void>;
|
2826
|
+
handleSearchInput: () => void;
|
2636
2827
|
setUserTotal: (tree: AnyObject[]) => void;
|
2637
2828
|
getDisabled: (id: string | number) => boolean;
|
2638
2829
|
handleClickCheckbox: (option: AnyObject) => Promise<void>;
|
@@ -2662,6 +2853,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
2662
2853
|
ChevronBackOutline: 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<{}>>, {}>;
|
2663
2854
|
ChevronForwardOutline: 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<{}>>, {}>;
|
2664
2855
|
last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
|
2856
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
2857
|
+
getRoleName: typeof import("./utils").getRoleName;
|
2665
2858
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2666
2859
|
title: {
|
2667
2860
|
type: StringConstructor;
|
@@ -2968,6 +3161,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2968
3161
|
remark: import("vue").Ref<string>;
|
2969
3162
|
currentTab: import("vue").Ref<AnyObject[]>;
|
2970
3163
|
breadcrumbList: import("vue").Ref<AnyObject[]>;
|
3164
|
+
breadcrumbRef: import("vue").Ref<any>;
|
2971
3165
|
userList: import("vue").Ref<AnyObject[]>;
|
2972
3166
|
handleInput: () => void;
|
2973
3167
|
_disabledIds: import("vue").ComputedRef<any[]>;
|
@@ -2976,18 +3170,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
2976
3170
|
name: any;
|
2977
3171
|
avatar: any;
|
2978
3172
|
chatType: any;
|
3173
|
+
roleInfo: any;
|
2979
3174
|
}[]>;
|
2980
3175
|
friends: import("vue").ComputedRef<{
|
2981
3176
|
id: any;
|
2982
3177
|
name: any;
|
2983
3178
|
avatar: any;
|
2984
3179
|
chatType: any;
|
3180
|
+
roleInfo: any;
|
2985
3181
|
}[]>;
|
2986
3182
|
groups: import("vue").ComputedRef<{
|
2987
3183
|
id: any;
|
2988
3184
|
name: any;
|
2989
3185
|
avatar: any;
|
2990
3186
|
chatType: any;
|
3187
|
+
roleInfo: any;
|
2991
3188
|
}[]>;
|
2992
3189
|
checkedIds: import("vue").ComputedRef<any[]>;
|
2993
3190
|
btnDisabled: import("vue").ComputedRef<boolean>;
|
@@ -2996,6 +3193,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2996
3193
|
currentTabKey: import("vue").ComputedRef<any>;
|
2997
3194
|
showAllCheckbox: import("vue").ComputedRef<boolean>;
|
2998
3195
|
getOrgList: () => Promise<void>;
|
3196
|
+
handleSearchInput: () => void;
|
2999
3197
|
setUserTotal: (tree: AnyObject[]) => void;
|
3000
3198
|
getDisabled: (id: string | number) => boolean;
|
3001
3199
|
handleClickCheckbox: (option: AnyObject) => Promise<void>;
|
@@ -3025,6 +3223,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
3025
3223
|
ChevronBackOutline: 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<{}>>, {}>;
|
3026
3224
|
ChevronForwardOutline: 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<{}>>, {}>;
|
3027
3225
|
last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
|
3226
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
3227
|
+
getRoleName: typeof import("./utils").getRoleName;
|
3028
3228
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
3029
3229
|
title: {
|
3030
3230
|
type: StringConstructor;
|
@@ -3124,6 +3324,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
3124
3324
|
Close: 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<{}>>, {}>;
|
3125
3325
|
EyeOutline: 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<{}>>, {}>;
|
3126
3326
|
EyeOffOutline: 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<{}>>, {}>;
|
3327
|
+
isDoctorRole: typeof import("./utils").isDoctorRole;
|
3328
|
+
getRoleName: typeof import("./utils").getRoleName;
|
3127
3329
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3128
3330
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("template-click" | "unread-message-update" | "session-change" | "session-close")[], "template-click" | "unread-message-update" | "session-change" | "session-close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
3129
3331
|
token: {
|
@@ -5,6 +5,7 @@ export declare function getHistoryRecordApi(params: AnyObject): import("axios").
|
|
5
5
|
export declare function toppingSessionApi(params: AnyObject): import("axios").AxiosPromise<any>;
|
6
6
|
export declare function uploadFileApi(params: FormData): import("axios").AxiosPromise<any>;
|
7
7
|
export declare function listUserApi(params: AnyObject): import("axios").AxiosPromise<any>;
|
8
|
+
export declare function listPatientApi(params: AnyObject): import("axios").AxiosPromise<any>;
|
8
9
|
export declare function getUserDetailApi(params: AnyObject): import("axios").AxiosPromise<any>;
|
9
10
|
export declare function readMessageApi(params: AnyObject): import("axios").AxiosPromise<any>;
|
10
11
|
export declare function recallMessageApi(params: AnyObject): import("axios").AxiosPromise<any>;
|
@@ -1 +1 @@
|
|
1
|
-
import t from"axios";import{createDiscreteApi as e}from"naive-ui";const{message:r}=e(["message"]);function o(t){const e=[];for(const r in t){const o=t[r];Array.isArray(o)?o.forEach((t=>{e.push(`${encodeURIComponent(r)}=${encodeURIComponent(t)}`)})):e.push(`${encodeURIComponent(r)}=${encodeURIComponent(o)}`)}return e.join("&")}const n=t.create({withCredentials:!0,timeout:5e3});function a(t){return n({headers:{"Content-Type":"application/x-www-form-urlencoded"},method:"post",url:"/session/openSession",data:o(t)})}function u(t){return n({method:"get",url:"/chat/recordList",params:t})}function s(t){return n({headers:{"Content-Type":"application/x-www-form-urlencoded"},method:"post",url:"/session/toppingSession",data:o(t)})}function d(t){return n({headers:{"Content-Type":"multipart/form-data"},method:"post",url:"/chat/uploadFile",data:t})}function i(t){return n({method:"get",url:"/user/listUser",params:t})}function p(t){return n({method:"get",url:"/user/getUserDetail",params:t})}function
|
1
|
+
import t from"axios";import{createDiscreteApi as e}from"naive-ui";const{message:r}=e(["message"]);function o(t){const e=[];for(const r in t){const o=t[r];Array.isArray(o)?o.forEach((t=>{e.push(`${encodeURIComponent(r)}=${encodeURIComponent(t)}`)})):e.push(`${encodeURIComponent(r)}=${encodeURIComponent(o)}`)}return e.join("&")}const n=t.create({withCredentials:!0,timeout:5e3});function a(t){return n({headers:{"Content-Type":"application/x-www-form-urlencoded"},method:"post",url:"/session/openSession",data:o(t)})}function u(t){return n({method:"get",url:"/chat/recordList",params:t})}function s(t){return n({headers:{"Content-Type":"application/x-www-form-urlencoded"},method:"post",url:"/session/toppingSession",data:o(t)})}function d(t){return n({headers:{"Content-Type":"multipart/form-data"},method:"post",url:"/chat/uploadFile",data:t})}function i(t){return n({method:"get",url:"/user/listUser",params:t})}function p(t){return n({method:"get",url:"/patient/listPatient",params:t})}function c(t){return n({method:"get",url:"/user/getUserDetail",params:t})}function m(t){return n({method:"post",url:"/chat/readMessage",data:t})}function l(t){return n({method:"post",url:"/chat/recallMessage",data:t})}function h(t){return n({method:"post",url:"/chat/searchChatRecord",data:t})}function f(t){return n({method:"post",url:"/group/create",data:t})}function g(t){return n({method:"get",url:"/group/user",params:t})}function C(t){return n({method:"post",url:"/group/join",data:t})}function w(t){return n({method:"post",url:"/group/leave",data:t})}function v(t){return n({method:"post",url:"/av/finish",data:t})}function y(t){return n({headers:{"Content-Type":"multipart/form-data"},method:"post",url:"/group/update",data:t})}function U(t){return n({headers:{"Content-Type":"application/x-www-form-urlencoded"},method:"put",url:"/session/updateStatus",data:o(t)})}function T(){return n({method:"get",url:"/user/getOrgUserTree"})}n.interceptors.response.use((t=>{var e,o,n;if(null==(e=t.data)?void 0:e.result)return null==(o=t.data)?void 0:o.data;500==(null==(n=t.data)?void 0:n.code)&&t.data.msg&&r.error(t.data.msg)}));export{v as avFinishApi,u as getHistoryRecordApi,T as getOrgUserTreeApi,c as getUserDetailApi,f as groupCreateApi,C as groupJoinApi,w as groupLeaveApi,y as groupUpdateApi,g as groupUserApi,n as instanceAxios,p as listPatientApi,i as listUserApi,a as openSessionApi,m as readMessageApi,l as recallMessageApi,h as searchChatRecordApi,s as toppingSessionApi,U as updateStatusApi,d as uploadFileApi};
|