import React from 'react'; import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload, Switch } from 'antd'; import './techProduct.less'; import { getConversionForm, beforeUploadFile, newDownloadFile, getProportion, saveProportion, getPreview } from '../../../../tools.js'; import { conversionFormList, technicalSourceList } from '../../../../dataDic.js'; import ajax from 'jquery/src/ajax/xhr.js'; import $ from 'jquery/src/ajax'; const AchievementDescFrom = Form.create()(React.createClass({ getInitialState() { return { loading: false, yearOption: [], conversionFormOption: [], technicalSourceOption: [] }; }, componentWillMount() { let d = new Date(); let _me = this; d = d.getFullYear(); for (let i = d; i > d - 20; i--) { _me.state.yearOption.push( {i} ) }; conversionFormList.map(function (item) { _me.state.conversionFormOption.push( {item.key} ) }); technicalSourceList.map(function (item) { _me.state.technicalSourceOption.push( {item.key} ) }); if (this.props.activityNumberList && this.props.activityNumberList.length) { for (let i = 0; i < this.props.activityNumberList.length; i++) { _me.state.technicalSourceOption.push( {this.props.activityNumberList[i].activityName}-{this.props.activityNumberList[i].activityNumber} ) }; }; }, handleSubmit(e) { e.preventDefault(); if (!this.state.year && !this.props.data.year) { message.warning("请选择一个年份!"); return; }; this.props.form.validateFields((err, values) => { if (!err) { this.props.spinState(true); $.ajax({ method: "POST", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/disposeAchievement", data: { id: this.props.data.id, uid: this.props.uid, achievementName: values.achievementName, source: values.source, conversionForm: values.conversionForm, conversionResult: values.conversionResult, year: this.state.year || this.props.data.year, enclosureUrl: this.state.enclosureUrl } }).done(function (data) { if (!data.error.length) { message.success('保存成功!'); this.props.clickOk(); this.props.spinState(false); this.props.form.resetFields(); } else { message.warning(data.error[0].message); this.props.spinState(false); } }.bind(this)); } }); }, componentWillReceiveProps(nextProps) { if (!this.props.visible && nextProps.visible) { this.props.form.resetFields(); this.state.fileList = []; this.state.enclosureUrl = undefined; }; }, render() { const FormItem = Form.Item; const { getFieldDecorator } = this.props.form; const theData = this.props.data; const formItemLayout = { labelCol: { span: 4 }, wrapperCol: { span: 16 }, }; const _me = this; return (
年份: { theData.year ? {theData.year} : }
{getFieldDecorator('achievementName', { rules: [{ type: 'string', required: true, message: '此项为必填项!' }], initialValue: theData.achievementName })( )} {getFieldDecorator('source', { rules: [{ type: 'string', required: true, message: '此项为必填项!' }], initialValue: theData.source })( )} {getFieldDecorator('conversionForm', { rules: [{ type: 'string', required: true, message: '此项为必填项!' }], initialValue: theData.conversionForm })( )} {getFieldDecorator('conversionResult', { rules: [{ type: 'string', required: true, message: '此项为必填项!' }], initialValue: theData.conversionResult })( )}
{ 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) }); }} >

{theData.enclosureUrl ? {theData.enclosureDownloadFileName} { var newTab = window.open('about:blank'); if (theData.enclosureUrl.split('.')[1] == 'doc' || theData.enclosureUrl.split('.')[1] == 'docx') { getPreview(theData.id, 'achievement', 'achievement', function (data) { newTab.location.href = data; }); } else { newTab.location.href = globalConfig.context + '/open/writeImage?path=' + theData.enclosureUrl } }}> : 未上传!}

); }, })); const AchievementDesc = React.createClass({ getInitialState() { return { visible: false, loading: false }; }, componentWillReceiveProps(nextProps) { this.state.visible = nextProps.showDesc }, showModal() { this.setState({ visible: true, }); }, handleOk() { this.setState({ visible: false, }); this.props.closeDesc(false, true); }, handleCancel(e) { this.setState({ visible: false, }); this.props.closeDesc(false); }, spinChange(e) { this.setState({ loading: e }); }, render() { return (
); }, }); const Achievement = React.createClass({ loadData(pageNo) { this.state.data = []; this.setState({ loading: true }); $.when($.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/achievementList", data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize, uid: this.props.data.uid } }), $.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/activityNumber", data: { uid: this.props.data.uid } })).done((data1, data2) => { let data = data1[0]; let activityNumber = data2[0]; if (data.error.length || !data.data || !data.data.list) { message.warning(data.error[0].message); return; }; if (activityNumber.error.length || !activityNumber.data) { message.warning(activityNumber.error[0].message); return; }; for (let i = 0; i < data.data.list.length; i++) { let thisdata = data.data.list[i]; this.state.data.push({ key: i, id: thisdata.id, uid: thisdata.uid, achievementName: thisdata.achievementName, source: thisdata.source, conversionForm: thisdata.conversionForm, conversionResult: thisdata.conversionResult, year: thisdata.year, enclosureUrl: thisdata.enclosureUrl, enclosureDownloadFileName: thisdata.enclosureDownloadFileName, enclosure: [thisdata.id, thisdata.enclosureDownloadFileName] }); }; this.state.activityNumberList = activityNumber.data; this.state.pagination.current = data.data.pageNo; this.state.pagination.total = data.data.totalCount; this.setState({ dataSource: this.state.data, pagination: this.state.pagination }); }).always(function () { this.setState({ loading: false }); }.bind(this)); let _me = this; getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); }); }, getInitialState() { return { selectedRowKeys: [], selectedRows: [], loading: false, pagination: { defaultCurrent: 1, defaultPageSize: 10, showQuickJumper: true, pageSize: 10, onChange: function (page) { this.loadData(page); }.bind(this), showTotal: function (total) { return '共' + total + '条数据'; } }, columns: [ { title: '年份', dataIndex: 'year', key: 'year' }, { title: '成果名称', dataIndex: 'achievementName', key: 'achievementName' }, { title: '成果来源', dataIndex: 'source', key: 'source', }, { title: '转化形式', dataIndex: 'conversionForm', key: 'conversionForm', render: (text) => { return getConversionForm(text) } }, { title: '转化结果', dataIndex: 'conversionResult', key: 'conversionResult', }, { title: '相关附件', dataIndex: 'enclosure', key: 'enclosure', render: (text) => { return {text[1]} } } ], dataSource: [] }; }, componentWillMount() { this.loadData(); }, tableRowClick(record, index) { this.state.RowData = record; this.setState({ showDesc: true }); }, delectRow() { let deletedIds = []; for (let idx = 0; idx < this.state.selectedRows.length; idx++) { let rowItem = this.state.selectedRows[idx]; if (rowItem.id) { deletedIds.push(rowItem.id) } } this.setState({ selectedRowKeys: [], loading: deletedIds.length > 0 }); $.ajax({ method: "POST", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/deleteAchievement", data: { ids: deletedIds } }).done(function (data) { if (!data.error.length) { message.success('删除成功!'); this.setState({ loading: false, }); } else { message.warning(data.error[0].message); }; this.loadData(); }.bind(this)); }, closeDesc(e, s) { this.state.showDesc = e; if (s) { this.loadData(); }; }, search() { this.loadData(); }, reset() { this.loadData(); }, render() { const rowSelection = { selectedRowKeys: this.state.selectedRowKeys, onChange: (selectedRowKeys, selectedRows) => { this.setState({ selectedRows: selectedRows, selectedRowKeys: selectedRowKeys }); } }; const hasSelected = this.state.selectedRowKeys.length > 0; return (
科技成果转化 是否已完成: { e ? this.state.proportion.achievement = 1 : this.state.proportion.achievement = 0; saveProportion(this.state.proportion.id, this.props.data.uid, 'achievement', this.state.proportion.achievement); this.setState({ proportion: this.state.proportion }); }} />

); } }); export default Achievement;