This commit is contained in:
lb
2023-11-02 13:44:32 +08:00
parent e11565ab7e
commit 62d441496c
6 changed files with 534 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
import React from 'react';
import Kiln from '../../../公共组件/窑炉信息/Kiln';
import GasFlow from '../../../公共组件/天然气流量';
import WindFlow from '../../../公共组件/助燃风流量';
import CurrentTemp from '../../../公共组件/当前温度';
import WindFrequence from '../../../公共组件/风机运行频率';
import { motion } from 'framer-motion';
@@ -16,9 +15,8 @@ export default function index() {
exit={{ opacity: 0, position: 'relative' }}
transition={{ type: 'tween' }}
>
<Kiln />
<GasFlow style={{ flex: 1, width: '100%', marginTop: '24px' }} />
<WindFlow style={{ flex: 1, width: '100%', marginTop: '24px' }} />
<CurrentTemp style={{ width: '100%' }} />
<WindFrequence style={{ flex: 1, marginTop: '24px', width: '100%' }} />
</motion.div>
);
}