import React from 'react'; import { Modal } from 'antd'; import AuthDetaiel from '@/administration/authentication/authDetaiel'; class DemandDesc extends React.Component { constructor(props) { super(props); this.state = { loading: false, pictureUrl: [], 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 ( <div className="patent-desc"> {this.state.visible ? <Modal maskClosable={false} visible={this.state.visible} onOk={this.handOk.bind(this)} onCancel={this.handleCancel.bind(this)} width="1000px" title={this.props.data&&this.props.data.expert=='1'?'专家详情':'顾问详情'} footer="" className="admin-desc-content" > <div> <div> <AuthDetaiel examineState={this.props.examineState} closeDesc={this.handleCancel.bind(this)} data={this.props.data} demandTypeOption={this.props.demandTypeOption} visible={this.state.visible} handOk={this.handOk.bind(this)} /> </div> </div> </Modal> : <div/>} </div> ); } } export default DemandDesc;