import React, {Component} from 'react'; import {Col, DatePicker, Row} from 'antd'; import {observer} from 'mobx-react'; import * as config from "../config"; import moment from "moment"; import {stores_Context} from "../config"; //用于日期选择,计算上一时间段、同比时间等 class DatePickerCharts extends Component { static contextType = stores_Context; constructor(props) { super(props); } render() { const {date_picker_store} = this.context; return (