/* @author:李霆 @update:2018/05/29 @descript:复制粘贴,拿起来就是干!! */ import React from 'react'; import './contacts.less'; import{ Row ,Col,Button,Card,Input} from 'antd'; class Contancts extends React.Component{ constructor(props){ super(props); this.state={ loading:false } } //添加联系人 addContact(){ } render(){ const formItemLayout = { labelCol: { span: 6 }, wrapperCol: { span: 14 } }; return (

联系人

{ this.setState({ name: e.target.value }); }} /> * 2 3 4
) } } export default Contancts;