yearSelect.jsx 591 B

123456789101112131415161718192021222324252627
  1. import React from 'react';
  2. import { Select } from 'antd';
  3. const Option = Select.Option;
  4. const d = new Date();
  5. const thisYear = d.getFullYear();
  6. const theOption = [];
  7. for (let i = thisYear; i >= 1950; i--) {
  8. theOption.push(<Option key={i.toString()} value={i.toString()}>{i}</Option>)
  9. };
  10. const Yearselect = React.createClass({
  11. onChange(e){
  12. this.props.handleyear(e);
  13. },
  14. render() {
  15. return (
  16. <Select className="year-select" onChange={this.onChange}>
  17. {theOption}
  18. </Select>
  19. )
  20. }
  21. });
  22. export default Yearselect;