添加重置ql reset命令,支持批量操作ck

This commit is contained in:
hanhh
2021-06-07 21:54:49 +08:00
parent 64aadb7eb8
commit 9e666f4348
11 changed files with 166 additions and 39 deletions
+3 -3
View File
@@ -36,7 +36,7 @@ function getFilterData(keyword: string, data: any) {
}
const Log = () => {
const [width, setWdith] = useState('100%');
const [width, setWidth] = useState('100%');
const [marginLeft, setMarginLeft] = useState(0);
const [marginTop, setMarginTop] = useState(-72);
const [title, setTitle] = useState('请选择日志文件');
@@ -103,12 +103,12 @@ const Log = () => {
useEffect(() => {
if (document.body.clientWidth < 768) {
setWdith('auto');
setWidth('auto');
setMarginLeft(0);
setMarginTop(0);
setIsPhone(true);
} else {
setWdith('100%');
setWidth('100%');
setMarginLeft(0);
setMarginTop(-72);
setIsPhone(false);