contacts.jsx 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. @author:李霆
  3. @update:2018/05/29
  4. @descript:复制粘贴,拿起来就是干!!
  5. */
  6. import React from 'react';
  7. import './contacts.less';
  8. import{ Row ,Col,Button,Card,Input} from 'antd';
  9. class Contancts extends React.Component{
  10. constructor(props){
  11. super(props);
  12. this.state={
  13. loading:false
  14. }
  15. }
  16. //添加联系人
  17. addContact(){
  18. }
  19. render(){
  20. const formItemLayout = {
  21. labelCol: {
  22. span: 6
  23. },
  24. wrapperCol: {
  25. span: 14
  26. }
  27. };
  28. return (
  29. <div className="contact-wrap">
  30. <Row>
  31. <Col span={4} offset={1}>
  32. <h4>联系人</h4>
  33. </Col>
  34. <Col span={6} offset={8}>
  35. <Button size="large" type="primary" onClick={this.addContact.bind(this)}>添加常用联系人</Button>
  36. </Col>
  37. </Row>
  38. <Row className="card">
  39. <Card>
  40. <Row>
  41. <Col span={6}>
  42. <FormItem {...formItemLayout} label="姓名">
  43. <Input
  44. style={{ width: '90%' }}
  45. placeholder="联系人姓名"
  46. value={this.state.name}
  47. onChange={(e) => {
  48. this.setState({ name: e.target.value });
  49. }}
  50. />
  51. <span className="color-red"> * </span>
  52. </FormItem>
  53. </Col>
  54. <Col span={6}>2</Col>
  55. <Col span={6}>3</Col>
  56. <Col span={6}>4</Col>
  57. </Row>
  58. </Card>
  59. </Row>
  60. </div>
  61. )
  62. }
  63. }
  64. export default Contancts;