You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import { FC , useEffect , useState } from 'react' ;
import { history , useLocation , useParams } from 'umi' ;
import ButtonComp from '@/components/ButtonComp' ;
import ClearInfoDialog from '@/components/ClearInfoDialog' ;
import NodeInitWrap from '@/components/NodeInitWrap' ;
import { getPlugCordResult } from '@/services/api' ;
import { validateNumber } from '@/utils/validate' ;
import theme from '@/styles/antd.theme' ;
import { Button , ConfigProvider , Form , Input , Modal , Radio , message } from 'antd' ;
import styles from './index.less' ;
interface PageProps {
}
const NodeInitTool : FC < PageProps > = ( { } ) = > {
return (
< section style = { { width : '1200px' , margin : '20px auto' } } >
< NodeInitWrap
headTitle = '各级节点初始化工具'
stepTitle = '第1步'
stepDesc = '第一步描述'
leftStep = '步骤1of4: 初始化'
nextbtn = { true }
cancelbtn = { true }
>
< / NodeInitWrap >
< / section >
)
}
export default NodeInitTool