import React from 'react'; import { Icon, Modal, message, Spin, Button, Row, Col, Upload, Tooltip, Tag, Input, Table } from 'antd'; import '../portal.less'; import ajax from 'jquery/src/ajax/xhr.js'; import $ from 'jquery/src/ajax'; import { getIndustryCategory } from '../../DicIndustryList.js'; import { splitUrl, getDemandType, beforeUploadFile, getOrderStatus } from '../../tools.js'; import ImgList from "../../common/imgList"; const DemandDetail = React.createClass({ getInitialState() { return { visible: false, loading: false, buttonLoading: false, dataSource: [], orderVisible: false, fileList: false, tags: [], pictureUrl: [], columns: [ { title: '状态', dataIndex: 'status', key: 'status', render: (text) => { return getOrderStatus(text) } }, { title: '处理时间', dataIndex: 'recordTimeFormattedDate', key: 'recordTimeFormattedDate', }, { title: '备注', dataIndex: 'comment', key: 'comment', } ] }; }, handleCancel(e) { this.props.closeDesc(false); }, loadData(id) { this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/user/portal/demandDetail', data: { id: id }, success: function (data) { let thisData = data.data; if (!thisData) { if (data.error && data.error.length) { message.warning(data.error[0].message); }; thisData = {}; }; this.setState({ data: thisData, tags: thisData.keyword ? thisData.keyword.split(",") : [], pictureUrl: thisData.pictureUrl ? splitUrl(thisData.pictureUrl, ',', globalConfig.avatarHost + '/upload') : [] }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, loadLogsData(id) { this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/user/portal/order/demandOrderLog', data: { demandOrderId: id }, success: function (data) { let thisData = data.data, theArr = [], _me = this; if (!thisData) { if (data.error && data.error.length) { message.warning(data.error[0].message); }; } else { thisData.map(function (item, i) { theArr.push({ key: i, recordTime: item.recordTime, recordTimeFormattedDate: item.recordTimeFormattedDate, status: item.status, comment: item.comment }); _me.state.logsOrderStatus = item.status; }); }; this.setState({ dataSource: theArr }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, interestClick() { this.setState({ loading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/user/portal/demandInterest', data: { id: this.props.data.id }, success: function (data) { if (data.error && data.error.length) { message.warning(data.error[0].message); } else { this.loadData(this.props.data.id); }; }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this));; }, cancelInterestClick() { this.setState({ loading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/user/portal/demandCancelInterest', data: { id: this.state.data.demandInterestId }, success: function (data) { if (data.error && data.error.length) { message.warning(data.error[0].message); } else { this.loadData(this.props.data.id); }; }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this));; }, handleSubmit() { this.setState({ buttonLoading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/user/portal/order/orderDemand', data: { demandId: this.state.data.id, enclosureUrl: this.state.enclosureUrl, comment: this.state.comment }, success: function (data) { if (data.error && data.error.length) { message.warning(data.error[0].message); } else { message.success("提交成功!") }; }.bind(this), }).always(function () { this.loadData(this.state.data.id); this.setState({ orderVisible: false, buttonLoading: false }); }.bind(this)); }, cancelSubmit() { this.setState({ buttonLoading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/user/portal/order/demandShutdown', data: { id: this.state.data.demandOrderId }, success: function (data) { if (data.error && data.error.length) { message.warning(data.error[0].message); } else { message.success("撤销成功!") }; }.bind(this), }).always(function () { this.loadData(this.state.data.id); this.setState({ buttonLoading: false }); }.bind(this)); }, componentWillReceiveProps(nextProps) { if (!this.props.showDesc && nextProps.showDesc) { if (nextProps.data.id) { this.loadData(nextProps.data.id); if (nextProps.data.orderId) { this.loadLogsData(nextProps.data.orderId) } } else { this.state.data = {}; this.state.tags = []; this.state.pictureUrl = []; }; }; }, render() { const theData = this.state.data || {}; if (this.props.data) { return ( 需求详情 {theData.demandInterestId ? 不感兴趣 : 感兴趣} } width='1200px' footer='' className="portal-desc-content"> 编号 {theData.serialNumber} 名称 {theData.name} 数据类别 {(() => { switch (theData.dataCategory) { case "0": return 个人需求; case "1": return 单位需求; } })()} 需求类型 {getDemandType(theData.demandType)} 应用领域 {getIndustryCategory(theData.industryCategoryA, theData.industryCategoryB)} 有效期限 {theData.releaseDateFormattedDate} 关键词 {this.state.tags.map((tag) => { return {tag} ; })} 问题说明 {theData.problemDes} 技术指标要求 {theData.technicalRequirements} 需求相关文件(图片)
{ this.setState({ previewImage: file.url || file.thumbUrl, previewVisible: true, }); }} /> {/*
*/} {/* */} {/*
*/} { this.setState({ previewVisible: false }) }}>
需求相关文件(文本) {theData.textFileUrl ? { window.open(globalConfig.context + '/api/user/demand/download?id=' + theData.id + '&sign=demand_maturity_text_file') }}>需求文件(文本文件) : 未上传!} 需求文件(视频地址) {theData.videoUrl} 雇佣方名称 {theData.employerName} 固定周期 {theData.fixedCycle} 固定人数 {theData.peopleNumber} 预算价格 {theData.budgetCost} 固定方案 {theData.fixedScheme} {this.props.data.orderId ?

状态流转记录:

:
} {this.state.logsOrderStatus == 6 ?
:
{theData.demandOrderId ? : }
} { this.setState({ orderVisible: false }); }}> 附件 : { if (info.file.status !== 'uploading') { // console.log(info.file, info.fileList); } if (info.file.status === 'done') { if (!info.file.response.error.length) { message.success(`${info.file.name} 文件上传成功!`); } else { message.warning(info.file.response.error[0].message); return; }; this.state.enclosureUrl = info.file.response.data; } else if (info.file.status === 'error') { message.error(`${info.file.name} 文件上传失败。`); }; this.setState({ fileList: info.fileList.slice(-1) }); }} > 备注 : { this.state.comment = e.target.value }} /> ); } else { return
} }, }); export default DemandDetail;