import React, { useState } from 'react' import ProjectBasciInfo from './projectBasicInfo' import TzParams from './tzParams' import KrLine from './KrLine' import MonthLl from './monthLl' import "./index.less" export default function ShuikuBasicInfo() { const [tabVal, setTabVal] = useState('1') return (
setTabVal('1')}>工程基础信息
setTabVal('2')}>主要特征参数
setTabVal('3')}>水库库容曲线
setTabVal('5')}>月生态流量
{tabVal === "1" ? : null} {tabVal === "2" ? : null} {tabVal === "3" ? : null} {tabVal === "5" ? : null}
) }