新增IM聊天

This commit is contained in:
geht
2026-05-28 14:37:05 +08:00
parent 99e574f600
commit 3539eab924
35 changed files with 2864 additions and 36 deletions

View File

@@ -29,10 +29,14 @@
<Notify v-if="getShowNotice" :class="`${prefixCls}-action__item notify-item`" />
<ImChat :class="`${prefixCls}-action__item im-chat-item`" />
<FullScreen v-if="getShowFullScreen" :class="`${prefixCls}-action__item fullscreen-item`" />
<LockScreen v-if="getUseLockPage" />
<RefreshCache />
<AppLocalePicker v-if="getShowLocalePicker" :reload="true" :showText="false" :class="`${prefixCls}-action__item`" />
<UserDropDown :theme="getHeaderTheme" />
@@ -64,7 +68,7 @@
import { SettingButtonPositionEnum } from '/@/enums/appEnum';
import { AppLocalePicker } from '/@/components/Application';
import { UserDropDown, LayoutBreadcrumb, FullScreen, Notify, ErrorAction, LockScreen } from './components';
import { UserDropDown, LayoutBreadcrumb, FullScreen, Notify, ImChat, ErrorAction, LockScreen, RefreshCache } from './components';
import { useAppInject } from '/@/hooks/web/useAppInject';
import { useDesign } from '/@/hooks/web/useDesign';
@@ -86,9 +90,11 @@
LayoutBreadcrumb,
LayoutMenu,
UserDropDown,
RefreshCache,
AppLocalePicker,
FullScreen,
Notify,
ImChat,
AppSearch,
ErrorAction,
LockScreen,