@aochuang/client-sdk 1.0.278
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 +93 -0
- package/common/avatar/avatar.vue +86 -0
- package/common/avatar/index.js +3 -0
- package/common/badge/badge.vue +105 -0
- package/common/badge/index.js +3 -0
- package/common/context-menu/context-menu-box.vue +61 -0
- package/common/context-menu/context-menu-group.vue +162 -0
- package/common/context-menu/context-menu-item.vue +179 -0
- package/common/context-menu/context-menu.vue +201 -0
- package/common/context-menu/index.js +3 -0
- package/common/context-menu/utils.js +138 -0
- package/common/friend-avatar/default.svg +1 -0
- package/common/friend-avatar/friend-avatar.vue +29 -0
- package/common/friend-avatar/index.js +3 -0
- package/common/image/index.js +3 -0
- package/common/index.js +17 -0
- package/common/room-avatar/default.svg +6 -0
- package/common/room-avatar/index.js +3 -0
- package/common/room-avatar/room-avatar.vue +29 -0
- package/common/scroll-load-more/index.js +3 -0
- package/common/scroll-load-more/scroll-load-more.vue +195 -0
- package/common/user-avatar/default.svg +1 -0
- package/common/user-avatar/index.js +3 -0
- package/common/user-avatar/user-avatar.vue +29 -0
- package/components/account-select/account-select-skeleton.vue +56 -0
- package/components/account-select/account-select.vue +205 -0
- package/components/account-select/all.svg +1 -0
- package/components/account-select/index.js +3 -0
- package/components/chat-editor/MENTION_TOKEN_SUMMARY.md +74 -0
- package/components/chat-editor/chat-editor-button/chat-editor-button.vue +78 -0
- package/components/chat-editor/chat-editor-suggestions/chat-editor-suggestions.vue +329 -0
- package/components/chat-editor/chat-editor-toolbar/chat-editor-toolbar-item.vue +28 -0
- package/components/chat-editor/chat-editor-toolbar/chat-editor-toolbar.vue +17 -0
- package/components/chat-editor/chat-editor.vue +933 -0
- package/components/chat-editor/index.js +12 -0
- package/components/chat-editor/utils.js +189 -0
- package/components/chat-friend-profile/chat-friend-profile.vue +118 -0
- package/components/chat-friend-profile/index.js +3 -0
- package/components/chat-layout/chat-layout.vue +71 -0
- package/components/chat-layout/index.js +3 -0
- package/components/chat-panel/chat-panel-box.vue +350 -0
- package/components/chat-panel/chat-panel-chat.vue +121 -0
- package/components/chat-panel/chat-panel-chats.vue +674 -0
- package/components/chat-panel/chat-panel-empty.vue +32 -0
- package/components/chat-panel/chat-panel-increment.vue +80 -0
- package/components/chat-panel/chat-panel-inner-msg.vue +25 -0
- package/components/chat-panel/chat-panel-loading.vue +29 -0
- package/components/chat-panel/chat-panel-nearest.vue +136 -0
- package/components/chat-panel/chat-panel.vue +292 -0
- package/components/chat-panel/index.js +3 -0
- package/components/chat-panel/util.js +83 -0
- package/components/chat-room-profile/chat-room-profile.vue +103 -0
- package/components/chat-room-profile/index.js +3 -0
- package/components/contacts-friend-select/contacts-friend-select-skeleton.vue +41 -0
- package/components/contacts-friend-select/contacts-friend-select.vue +204 -0
- package/components/contacts-friend-select/index.js +3 -0
- package/components/contacts-group-select/contacts-group-select-item.vue +98 -0
- package/components/contacts-group-select/contacts-group-select-skeleton.vue +81 -0
- package/components/contacts-group-select/contacts-group-select.vue +396 -0
- package/components/contacts-group-select/index.js +3 -0
- package/components/contacts-room-select/contacts-room-select-skeleton.vue +41 -0
- package/components/contacts-room-select/contacts-room-select.vue +208 -0
- package/components/contacts-room-select/index.js +3 -0
- package/components/index.js +43 -0
- package/components/layout/index.js +3 -0
- package/components/layout/layout.vue +70 -0
- package/components/session-select/index.js +11 -0
- package/components/session-select/session-select-item-skeleton.vue +59 -0
- package/components/session-select/session-select-item.vue +190 -0
- package/components/session-select/session-select.vue +386 -0
- package/components/wechat-chat-control/calling/calling.vue +227 -0
- package/components/wechat-chat-control/calling/phone-fill.svg +1 -0
- package/components/wechat-chat-control/calling/vidicon-fill.svg +1 -0
- package/components/wechat-chat-control/channel-live/channel-live.vue +198 -0
- package/components/wechat-chat-control/channel-live/quote-icon.svg +1 -0
- package/components/wechat-chat-control/channel-video/channel-video.vue +180 -0
- package/components/wechat-chat-control/channel-video/quote-icon.svg +1 -0
- package/components/wechat-chat-control/channel-video-card/channel-video-card.vue +139 -0
- package/components/wechat-chat-control/channel-video-card/quote-icon.svg +1 -0
- package/components/wechat-chat-control/company-card/company-card.vue +136 -0
- package/components/wechat-chat-control/company-card/quote-icon.svg +1 -0
- package/components/wechat-chat-control/custom-expression/custom-expression.vue +45 -0
- package/components/wechat-chat-control/empty/empty.vue +27 -0
- package/components/wechat-chat-control/file-url/file-url.vue +307 -0
- package/components/wechat-chat-control/file-url/icons/file-excel-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-info-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-music-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-pdf-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-ppt-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-settings-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-text-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-unknow-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-word-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/file-zip-line.svg +1 -0
- package/components/wechat-chat-control/file-url/icons/index.js +24 -0
- package/components/wechat-chat-control/image/image.vue +344 -0
- package/components/wechat-chat-control/image/index.js +1 -0
- package/components/wechat-chat-control/image/util.js +29 -0
- package/components/wechat-chat-control/index.js +104 -0
- package/components/wechat-chat-control/jx-sys-text/jx-sys-text.vue +28 -0
- package/components/wechat-chat-control/location/location.vue +179 -0
- package/components/wechat-chat-control/location/offline-bg.png +0 -0
- package/components/wechat-chat-control/member-change/member-change.vue +37 -0
- package/components/wechat-chat-control/music/icons/163.png +0 -0
- package/components/wechat-chat-control/music/icons/163.svg +12 -0
- package/components/wechat-chat-control/music/icons/default.png +0 -0
- package/components/wechat-chat-control/music/icons/default.svg +1 -0
- package/components/wechat-chat-control/music/icons/kuwo.png +0 -0
- package/components/wechat-chat-control/music/icons/qq.png +0 -0
- package/components/wechat-chat-control/music/icons/qq.svg +1 -0
- package/components/wechat-chat-control/music/music.vue +156 -0
- package/components/wechat-chat-control/music/utils.js +30 -0
- package/components/wechat-chat-control/quote-message/quote-message.vue +257 -0
- package/components/wechat-chat-control/real-time-position/icon.svg +1 -0
- package/components/wechat-chat-control/real-time-position/real-time-position.vue +57 -0
- package/components/wechat-chat-control/red-envelopes/quote-icon.svg +1 -0
- package/components/wechat-chat-control/red-envelopes/red-envelope.svg +1 -0
- package/components/wechat-chat-control/red-envelopes/red-envelopes.vue +168 -0
- package/components/wechat-chat-control/revoke-me-message/revoke-me-message.vue +41 -0
- package/components/wechat-chat-control/revoke-other-message/revoke-other-message.vue +41 -0
- package/components/wechat-chat-control/revoke-you-message/revoke-you-message.vue +41 -0
- package/components/wechat-chat-control/room-calling/phone-fill.svg +1 -0
- package/components/wechat-chat-control/room-calling/room-calling.vue +52 -0
- package/components/wechat-chat-control/room-calling/vidicon-fill.svg +1 -0
- package/components/wechat-chat-control/share-card/quote-icon.svg +1 -0
- package/components/wechat-chat-control/share-card/share-card.vue +140 -0
- package/components/wechat-chat-control/system/system.vue +122 -0
- package/components/wechat-chat-control/system-batch-message/system-batch-message.vue +28 -0
- package/components/wechat-chat-control/system-money/system-money.vue +39 -0
- package/components/wechat-chat-control/text/icons/icon.svg +6 -0
- package/components/wechat-chat-control/text/text.vue +164 -0
- package/components/wechat-chat-control/text-with-at/text-with-at.vue +88 -0
- package/components/wechat-chat-control/transfer/collection.svg +1 -0
- package/components/wechat-chat-control/transfer/quote-icon.svg +1 -0
- package/components/wechat-chat-control/transfer/red-transfer.svg +1 -0
- package/components/wechat-chat-control/transfer/refund.svg +1 -0
- package/components/wechat-chat-control/transfer/transfer.svg +1 -0
- package/components/wechat-chat-control/transfer/transfer.vue +263 -0
- package/components/wechat-chat-control/unknow/unknow.vue +21 -0
- package/components/wechat-chat-control/url/icons/link.svg +1 -0
- package/components/wechat-chat-control/url/icons/video.svg +6 -0
- package/components/wechat-chat-control/url/miniprogram.svg +1 -0
- package/components/wechat-chat-control/url/url-file.vue +47 -0
- package/components/wechat-chat-control/url/url-link.vue +169 -0
- package/components/wechat-chat-control/url/url-merge.vue +164 -0
- package/components/wechat-chat-control/url/url-miniprogram.vue +259 -0
- package/components/wechat-chat-control/url/url.vue +116 -0
- package/components/wechat-chat-control/util.js +234 -0
- package/components/wechat-chat-control/video/icons/video.svg +1 -0
- package/components/wechat-chat-control/video/video.vue +304 -0
- package/components/wechat-chat-control/voice/icons/voice.svg +1 -0
- package/components/wechat-chat-control/voice/voice.vue +464 -0
- package/components/wechat-chat-control/wechat-chat-control-config-item.vue +24 -0
- package/components/wechat-chat-control/wechat-chat-control-config-msg.vue +21 -0
- package/components/wechat-chat-control/wechat-chat-control-config.vue +57 -0
- package/components/wechat-chat-panel/chat-panel-chat-status/chat-panel-chat-status.vue +69 -0
- package/components/wechat-chat-panel/chat-panel-item.vue +695 -0
- package/components/wechat-chat-panel/chat-panel.vue +257 -0
- package/components/wechat-chat-panel/index.js +3 -0
- package/components/wework-chat-control/calling/calling.vue +223 -0
- package/components/wework-chat-control/calling/phone-fill.svg +1 -0
- package/components/wework-chat-control/calling/vidicon-fill.svg +1 -0
- package/components/wework-chat-control/channel-live/channel-live.vue +198 -0
- package/components/wework-chat-control/channel-live/quote-icon.svg +1 -0
- package/components/wework-chat-control/channel-video/channel-video.vue +180 -0
- package/components/wework-chat-control/channel-video/quote-icon.svg +1 -0
- package/components/wework-chat-control/company-card/company-card.vue +136 -0
- package/components/wework-chat-control/company-card/quote-icon.svg +1 -0
- package/components/wework-chat-control/custom-expression/custom-expression.vue +34 -0
- package/components/wework-chat-control/empty/empty.vue +27 -0
- package/components/wework-chat-control/expression/expression.vue +53 -0
- package/components/wework-chat-control/file-url/file-url.vue +247 -0
- package/components/wework-chat-control/file-url/icons/file-excel-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-info-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-music-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-pdf-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-ppt-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-settings-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-text-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-unknow-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-word-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/file-zip-line.svg +1 -0
- package/components/wework-chat-control/file-url/icons/index.js +24 -0
- package/components/wework-chat-control/image/image.vue +296 -0
- package/components/wework-chat-control/image/index.js +1 -0
- package/components/wework-chat-control/image/util.js +21 -0
- package/components/wework-chat-control/index.js +105 -0
- package/components/wework-chat-control/jx-sys-text/jx-sys-text.vue +28 -0
- package/components/wework-chat-control/link/link.vue +100 -0
- package/components/wework-chat-control/location/location.vue +181 -0
- package/components/wework-chat-control/location/offline-bg.png +0 -0
- package/components/wework-chat-control/red-envelopes/quote-icon.svg +1 -0
- package/components/wework-chat-control/red-envelopes/red-envelope.svg +1 -0
- package/components/wework-chat-control/red-envelopes/red-envelopes.vue +168 -0
- package/components/wework-chat-control/share-card/quote-icon.svg +1 -0
- package/components/wework-chat-control/share-card/share-card.vue +140 -0
- package/components/wework-chat-control/text/icons/icon.svg +6 -0
- package/components/wework-chat-control/text/text.vue +157 -0
- package/components/wework-chat-control/unknow/unknow.vue +21 -0
- package/components/wework-chat-control/url/icons/link.svg +1 -0
- package/components/wework-chat-control/url/icons/video.svg +6 -0
- package/components/wework-chat-control/url/miniprogram.svg +1 -0
- package/components/wework-chat-control/url/url-file.vue +37 -0
- package/components/wework-chat-control/url/url-link.vue +169 -0
- package/components/wework-chat-control/url/url-merge.vue +164 -0
- package/components/wework-chat-control/url/url-miniprogram.vue +248 -0
- package/components/wework-chat-control/url/url.vue +103 -0
- package/components/wework-chat-control/util.js +223 -0
- package/components/wework-chat-control/video/icons/video.svg +1 -0
- package/components/wework-chat-control/video/video.vue +304 -0
- package/components/wework-chat-control/voice/icons/voice.svg +1 -0
- package/components/wework-chat-control/voice/voice.vue +464 -0
- package/components/wework-chat-panel/chat-panel-controls/company-card/company-card.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/expression/expression.vue +36 -0
- package/components/wework-chat-panel/chat-panel-controls/file-url/file-url.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/image/image.vue +36 -0
- package/components/wework-chat-panel/chat-panel-controls/index.js +35 -0
- package/components/wework-chat-panel/chat-panel-controls/jx-sys-text/jx-sys-text.vue +28 -0
- package/components/wework-chat-panel/chat-panel-controls/link/link.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/location/location.vue +35 -0
- package/components/wework-chat-panel/chat-panel-controls/text/text.vue +43 -0
- package/components/wework-chat-panel/chat-panel-controls/unkonw/unkonw.vue +39 -0
- package/components/wework-chat-panel/chat-panel-controls/video/video.vue +37 -0
- package/components/wework-chat-panel/chat-panel-controls/voice/voice.vue +35 -0
- package/components/wework-chat-panel/chat-panel-item.vue +650 -0
- package/components/wework-chat-panel/chat-panel.vue +163 -0
- package/components/wework-chat-panel/index.js +3 -0
- package/package.json +23 -0
- package/services/client-chat/client-chat-wechat/client-chat-account.js +426 -0
- package/services/client-chat/client-chat-wechat/client-chat-concats.js +1029 -0
- package/services/client-chat/client-chat-wechat/client-chat-draft.js +92 -0
- package/services/client-chat/client-chat-wechat/client-chat-message.js +588 -0
- package/services/client-chat/client-chat-wechat/client-chat-session-manage.js +67 -0
- package/services/client-chat/client-chat-wechat/client-chat-session.js +1048 -0
- package/services/client-chat/client-chat-wechat/client-chat-socket.js +215 -0
- package/services/client-chat/client-chat-wechat/client-chat.js +1065 -0
- package/services/client-chat/client-chat-wechat/index.js +3 -0
- package/services/client-chat/client-chat-wechat/utils.js +82 -0
- package/services/client-chat/client-chat-wework/client-chat-account.js +310 -0
- package/services/client-chat/client-chat-wework/client-chat-concats.js +772 -0
- package/services/client-chat/client-chat-wework/client-chat-message.js +278 -0
- package/services/client-chat/client-chat-wework/client-chat-session.js +929 -0
- package/services/client-chat/client-chat-wework/client-chat-socket.js +64 -0
- package/services/client-chat/client-chat-wework/client-chat.js +330 -0
- package/services/client-chat/client-chat-wework/index.js +3 -0
- package/services/client-chat/client-chat-wework/utils.js +82 -0
- package/services/index.js +10 -0
- package/services/socket/index.js +5 -0
- package/services/socket/socket.js +797 -0
- package/services/socket/utils.js +7 -0
- package/uni-common/account-portray/account-portray.vue +51 -0
- package/uni-common/account-select/account-select-item.vue +172 -0
- package/uni-common/account-select/account-select.vue +252 -0
- package/uni-common/all-friend-avatar/all-friend-avatar.vue +49 -0
- package/uni-common/friend-avatar/default.svg +1 -0
- package/uni-common/friend-avatar/friend-avatar.vue +27 -0
- package/uni-common/friend-avatar/index.js +3 -0
- package/uni-common/friend-loader/friend-loader.vue +53 -0
- package/uni-common/friend-portray/friend-portray.vue +56 -0
- package/uni-common/group-avatar/default.svg +1 -0
- package/uni-common/group-avatar/group-avatar.vue +18 -0
- package/uni-common/group-avatar/index.js +3 -0
- package/uni-common/room-avatar/default.svg +6 -0
- package/uni-common/room-avatar/index.js +3 -0
- package/uni-common/room-avatar/room-avatar.vue +27 -0
- package/uni-common/room-loader/room-loader.vue +53 -0
- package/uni-common/room-portray/room-portray.vue +56 -0
- package/uni-components/chat-control/calling/calling.vue +91 -0
- package/uni-components/chat-control/calling/phone-fill.svg +1 -0
- package/uni-components/chat-control/calling/vidicon-fill.svg +1 -0
- package/uni-components/chat-control/channel-video/channel-video.vue +89 -0
- package/uni-components/chat-control/channel-video-card/channel-video-card.vue +105 -0
- package/uni-components/chat-control/channel-video-live/channel-video-live.vue +92 -0
- package/uni-components/chat-control/chat-control-config-item/chat-control-config-item.vue +20 -0
- package/uni-components/chat-control/chat-control-config-item/index.js +3 -0
- package/uni-components/chat-control/chat-control-config-msg/chat-control-config-msg-app.vue +25 -0
- package/uni-components/chat-control/chat-control-config-msg/chat-control-config-msg-h5.vue +21 -0
- package/uni-components/chat-control/chat-control-config.vue +59 -0
- package/uni-components/chat-control/chat-control.vue +218 -0
- package/uni-components/chat-control/company-card/company-card.vue +123 -0
- package/uni-components/chat-control/const.js +28 -0
- package/uni-components/chat-control/expression/expression.vue +41 -0
- package/uni-components/chat-control/image/image.vue +68 -0
- package/uni-components/chat-control/index.js +89 -0
- package/uni-components/chat-control/location/location.vue +110 -0
- package/uni-components/chat-control/member-change/member-change.vue +32 -0
- package/uni-components/chat-control/quote-message/quote-message.vue +216 -0
- package/uni-components/chat-control/real-time-position/real-time-position.vue +62 -0
- package/uni-components/chat-control/redpacket/red-envelope.svg +1 -0
- package/uni-components/chat-control/redpacket/redpacket.vue +75 -0
- package/uni-components/chat-control/share-card/share-card.vue +101 -0
- package/uni-components/chat-control/system/system.vue +69 -0
- package/uni-components/chat-control/system-batch-message/system-batch-message.vue +30 -0
- package/uni-components/chat-control/system-text/system-text.vue +32 -0
- package/uni-components/chat-control/text/text.vue +67 -0
- package/uni-components/chat-control/text-with-at/text-with-at.vue +51 -0
- package/uni-components/chat-control/transfer/red-transfer.svg +1 -0
- package/uni-components/chat-control/transfer/transfer.vue +80 -0
- package/uni-components/chat-control/unkonw/unkonw.vue +37 -0
- package/uni-components/chat-control/url/icons/file-excel-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-info-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-music-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-pdf-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-ppt-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-settings-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-text-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-unknow-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-word-line.svg +1 -0
- package/uni-components/chat-control/url/icons/file-zip-line.svg +1 -0
- package/uni-components/chat-control/url/icons/index.js +24 -0
- package/uni-components/chat-control/url/miniprogram.svg +1 -0
- package/uni-components/chat-control/url/url-miniprogram.vue +116 -0
- package/uni-components/chat-control/url/url.vue +306 -0
- package/uni-components/chat-control/url-new/icons/file-excel-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-info-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-music-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-pdf-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-ppt-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-settings-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-text-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-unknow-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-word-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/file-zip-line.svg +1 -0
- package/uni-components/chat-control/url-new/icons/index.js +24 -0
- package/uni-components/chat-control/url-new/url-new.vue +110 -0
- package/uni-components/chat-control/utils.js +12 -0
- package/uni-components/chat-control/video/video.vue +156 -0
- package/uni-components/chat-control/voice/voice.vue +166 -0
- package/uni-components/chat-editor/chat-editor-chartlet/chat-editor-chartlet-collect.vue +84 -0
- package/uni-components/chat-editor/chat-editor-chartlet/chat-editor-chartlet-system.vue +28 -0
- package/uni-components/chat-editor/chat-editor-chartlet/chat-editor-chartlet.vue +85 -0
- package/uni-components/chat-editor/chat-editor-func/chat-editor-func.vue +157 -0
- package/uni-components/chat-editor/chat-editor-func-at/chat-editor-func-at-panel.vue +158 -0
- package/uni-components/chat-editor/chat-editor-func-at/chat-editor-func-at.vue +61 -0
- package/uni-components/chat-editor/chat-editor-func-button/chat-editor-func-button.vue +58 -0
- package/uni-components/chat-editor/chat-editor-func-file/chat-editor-func-file.vue +54 -0
- package/uni-components/chat-editor/chat-editor-func-image/chat-editor-func-image.vue +42 -0
- package/uni-components/chat-editor/chat-editor-func-video/chat-editor-func-video.vue +42 -0
- package/uni-components/chat-editor/chat-editor-func-voice/chat-editor-func-voice.vue +25 -0
- package/uni-components/chat-editor/chat-editor-message-send/chat-editor-message-send.vue +158 -0
- package/uni-components/chat-editor/chat-editor-quote/chat-editor-quote.vue +75 -0
- package/uni-components/chat-editor/chat-editor.vue +257 -0
- package/uni-components/chat-editor/index.js +10 -0
- package/uni-components/chat-editor/util.js +65 -0
- package/uni-components/chat-panel/chat-panel-chats-box.vue +238 -0
- package/uni-components/chat-panel/chat-panel-chats-forward/chat-panel-chats-forward.vue +273 -0
- package/uni-components/chat-panel/chat-panel-chats-item.vue +578 -0
- package/uni-components/chat-panel/chat-panel-chats-status/chat-panel-chats-status.vue +71 -0
- package/uni-components/chat-panel/chat-panel-chats.vue +368 -0
- package/uni-components/chat-panel/chat-panel.vue +227 -0
- package/uni-components/contacts-group-select/contacts-group-select-item.vue +85 -0
- package/uni-components/contacts-group-select/contacts-group-select-panel.vue +119 -0
- package/uni-components/contacts-group-select/contacts-group-select.vue +150 -0
- package/utils/color.js +178 -0
- package/utils/data.js +11 -0
- package/utils/date.js +107 -0
- package/utils/event.js +3 -0
- package/utils/file.js +26 -0
- package/utils/index.js +5 -0
- package/utils/json.js +40 -0
- package/utils/log.js +243 -0
- package/utils/queue.js +97 -0
- package/utils/regexp.js +9 -0
- package/utils/string.js +66 -0
- package/utils/url.js +48 -0
- package/utils/util.js +130 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-chat-room-profile">
|
|
3
|
+
<template v-if="loading">
|
|
4
|
+
<span class="sdk-chat-room-profile__loading">数据加载中...</span>
|
|
5
|
+
</template>
|
|
6
|
+
<template v-else-if="roomData">
|
|
7
|
+
<div class="sdk-chat-room-profile__row">
|
|
8
|
+
<div class="sdk-chat-room-profile__col">
|
|
9
|
+
<span class="sdk-chat-room-profile__name">
|
|
10
|
+
<slot name="name" :data="roomData"></slot>
|
|
11
|
+
</span>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="sdk-chat-room-profile__col" v-if="$slots['head-left']">
|
|
14
|
+
<slot name="head-left" :data="roomData"></slot>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|
|
18
|
+
<template v-else>
|
|
19
|
+
<div class="sdk-chat-room-profile__exception">未找到群聊数据</div>
|
|
20
|
+
</template>
|
|
21
|
+
</div>
|
|
22
|
+
</template>
|
|
23
|
+
<script>
|
|
24
|
+
export default {
|
|
25
|
+
name: 'SdkChatRoomProfile',
|
|
26
|
+
props: {
|
|
27
|
+
id: {
|
|
28
|
+
type: String,
|
|
29
|
+
required: true
|
|
30
|
+
},
|
|
31
|
+
queryMethod: {
|
|
32
|
+
type: Function,
|
|
33
|
+
required: true
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
data () {
|
|
37
|
+
return {
|
|
38
|
+
loading: false,
|
|
39
|
+
roomData: null
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
watch: {
|
|
43
|
+
id () {
|
|
44
|
+
this.refreshData()
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
created () {
|
|
48
|
+
this.refreshData()
|
|
49
|
+
},
|
|
50
|
+
methods: {
|
|
51
|
+
refreshData () {
|
|
52
|
+
this.loading = true
|
|
53
|
+
this.queryMethod().then(rs => {
|
|
54
|
+
this.roomData = rs
|
|
55
|
+
}).finally(() => {
|
|
56
|
+
this.loading = false
|
|
57
|
+
})
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
</script>
|
|
62
|
+
<style>
|
|
63
|
+
.sdk-chat-room-profile{
|
|
64
|
+
line-height: 1.5em;
|
|
65
|
+
}
|
|
66
|
+
.sdk-chat-room-profile__loading{
|
|
67
|
+
min-height: 32px;
|
|
68
|
+
display: flex;
|
|
69
|
+
flex-direction: row;
|
|
70
|
+
align-items: center;
|
|
71
|
+
}
|
|
72
|
+
.sdk-chat-room-profile__row{
|
|
73
|
+
display: flex;
|
|
74
|
+
flex-direction: row;
|
|
75
|
+
align-items: center;
|
|
76
|
+
max-width: 100%;
|
|
77
|
+
min-height: 32px;
|
|
78
|
+
}
|
|
79
|
+
.sdk-chat-room-profile__row:not(:last-child) {
|
|
80
|
+
margin-bottom: 3px;
|
|
81
|
+
}
|
|
82
|
+
.sdk-chat-room-profile__col{
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-direction: row;
|
|
85
|
+
align-items: center;
|
|
86
|
+
min-width: 0;
|
|
87
|
+
}
|
|
88
|
+
.sdk-chat-room-profile__col:last-child {
|
|
89
|
+
min-width: 0;
|
|
90
|
+
}
|
|
91
|
+
.sdk-chat-room-profile__col:not(:first-child){
|
|
92
|
+
margin-left: 12px;
|
|
93
|
+
}
|
|
94
|
+
.sdk-chat-room-profile__name{
|
|
95
|
+
min-width: 0;
|
|
96
|
+
white-space: nowrap;
|
|
97
|
+
overflow: hidden;
|
|
98
|
+
text-overflow: ellipsis;
|
|
99
|
+
}
|
|
100
|
+
.sdk-chat-room-profile__exception{
|
|
101
|
+
color: #999;
|
|
102
|
+
}
|
|
103
|
+
</style>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div clas="sdk-contacts-friend-select-skeleton">
|
|
3
|
+
<div
|
|
4
|
+
class="sdk-contacts-friend-select-skeleton__item"
|
|
5
|
+
v-for="index in 20"
|
|
6
|
+
:key="index"
|
|
7
|
+
>
|
|
8
|
+
<div class="sdk-contacts-friend-select-skeleton__item-avatar">
|
|
9
|
+
<ui-skeleton width="32px" height="32px"></ui-skeleton>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="sdk-contacts-friend-select-skeleton__item-main">
|
|
12
|
+
<ui-skeleton width="100%" height="18px"></ui-skeleton>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
<script>
|
|
18
|
+
import UiSkeleton from '@aochuang/common/components/skeleton'
|
|
19
|
+
|
|
20
|
+
export default {
|
|
21
|
+
name: 'SdkContactsFriendSelectSkeleton',
|
|
22
|
+
components: {
|
|
23
|
+
UiSkeleton
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
</script>
|
|
27
|
+
<style lang="less">
|
|
28
|
+
.sdk-contacts-friend-select-skeleton__item{
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-direction: row;
|
|
31
|
+
align-items: center;
|
|
32
|
+
margin: 12px;
|
|
33
|
+
}
|
|
34
|
+
.sdk-contacts-friend-select-skeleton__item-avatar{
|
|
35
|
+
margin-right: 12px;
|
|
36
|
+
}
|
|
37
|
+
.sdk-contacts-friend-select-skeleton__item-main {
|
|
38
|
+
flex: 1;
|
|
39
|
+
min-width: 0;
|
|
40
|
+
}
|
|
41
|
+
</style>
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-contacts-friend-select">
|
|
3
|
+
<sdk-scroll-load-more
|
|
4
|
+
ref="loadMore"
|
|
5
|
+
:data="data"
|
|
6
|
+
:query-method="handleQueryFriendData"
|
|
7
|
+
>
|
|
8
|
+
<template slot="loading">
|
|
9
|
+
<div class="sdk-contacts-friend-select__skeleton">
|
|
10
|
+
<contacts-friend-select-skeleton></contacts-friend-select-skeleton>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
<div
|
|
14
|
+
class="sdk-contacts-friend-select__list"
|
|
15
|
+
v-if="data && data.length"
|
|
16
|
+
>
|
|
17
|
+
<div
|
|
18
|
+
class="sdk-contacts-friend-select__item"
|
|
19
|
+
v-for="friend in data"
|
|
20
|
+
:key="friend.id"
|
|
21
|
+
:class="{'is-active': valueMap[friend.id], 'is-disabled': handleRenderDisabled(friend)}"
|
|
22
|
+
@click="handleFriendClick(friend)"
|
|
23
|
+
@contextmenu="handleFriendItemContext(friend, $event)"
|
|
24
|
+
>
|
|
25
|
+
<div class="sdk-contacts-friend-select__item-main">
|
|
26
|
+
<sdk-friend-avatar class="sdk-contacts-friend-select__item-avatar" :src="friend.avatar" :name="friend.nickname"></sdk-friend-avatar>
|
|
27
|
+
<span class="sdk-contacts-friend-select__item-name">
|
|
28
|
+
<slot name="name" :data="friend">
|
|
29
|
+
{{friend.conRemark || friend.nickname}}
|
|
30
|
+
</slot>
|
|
31
|
+
</span>
|
|
32
|
+
</div>
|
|
33
|
+
<template v-if="$scopedSlots.addon">
|
|
34
|
+
<slot name="addon" :data="friend"></slot>
|
|
35
|
+
</template>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</sdk-scroll-load-more>
|
|
39
|
+
</div>
|
|
40
|
+
</template>
|
|
41
|
+
<script>
|
|
42
|
+
import SdkScrollLoadMore from '../../common/scroll-load-more'
|
|
43
|
+
import SdkFriendAvatar from '../../common/friend-avatar'
|
|
44
|
+
import ContactsFriendSelectSkeleton from './contacts-friend-select-skeleton.vue'
|
|
45
|
+
|
|
46
|
+
export default {
|
|
47
|
+
name: 'SdkContactsFriendSelect',
|
|
48
|
+
components: {
|
|
49
|
+
SdkFriendAvatar,
|
|
50
|
+
SdkScrollLoadMore,
|
|
51
|
+
ContactsFriendSelectSkeleton
|
|
52
|
+
},
|
|
53
|
+
props: {
|
|
54
|
+
data: {
|
|
55
|
+
type: Array
|
|
56
|
+
},
|
|
57
|
+
multiple: {
|
|
58
|
+
type: Boolean,
|
|
59
|
+
default: false
|
|
60
|
+
},
|
|
61
|
+
value: {
|
|
62
|
+
type: [String, Array]
|
|
63
|
+
},
|
|
64
|
+
disabledMethod: {
|
|
65
|
+
type: Function
|
|
66
|
+
},
|
|
67
|
+
queryMethod: {
|
|
68
|
+
type: Function
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
data () {
|
|
72
|
+
return {
|
|
73
|
+
loading: false
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
computed: {
|
|
77
|
+
valueMap () {
|
|
78
|
+
if (!this.value) {
|
|
79
|
+
return {}
|
|
80
|
+
}
|
|
81
|
+
if (this.multiple) {
|
|
82
|
+
if (!Array.isArray(this.value)) {
|
|
83
|
+
return {}
|
|
84
|
+
} else {
|
|
85
|
+
return this.value.reduce((rs, v) => {
|
|
86
|
+
rs[v] = true
|
|
87
|
+
return rs
|
|
88
|
+
}, {})
|
|
89
|
+
}
|
|
90
|
+
} else {
|
|
91
|
+
return {
|
|
92
|
+
[this.value]: true
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
methods: {
|
|
98
|
+
handleFriendClick (item) {
|
|
99
|
+
if (this.disabledMethod && this.disabledMethod({
|
|
100
|
+
item
|
|
101
|
+
})) {
|
|
102
|
+
return
|
|
103
|
+
}
|
|
104
|
+
this.$emit('select', {
|
|
105
|
+
item
|
|
106
|
+
})
|
|
107
|
+
},
|
|
108
|
+
handleFriendItemContext (item, evt) {
|
|
109
|
+
this.$emit('item-contextmenu', item, evt)
|
|
110
|
+
},
|
|
111
|
+
handleQueryFriendData (evt) {
|
|
112
|
+
if (evt.pageIndex === 0) {
|
|
113
|
+
this.reloading = true
|
|
114
|
+
}
|
|
115
|
+
this.loading = true
|
|
116
|
+
return this.queryMethod(evt).finally(() => {
|
|
117
|
+
this.loading = false
|
|
118
|
+
})
|
|
119
|
+
},
|
|
120
|
+
handleRenderDisabled (item) {
|
|
121
|
+
if (!this.disabledMethod) {
|
|
122
|
+
return false
|
|
123
|
+
}
|
|
124
|
+
return this.disabledMethod({
|
|
125
|
+
item
|
|
126
|
+
})
|
|
127
|
+
},
|
|
128
|
+
reload () {
|
|
129
|
+
return this.$refs.loadMore && this.$refs.loadMore.reload()
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
</script>
|
|
134
|
+
<style lang="less">
|
|
135
|
+
.sdk-contacts-friend-select{
|
|
136
|
+
height: 100%;
|
|
137
|
+
position: relative;
|
|
138
|
+
}
|
|
139
|
+
.sdk-contacts-friend-select__item{
|
|
140
|
+
display: flex;
|
|
141
|
+
flex-direction: row;
|
|
142
|
+
align-items: center;
|
|
143
|
+
padding: 8px 16px;
|
|
144
|
+
position: relative;
|
|
145
|
+
line-height: 1.5em;
|
|
146
|
+
transition: all .25s;
|
|
147
|
+
&.is-disabled {
|
|
148
|
+
cursor: not-allowed;
|
|
149
|
+
opacity: .5;
|
|
150
|
+
}
|
|
151
|
+
&:not(.is-disabled) {
|
|
152
|
+
cursor: pointer;
|
|
153
|
+
&:hover {
|
|
154
|
+
background-color: rgba(0,0,0,.03);
|
|
155
|
+
}
|
|
156
|
+
&.is-active {
|
|
157
|
+
background-color: #e0eafe;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.sdk-contacts-friend-select__item-main{
|
|
162
|
+
flex: 1;
|
|
163
|
+
min-width: 0;
|
|
164
|
+
display: flex;
|
|
165
|
+
flex-direction: row;
|
|
166
|
+
align-items: center;
|
|
167
|
+
}
|
|
168
|
+
.sdk-contacts-friend-select__item:after {
|
|
169
|
+
content: '';
|
|
170
|
+
position: absolute;
|
|
171
|
+
bottom: 0;
|
|
172
|
+
left: 54px;
|
|
173
|
+
right: 12px;
|
|
174
|
+
border-bottom: 1px solid #f8f8f8;
|
|
175
|
+
}
|
|
176
|
+
.sdk-contacts-friend-select__item-avatar {
|
|
177
|
+
margin-right: 8px;
|
|
178
|
+
border-radius: 3px;
|
|
179
|
+
min-width: 32px;
|
|
180
|
+
height: 32px;
|
|
181
|
+
background-color: #eee;
|
|
182
|
+
border-radius: 3px;
|
|
183
|
+
}
|
|
184
|
+
.sdk-contacts-friend-select__skeleton{
|
|
185
|
+
position: absolute;
|
|
186
|
+
left: 0;
|
|
187
|
+
top: 0;
|
|
188
|
+
right: 0;
|
|
189
|
+
bottom: 0;
|
|
190
|
+
overflow: hidden;
|
|
191
|
+
background: #fff;
|
|
192
|
+
z-index: 10;
|
|
193
|
+
}
|
|
194
|
+
.sdk-contacts-friend-select__item-name{
|
|
195
|
+
min-width: 0;
|
|
196
|
+
word-break: break-all;
|
|
197
|
+
overflow: hidden;
|
|
198
|
+
text-overflow: ellipsis;
|
|
199
|
+
display: -webkit-box;
|
|
200
|
+
-webkit-line-clamp: 2;
|
|
201
|
+
-webkit-box-orient: vertical;
|
|
202
|
+
word-break: break-all;
|
|
203
|
+
}
|
|
204
|
+
</style>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="sdk-contacts-group-select-item"
|
|
4
|
+
@click="handleRoomGroupClick"
|
|
5
|
+
>
|
|
6
|
+
<div class="sdk-contacts-group-select-item__icon">
|
|
7
|
+
<ui-icon name="folder-fill" :size="18"></ui-icon>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="sdk-contacts-group-select-item__text">{{ data.groupName }}</div>
|
|
10
|
+
<div class="sdk-contacts-group-select-item__count">
|
|
11
|
+
<template v-if="loading">
|
|
12
|
+
<ui-loading size="mini"></ui-loading>
|
|
13
|
+
</template>
|
|
14
|
+
<template v-else>
|
|
15
|
+
{{ data.num }}
|
|
16
|
+
</template>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</template>
|
|
20
|
+
|
|
21
|
+
<script>
|
|
22
|
+
import UiIcon from '@aochuang/common/components/icon'
|
|
23
|
+
import UiLoading from '@aochuang/common/components/loading'
|
|
24
|
+
|
|
25
|
+
export default {
|
|
26
|
+
name: 'SdkContactsGroupSelectItem',
|
|
27
|
+
components: {
|
|
28
|
+
UiIcon,
|
|
29
|
+
UiLoading
|
|
30
|
+
},
|
|
31
|
+
props: {
|
|
32
|
+
data: {
|
|
33
|
+
type: Object,
|
|
34
|
+
required: true
|
|
35
|
+
},
|
|
36
|
+
type: {
|
|
37
|
+
type: String,
|
|
38
|
+
validator (value) {
|
|
39
|
+
return ['room', 'friend'].includes(value)
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
loading: {
|
|
43
|
+
type: Boolean,
|
|
44
|
+
default: false
|
|
45
|
+
},
|
|
46
|
+
accountId: {
|
|
47
|
+
type: String
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
methods: {
|
|
51
|
+
handleRoomGroupClick () {
|
|
52
|
+
this.$emit('click')
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
</script>
|
|
57
|
+
|
|
58
|
+
<style lang="less">
|
|
59
|
+
.sdk-contacts-group-select-item{
|
|
60
|
+
display: flex;
|
|
61
|
+
flex-direction: row;
|
|
62
|
+
align-items: center;
|
|
63
|
+
padding: 6px 24px 6px 6px;
|
|
64
|
+
position: relative;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
border-radius: 4px;
|
|
67
|
+
transition: all .25s;
|
|
68
|
+
&:after {
|
|
69
|
+
content: '';
|
|
70
|
+
width: 8px;
|
|
71
|
+
height: 8px;
|
|
72
|
+
border: 1px solid #ccc;
|
|
73
|
+
transform: translateY(-50%) rotate(45deg);
|
|
74
|
+
border-left: 0;
|
|
75
|
+
border-bottom: 0;
|
|
76
|
+
position: absolute;
|
|
77
|
+
right: 10px;
|
|
78
|
+
top: 50%;
|
|
79
|
+
}
|
|
80
|
+
&:hover {
|
|
81
|
+
background-color: rgba(0,0,0,.03);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
.sdk-contacts-group-select-item__icon{
|
|
85
|
+
margin-right: 8px;
|
|
86
|
+
width: 32px;
|
|
87
|
+
height: 32px;
|
|
88
|
+
border-radius: 4px;
|
|
89
|
+
background-color: #edeceb;
|
|
90
|
+
color: #bab9b9;
|
|
91
|
+
text-align: center;
|
|
92
|
+
line-height: 32px;
|
|
93
|
+
}
|
|
94
|
+
.sdk-contacts-group-select-item__text{
|
|
95
|
+
flex: 1;
|
|
96
|
+
min-width: 0;
|
|
97
|
+
}
|
|
98
|
+
</style>
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sdk-contacts-group-select-skeleton">
|
|
3
|
+
<div class="sdk-contacts-group-select-skeleton__group">
|
|
4
|
+
<div class="sdk-contacts-group-select-skeleton__group-head">
|
|
5
|
+
<ui-skeleton height="18px" width="130px"></ui-skeleton>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="sdk-contacts-group-select-skeleton__group-body">
|
|
8
|
+
<div class="sdk-contacts-group-select-skeleton__list">
|
|
9
|
+
<div
|
|
10
|
+
class="sdk-contacts-group-select-skeleton__item"
|
|
11
|
+
v-for="index in 6"
|
|
12
|
+
:key="index"
|
|
13
|
+
>
|
|
14
|
+
<div class="sdk-contacts-group-select-skeleton__item-avatar">
|
|
15
|
+
<ui-skeleton width="32px" height="32px"></ui-skeleton>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="sdk-contacts-group-select-skeleton__item-name">
|
|
18
|
+
<ui-skeleton width="75%" height="18px"></ui-skeleton>
|
|
19
|
+
</div>
|
|
20
|
+
<div class="sdk-contacts-group-select-skeleton__item-total">
|
|
21
|
+
<ui-skeleton width="30px" height="18px"></ui-skeleton>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="sdk-contacts-group-select-skeleton__group">
|
|
28
|
+
<div class="sdk-contacts-group-select-skeleton__group-head">
|
|
29
|
+
<ui-skeleton height="18px" width="130px"></ui-skeleton>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="sdk-contacts-group-select-skeleton__group-body">
|
|
32
|
+
<div class="sdk-contacts-group-select-skeleton__list">
|
|
33
|
+
<div
|
|
34
|
+
class="sdk-contacts-group-select-skeleton__item"
|
|
35
|
+
v-for="index in 20"
|
|
36
|
+
:key="index"
|
|
37
|
+
>
|
|
38
|
+
<div class="sdk-contacts-group-select-skeleton__item-avatar">
|
|
39
|
+
<ui-skeleton width="32px" height="32px"></ui-skeleton>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="sdk-contacts-group-select-skeleton__item-name">
|
|
42
|
+
<ui-skeleton width="75%" height="18px"></ui-skeleton>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="sdk-contacts-group-select-skeleton__item-total">
|
|
45
|
+
<ui-skeleton width="30px" height="18px"></ui-skeleton>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
</template>
|
|
53
|
+
<script>
|
|
54
|
+
import UiSkeleton from '@aochuang/common/components/skeleton'
|
|
55
|
+
|
|
56
|
+
export default {
|
|
57
|
+
name: 'SdkContactsGroupSelectSkeleton',
|
|
58
|
+
components: {
|
|
59
|
+
UiSkeleton
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
</script>
|
|
63
|
+
<style lang="less">
|
|
64
|
+
.sdk-contacts-group-select-skeleton__group{
|
|
65
|
+
margin: 12px;
|
|
66
|
+
}
|
|
67
|
+
.sdk-contacts-group-select-skeleton__item{
|
|
68
|
+
display: flex;
|
|
69
|
+
flex-direction: row;
|
|
70
|
+
align-items: center;
|
|
71
|
+
margin-top: 12px;
|
|
72
|
+
margin-bottom: 12px;
|
|
73
|
+
}
|
|
74
|
+
.sdk-contacts-group-select-skeleton__item-avatar{
|
|
75
|
+
margin-right: 12px;
|
|
76
|
+
}
|
|
77
|
+
.sdk-contacts-group-select-skeleton__item-name{
|
|
78
|
+
flex: 1;
|
|
79
|
+
min-width: 0;
|
|
80
|
+
}
|
|
81
|
+
</style>
|