import React from 'react'; import { Icon, Tooltip, Modal, message, Spin, Upload, Input, InputNumber, Select, DatePicker, Button, Radio, Form, Cascader, Tag } from 'antd'; import moment from 'moment'; import './techAchievement.less'; import ajax from 'jquery/src/ajax/xhr.js'; import $ from 'jquery/src/ajax'; import { IndustryObject } from '../../DicIndustryList.js'; import { beforeUploadFile, splitUrl, companySearch } from '../../tools.js'; const KeyWordTagGroup = React.createClass({ getInitialState() { return { tags: [], inputVisible: false, inputValue: '' }; }, handleClose(removedTag) { const tags = this.state.tags.filter(tag => tag !== removedTag); this.props.tagsArr(tags); this.setState({ tags }); }, showInput() { this.setState({ inputVisible: true }, () => this.input.focus()); }, handleInputChange(e) { this.setState({ inputValue: e.target.value }); }, handleInputConfirm() { const state = this.state; const inputValue = state.inputValue; let tags = state.tags; if (inputValue && tags.indexOf(inputValue) === -1) { tags = [...tags, inputValue]; } this.props.tagsArr(tags); this.setState({ tags, inputVisible: false, inputValue: '', }); }, componentWillMount() { this.state.tags = this.props.keyWordArr; }, componentWillReceiveProps(nextProps) { if (this.props.keyWordArr != nextProps.keyWordArr) { this.state.tags = nextProps.keyWordArr; }; }, render() { const { tags, inputVisible, inputValue } = this.state; return (
{tags.map((tag, index) => { const isLongTag = tag.length > 10; const tagElem = ( this.handleClose(tag)}> {isLongTag ? `${tag.slice(0, 10)}...` : tag} ); return isLongTag ? {tagElem} : tagElem; })} {inputVisible && ( this.input = input} type="text" style={{ width: 78 }} value={inputValue} onChange={this.handleInputChange} onBlur={this.handleInputConfirm} onPressEnter={this.handleInputConfirm} /> )} {!inputVisible && }
); } }); const PicturesWall = React.createClass({ getInitialState() { return { previewVisible: false, previewImage: '', fileList: [], } }, handleCancel() { this.setState({ previewVisible: false }) }, handlePreview(file) { this.setState({ previewImage: file.url || file.thumbUrl, previewVisible: true, }); }, handleChange(info) { let fileList = info.fileList; this.setState({ fileList }); this.props.fileList(fileList); }, componentWillReceiveProps(nextProps) { this.state.fileList = nextProps.pictureUrl; }, render() { const { previewVisible, previewImage, fileList } = this.state; const uploadButton = (
点击上传
); return (
{fileList.length >= 5 ? null : uploadButton} example
); } }); const AchievementDetailForm = Form.create()(React.createClass({ getInitialState() { return { visible: false, loading: false, textFileList: [], techPlanFileList: [], businessPlanFileList: [], maturityPictureUrl: [], technicalPictureUrl: [], tags: [] }; }, loadData(id) { this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/user/achievement/detail", 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 = {}; }; let d = new Date() if (thisData && thisData.dateOfBirthMonth && thisData.dateOfBirthYear) { d.setMonth(thisData.dateOfBirthMonth - 1); d.setYear(parseInt(thisData.dateOfBirthYear)); }; this.setState({ data: thisData, orgDisplay: thisData.ownerType, tags: thisData.keyword ? thisData.keyword.split(",") : [], technicalPictureUrl: thisData.technicalPictureUrl ? splitUrl(thisData.technicalPictureUrl, ',', globalConfig.avatarHost + '/upload') : [], maturityPictureUrl: thisData.maturityPictureUrl ? splitUrl(thisData.maturityPictureUrl, ',', globalConfig.avatarHost + '/upload') : [] }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, getTagsArr(e) { this.setState({ tags: e }); }, getMaturityPictureUrl(e) { this.setState({ maturityPictureUrl: e }); }, getTechnicalPictureUrl(e) { this.setState({ technicalPictureUrl: e }); }, handleSubmit(e) { e.preventDefault(); this.props.form.validateFields((err, values) => { //keyword长度判断 if (this.state.tags.length < 3) { message.warning('关键词数量不能小于3个!'); return; }; //url转化 let theTechnicalPictureUrl = []; if (this.state.technicalPictureUrl.length) { let picArr = []; this.state.technicalPictureUrl.map(function (item) { picArr.push(item.response.data); }); theTechnicalPictureUrl = picArr.join(","); }; let theMaturityPictureUrl = []; if (this.state.maturityPictureUrl.length) { let picArr = []; this.state.maturityPictureUrl.map(function (item) { picArr.push(item.response.data); }); theMaturityPictureUrl = picArr.join(","); }; if (!err) { this.setState({ loading: true }); $.ajax({ method: "POST", dataType: "json", crossDomain: false, url: this.props.data.id ? globalConfig.context + '/api/user/achievement/update' : globalConfig.context + '/api/user/achievement/apply', data: { id: this.props.data.id, dataCategory: values.dataCategory, serialNumber: this.props.data.serialNumber, name: values.name, keyword: this.state.tags ? this.state.tags.join(",") : [], category: values.category, summary: values.summary, introduction: values.introduction, technicalPictureUrl: theTechnicalPictureUrl, fieldA: values.field ? values.field[0] : undefined, fieldB: values.field ? values.field[1] : undefined, maturity: values.maturity, maturityPictureUrl: theMaturityPictureUrl, maturityTextFileUrl: this.state.maturityTextFileUrl, maturityVideoUrl: values.maturityVideoUrl, innovation: values.innovation, ownerName: values.ownerName, ownerType: values.ownerType, ownerIdNumber: values.ownerIdNumber, ownerMobile: values.ownerMobile, ownerEmail: values.ownerEmail, ownerPostalAddress: values.ownerPostalAddress, cooperationMode: values.cooperationMode, transferMode: values.transferMode, bargainingMode: values.bargainingMode, transferPrice: values.transferPrice, technicalScene: values.technicalScene, breakthrough: values.breakthrough, patentCase: values.patentCase, awards: values.awards, teamDes: values.teamDes, parameter: values.parameter, orgId: values.orgId, orgName: values.orgName, orgAddress: values.orgAddress, orgEmail: values.orgEmail, orgContacts: values.orgContacts, orgContactsMobile: values.orgContactsMobile, releaseStatus: values.releaseStatus, techPlanUrl: this.state.techPlanUrl, businessPlanUrl: this.state.businessPlanUrl } }).done(function (data) { if (!data.error.length) { message.success('保存成功!'); this.setState({ visible: false }); this.props.handleOk(); } else { message.warning(data.error[0].message); } }.bind(this)); } }); }, componentWillMount() { if (this.props.data.id) { this.loadData(this.props.data.id); } else { this.state.data = {}; }; }, componentWillReceiveProps(nextProps) { if (!this.props.visible && nextProps.visible) { this.state.textFileList = []; this.state.techPlanFileList = []; this.state.businessPlanFileList = []; if (nextProps.data.id) { this.loadData(nextProps.data.id); } else { this.state.data = {}; this.state.tags = []; this.state.maturityPictureUrl = []; this.state.technicalPictureUrl = []; }; this.props.form.resetFields(); }; }, render() { const theData = this.state.data || {}; const { getFieldDecorator } = this.props.form; const FormItem = Form.Item const formItemLayout = { labelCol: { span: 8 }, wrapperCol: { span: 14 }, }; return (
{theData.serialNumber} {getFieldDecorator('name', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.name })( )} {getFieldDecorator('dataCategory', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.dataCategory })( )} {getFieldDecorator('category', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.category })( )} {getFieldDecorator('releaseStatus', { initialValue: theData.releaseStatus })( 未发布 发布 )} {theData.releaseDateFormattedDate}
{getFieldDecorator('summary', { initialValue: theData.summary })( )} {getFieldDecorator('introduction', { initialValue: theData.introduction })( )}

图片建议:专利证书或专利申请书图片、技术图纸、样品图片、技术相关网络图片;成熟度处于非研发阶段的项目,必须上传样品图片,如未上传,成熟度将视为处在研发阶段。

{getFieldDecorator('field', { rules: [{ type: 'array', required: true, message: '此项为必填项!' }], initialValue: [theData.fieldA, theData.fieldB] })( )}
{getFieldDecorator('maturity', { initialValue: theData.maturity })( )} {getFieldDecorator('innovation', { initialValue: theData.innovation })( )}
{ 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.maturityTextFileUrl = info.file.response.data; } else if (info.file.status === 'error') { message.error(`${info.file.name} 文件上传失败。`); }; this.setState({ textFileList: info.fileList.slice(-1) }); }} >

{theData.maturityTextFileUrl ? { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_maturity_text_file') }}>成熟度证明材料(文本文件) : 未上传!}

{getFieldDecorator('maturityVideoUrl', { initialValue: theData.maturityVideoUrl })( )}
{getFieldDecorator('ownerName', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.ownerName })( )} {getFieldDecorator('ownerIdNumber', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.ownerIdNumber })( )} {getFieldDecorator('ownerMobile', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.ownerMobile })( )} {getFieldDecorator('ownerEmail', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.ownerEmail })( )} {getFieldDecorator('ownerPostalAddress', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.ownerPostalAddress })( )}
{getFieldDecorator('ownerType', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.ownerType })( { this.setState({ orgDisplay: e.target.value }); }}> 个人 组织 )}
{getFieldDecorator('orgName', { initialValue: theData.orgName })( )} {getFieldDecorator('orgAddress', { initialValue: theData.orgAddress })( )} {getFieldDecorator('orgEmail', { initialValue: theData.orgEmail })( )} {getFieldDecorator('orgContacts', { initialValue: theData.orgContacts })( )} {getFieldDecorator('orgContactsMobile', { initialValue: theData.orgContactsMobile })( )}
{getFieldDecorator('cooperationMode', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.cooperationMode })( 技术转让 授权生产 )} {getFieldDecorator('transferMode', { initialValue: theData.transferMode })( )}
{getFieldDecorator('bargainingMode', { initialValue: theData.bargainingMode })( 面议 定价 )} {getFieldDecorator('transferPrice', { initialValue: theData.transferPrice })( )} 万元
{getFieldDecorator('technicalScene', { initialValue: theData.technicalScene })( )} {getFieldDecorator('breakthrough', { initialValue: theData.breakthrough })( )} {getFieldDecorator('patentCase', { initialValue: theData.patentCase })( )} {getFieldDecorator('awards', { initialValue: theData.awards })( )} {getFieldDecorator('teamDes', { initialValue: theData.teamDes })( )} {getFieldDecorator('parameter', { initialValue: theData.parameter })( )} { 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.techPlanUrl = info.file.response.data; } else if (info.file.status === 'error') { message.error(`${info.file.name} 文件上传失败。`); }; this.setState({ techPlanFileList: info.fileList.slice(-1) }); }} >

{theData.techPlanUrl ? { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_tech_plan') }}>技术方案 : 未上传!}

{ 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.businessPlanUrl = info.file.response.data; } else if (info.file.status === 'error') { message.error(`${info.file.name} 文件上传失败。`); }; this.setState({ businessPlanFileList: info.fileList.slice(-1) }); }} >

{theData.businessPlanUrl ? { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_business_plan') }}>商业计划书 : 未上传!}

) } })); const AchievementDetail = React.createClass({ getInitialState() { return { visible: false }; }, showModal() { this.setState({ visible: true, }); }, handleCancel(e) { this.setState({ visible: false, }); this.props.closeDesc(false); }, handleOk(e) { this.setState({ visible: false, }); this.props.closeDesc(false, true); }, componentWillReceiveProps(nextProps) { this.state.visible = nextProps.showDesc; }, render() { if (this.props.data) { return (
); } else { return
} }, }); export default AchievementDetail;