alertElectronicArchives.js 1.1 KB
import React,{PropTypes} from 'react';
import ReactDOM from 'react-dom';
import {Row,Col,Button} from 'antd';
import cx from 'classnames';
import s from './alert.scss';

//this is ElectronicArchives
class AlertElectronicArchives extends React.Component{
	render(){
		return(
			<div className={cx(s.alertCommon)}>
				<div className={cx(s.entryInformation)}>
					<Row className={cx(s.head)}>
						<Col span={1}>
							<i className={cx('kr_icon')} style={{color:'#00bb9c'}}>&#xe60f;</i>
						</Col>
						<Col span={2}>
							<span>提示</span>
						</Col>
						<Col span={18}>完善电子档案</Col>
					</Row>
					<Row className={cx(s.content)}>
						<Col span={24}>
							<p>还有电子档案需要完善</p>
						</Col>
					</Row>
					<Row className={cx(s.footer)}>
						<Col span={24} >
							<Button style={{backgroundColor:'#fff',color:'#333',marginRight:'40px'}} type="primary">
								<a href=''>跳过</a>
							</Button>
							<Button type="primary">
								<a href=''>前往完善</a>
							</Button>
						</Col>
					</Row>
				</div>
			</div>
		)
	}
}

export default AlertElectronicArchives;