import React from 'react'; import { Modal } from 'antd'; import OrderDetaiel from './orderDetail'; class DemandDesc extends React.Component { constructor(props) { super(props); this.state = { loading: false, showState: false }; } handleCancel() { this.setState({ visible: false, }); this.props.closeDesc(false, false); } handOk() { this.setState({ visible: false, }); this.props.closeDesc(false, true); } componentWillReceiveProps(nextProps) { this.state.visible = nextProps.showDesc; } render() { return (