/* * @Description: * @Author: leizhe * @Date: 2022-01-13 17:26:14 * @LastEditTime: 2022-03-22 16:21:57 * @LastEditors: leizhe */ import React, { useState } from 'react'; import { Form, Input, notification } from 'antd'; import SiteModal from '@/components/Modal/SiteModa'; import { addStation, addChildSiteNode } from '@/services/siteManage/api'; const { Item } = Form; const AddChildModal = props => { const [form] = Form.useForm(); const [formLayout, setFormLayout] = useState('horizontal'); const [loading, setLoading] = useState(false); const { confirmModal } = props; const onSubmit = () => { form .validateFields() .then(res => { console.log(res, 'res'); setLoading(true); addChildSiteNode({ pid: props.pid, nodeName: res.stationName, description: res.description, }) .then(res => { setLoading(false); if (res.code === 0) { form.resetFields(); notification.success({ message: '通知', duration: 3, description: '新增成功', }); confirmModal(); } else { notification.error({ message: '提示', duration: 3, description: res.message, }); } }) .catch(err => { setLoading(false); notification.error({ message: '提示', duration: 3, description: err, }); }); }) .catch(err => { console.error(err); }); }; const onFinish = value => {}; return ( <SiteModal {...props} title="新增子站点" bodyStyle={{ width: '100%', minHeight: '100px' }} style={{ top: 200, borderRadius: '20px' }} width="600px" destroyOnClose afterClose={() => { form.resetFields(); }} maskClosable={false} cancelText="取消" okText="确认" onOk={() => onSubmit()} confirmLoading={loading} > <Form form={form} layout={formLayout} onFinish={onFinish} labelCol={{ span: 4 }}> <Item label="站点名称" name="stationName" rules={[ { required: true, message: '请输入站点名称', }, ]} > <Input placeholder="请输入站点名称" style={{ width: '95%' }} maxLength="20" /> </Item> {/* <Item label="站点类别">all</Item> */} <Item label="站点描述" name="description"> <Input placeholder="请输入站点描述" style={{ width: '95%' }} maxLength="100" /> </Item> </Form> </SiteModal> ); }; export default AddChildModal;