import React, {Component} from 'react'; import {Select} from 'antd'; import { observer } from 'mobx-react'; import {stores_Context} from "../config"; class SiteSelect extends Component { static contextType = stores_Context; constructor(props) { super(props); this.state = { data: this.props.defaultValue, }; } render() { const {orders_store} = this.context; return (