|
|
@@ -8,6 +8,7 @@ import Notify from './NoticeIcon'
|
|
|
// import HeaderSearch from '../HeaderSearch'
|
|
|
import styles from './index.less'
|
|
|
import Book from './Book'
|
|
|
+import { isMobile } from '@/utils/is'
|
|
|
const ENVTagColor = {
|
|
|
dev: 'orange',
|
|
|
test: 'green',
|
|
|
@@ -60,7 +61,8 @@ const GlobalHeaderRight: React.FC = () => {
|
|
|
>
|
|
|
<QuestionCircleOutlined />
|
|
|
</span> */}
|
|
|
- <Book />
|
|
|
+ {!isMobile() && <Book />}
|
|
|
+
|
|
|
<Notify />
|
|
|
<Avatar />
|
|
|
{REACT_APP_ENV && REACT_APP_ENV !== 'prod' && (
|