123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- @author:李霆
- @update:2018/05/29
- @descript:复制粘贴,拿起来就是干!!
- */
- import React from 'react';
- import './contacts.less';
- import{ Row ,Col} from 'antd';
- class Contancts extends React.Component{
- constructor(props){
- super(props);
- this.state={
- loading:false
- }
- }
- render(){
- return (
- <div className="contact-wrap">
- <Row>
- <Col span={4} offset={1}>
- <h4>联系人</h4>
- </Col>
- <Col span={6} offset={8}>
- <Button>添加常用联系人</Button>
- </Col>
- </Row>
- <Row>
- <Card>
-
- </Card>
- </Row>
- </div>
- )
- }
- }
- export default Contancts;
|