style: 调整系统主题,隐藏不必要的功能

This commit is contained in:
gaoyunqi
2024-02-23 18:11:24 +08:00
parent df3152d77e
commit b5bdb36c75
7 changed files with 412 additions and 456 deletions

View File

@ -21,12 +21,11 @@
<div :class="`${prefixCls}-action`">
<LayoutBreadcrumb :theme="getHeaderTheme" v-if="getShowTopMenu && !getIsMobile" />
<AppSearch :class="`${prefixCls}-action__item `" v-if="getShowSearch" />
<FullScreen v-if="getShowFullScreen" :class="`${prefixCls}-action__item fullscreen-item`" />
<ErrorAction v-if="getUseErrorHandle" :class="`${prefixCls}-action__item error-action`" />
<Notify v-if="getShowNotice" :class="`${prefixCls}-action__item notify-item`" />
<UserPostChange />
<UserPostChange v-if="false" />
<SettingDrawer v-if="getShowSetting" :class="`${prefixCls}-action__item`" ref="drawer" />
<UserDropDown @menu-click="onMenuClick" :theme="getHeaderTheme" :show-settings="getShowSetting" />
</div>
@ -52,7 +51,7 @@
import { SettingButtonPositionEnum } from '/@/enums/appEnum';
import { UserPostChange } from '/@/components/Application';
import { LayoutBreadcrumb, FullScreen, Notify, ErrorAction } from './components';
import { LayoutBreadcrumb, Notify, ErrorAction } from './components';
import UserDropDown from '/@/layouts/default/header/components/user-dropdown/DropDown.vue';
import { useAppInject } from '/@/hooks/web/useAppInject';
import { useDesign } from '/@/hooks/web/useDesign';
@ -69,7 +68,6 @@
LayoutBreadcrumb,
LayoutMenu,
UserDropDown,
FullScreen,
Notify,
AppSearch,
ErrorAction,