update 退火检测

This commit is contained in:
lb
2023-11-03 17:16:09 +08:00
parent 9470880de4
commit 0fb251ba1b
4 changed files with 78 additions and 46 deletions

View File

@@ -0,0 +1,25 @@
import { motion } from 'framer-motion';
import FanInfo from '../../../公共组件/风机信息';
import cls from './index.module.less';
export default function index() {
return (
<motion.div
style={{
width: '625px',
height: '966px',
// background: '#fff3',
display: 'flex',
flexDirection: 'column',
}}
initial={{ opacity: 0, position: 'absolute' }}
animate={{ opacity: 1, position: 'relative' }}
exit={{ opacity: 0, position: 'absolute' }}
transition={{ type: 'tween' }}
>
<div style={{ flex: 1 }}>
<FanInfo rows={24} />
</div>
</motion.div>
);
}

View File

@@ -0,0 +1,9 @@
.leftBar {
width: 625px;
height: 966px;
// margin-left: 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
}