update 窑炉内部right

This commit is contained in:
lb
2023-11-03 16:38:23 +08:00
parent ec07109c2e
commit 66bb592405
2 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
import React from 'react';
import FanInfo from '../../../公共组件/风机信息';
import WindFrequence from '../../../公共组件/风机运行频率';
import { motion } from 'framer-motion';
import cls from './index.module.less';
@@ -11,6 +12,8 @@ export default function index() {
width: '625px',
height: '966px',
// background: '#fff3',
display: 'flex',
flexDirection: 'column',
}}
initial={{ opacity: 0, position: 'absolute' }}
animate={{ opacity: 1, position: 'relative' }}
@@ -20,6 +23,9 @@ export default function index() {
<div style={{ height: '380px' }}>
<FanInfo />
</div>
<div style={{ flex: 1, marginTop: '24px' }}>
<WindFrequence />
</div>
</motion.div>
);
}