系统日志增加置顶置底按钮

This commit is contained in:
whyour
2023-10-13 23:44:28 +08:00
parent 26b06c17c5
commit 9f7beb934d
2 changed files with 60 additions and 17 deletions
+2 -17
View File
@@ -32,8 +32,8 @@ import About from './about';
import { useOutletContext } from '@umijs/max';
import { SharedContext } from '@/layouts';
import './index.less';
import CodeMirror from '@uiw/react-codemirror';
import useResizeObserver from '@react-hook/resize-observer';
import SystemLog from './systemLog';
const { Text } = Typography;
const isDemoEnv = window.__ENV__DeployEnv === 'demo';
@@ -347,22 +347,7 @@ const Setting = () => {
{
key: 'syslog',
label: intl.get('系统日志'),
children: (
<CodeMirror
maxHeight={`${height}px`}
value={systemLogData}
onCreateEditor={(view) => {
setTimeout(() => {
view.scrollDOM.scrollTo({
top: view.scrollDOM.scrollHeight,
behavior: 'smooth',
});
}, 300);
}}
readOnly={true}
theme={theme.includes('dark') ? 'dark' : 'light'}
/>
),
children: <SystemLog data={systemLogData} height={height} theme={theme}/>,
},
{
key: 'login',