import BottomBarItem from '../BottomItemBackground'; import { Radio } from 'antd'; import cls from './index.module.css'; import { useState } from 'react'; const SmallBox = (props) => { return (
{props.split !== false && ( )} {props.children}
); }; function WindFrequence(props) { const [dataSource, setDataSource] = useState('fan'); function handleSourceChange(e) { console.log('val', e.target.value); if (e.target.value == 'fan') { setDataSource('fan'); } else if (e.target.value == 'switcher') { setDataSource('switcher'); } else if (e.target.value == 'heating') { setDataSource('heating'); } } return (
风机 风阀 电加热

A1区板上

123.8℃ 123.8℃ 123.8℃

A1区板上

123.8℃ 123.8℃ 123.8℃

A1区板上

123.8℃ 123.8℃ 123.8℃

A1区板上

123.8℃ 123.8℃ 123.8℃

A1区板上

123.8℃ 123.8℃ 123.8℃
123.8℃ 123.8℃ 123.8℃

A1区板上

123.8℃ 123.8℃ 123.8℃
123.8℃ 123.8℃ 123.8℃

A1区板上

123.8℃

A1区板上

123.8℃
); } export default WindFrequence;