import React from 'react'; import { Icon, Form, Button, Radio, Input, Spin, Table, message, Select, Modal, DatePicker, Cascader, Transfer, InputNumber } from 'antd'; import { techFieldList, technicalSourceList } from '../../dataDic.js'; import { getTechField, getTechnicalSource } from '../../tools.js'; import './techProduct.less'; import moment from 'moment'; import ajax from 'jquery/src/ajax/xhr.js'; import $ from 'jquery/src/ajax'; const TechProductDescFrom = Form.create()(React.createClass({ getInitialState() { return { loading: false, targetKeys: [], selectedKeys: [], technicalSourceOption: [], }; }, componentWillMount() { let _me = this; technicalSourceList.map(function (item) { _me.state.technicalSourceOption.push( {item.key} ) }); this.state.targetKeys = this.props.data.intellectualPropertyNumber; }, componentWillReceiveProps(nextProps) { if (nextProps.data) { this.state.targetKeys = nextProps.data.intellectualPropertyNumber; }; }, handleSubmit(e) { e.preventDefault(); this.props.form.validateFields((err, values) => { if (!err) { this.props.spinState(true); $.ajax({ method: "POST", dataType: "json", crossDomain: false, url: globalConfig.context + "/techservice/cognizance/techProduct", data: { id: this.props.data.id, serialNumber: values.serialNumber, productName: values.productName, technicalField1: values.techField[0], technicalField2: values.techField[1], technicalField3: values.techField[2], technicalSource: values.technicalSource, lastYearRevenue: values.lastYearRevenue, mainProduct: values.mainProduct, intellectualPropertyNumber: this.state.targetKeys.join(","), keyTechnology: values.keyTechnology, competitiveEdge: values.competitiveEdge, conditionEffect: values.conditionEffect } }).done(function (data) { if (!data.error.length) { message.success('保存成功!'); this.props.closeModal(); this.props.form.resetFields(); this.state.targetKeys = []; this.state.selectedKeys = []; } else { message.warning(data.error[0].message); this.props.spinState(false); } }.bind(this)); } }); }, intellectualChange(nextTargetKeys, direction, moveKeys) { this.setState({ targetKeys: nextTargetKeys }); }, intellectualSelectChange(sourceSelectedKeys, targetSelectedKeys) { this.setState({ selectedKeys: [...sourceSelectedKeys, ...targetSelectedKeys] }); }, render() { const FormItem = Form.Item; const { getFieldDecorator } = this.props.form; const theData = this.props.data; const formItemLayout = { labelCol: { span: 10 }, wrapperCol: { span: 12 }, }; const _me = this; return (
{getFieldDecorator('serialNumber', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.serialNumber })( )} {getFieldDecorator('productName', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.productName })( )}
{getFieldDecorator('technicalSource', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.technicalSource })( )} {getFieldDecorator('lastYearRevenue', { rules: [{ type: "number", required: true, message: '此项为必填项!' }], initialValue: theData.lastYearRevenue ? Number(theData.lastYearRevenue) : 0 })( )}
{getFieldDecorator('techField', { rules: [{ type: "array", required: true, message: '此项为必填项!' }], initialValue: theData.techField })( { this.setState({ techField: value }); console.log(value) }} placeholder="请选择" showSearch /> )}
{getFieldDecorator('mainProduct', { rules: [{ type: "number", required: true, message: '此项为必填项!' }], initialValue: theData.mainProduct })( )}

知识产权编号:

`${item.name}-${item.key}`} />

关键技术及主要技术指标(限400字)

{getFieldDecorator('keyTechnology', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.keyTechnology })( { if (e.target.value.length > 400) { return; } }} /> )}

与同类产品(服务)的竞争优势(限400字)

{getFieldDecorator('competitiveEdge', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.competitiveEdge })( { if (e.target.value.length > 400) { return; } }} /> )}

知识产权获得情况及其对产品(服务)在技术上发挥的支持作用(限400字)*

{getFieldDecorator('conditionEffect', { rules: [{ required: true, message: '此项为必填项!' }], initialValue: theData.conditionEffect })( { if (e.target.value.length > 400) { return; } }} /> )}
); }, })); const TechProductDesc = 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); }, handleCancel(e) { this.setState({ visible: false, }); this.props.closeDesc(false); }, spinChange(e) { this.setState({ loading: e }); }, render() { return (
); }, }); const TechProduct = React.createClass({ loadData(pageNo) { this.state.data = []; this.setState({ loading: true }); $.when($.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/techservice/cognizance/techProductList", data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize } }), $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/techservice/cognizance/intellectualList", data: { pageNo: pageNo || 1, pageSize: 99, } })).done((data1, data2) => { let data = data1[0]; let intellectualList = data2[0]; if (data.error.length || !data.data || !data.data.list) { message.warning(data.error[0].message); return; }; if (intellectualList.error.length || !intellectualList.data || !intellectualList.data.list) { message.warning(intellectualList.error[0].message); return; }; let theArr = []; for (let i = 0; i < intellectualList.data.list.length; i++) { theArr.push({ key: intellectualList.data.list[i].intellectualPropertyNumber, name: intellectualList.data.list[i].intellectualPropertyName }); }; this.state.mockData = theArr; 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, mockData: this.state.mockData, serialNumber: thisdata.serialNumber, productName: thisdata.productName, techField: [Number(thisdata.technicalField1), Number(thisdata.technicalField2), Number(thisdata.technicalField3)], technicalField: getTechField(thisdata.technicalField1, thisdata.technicalField2, thisdata.technicalField3), technicalField1: thisdata.technicalField1, technicalField2: thisdata.technicalField2, technicalField3: thisdata.technicalField3, technicalSource: String(thisdata.technicalSource), lastYearRevenue: thisdata.lastYearRevenue, mainProduct: thisdata.mainProduct, PropertyNumber:thisdata.intellectualPropertyNumber, intellectualPropertyNumber: thisdata.intellectualPropertyNumber ? thisdata.intellectualPropertyNumber.split(",") : [], keyTechnology: thisdata.keyTechnology, competitiveEdge: thisdata.competitiveEdge, conditionEffect: thisdata.conditionEffect, year: thisdata.year, createTime: thisdata.createTime, }); }; 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)); }, 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: 'serialNumber', key: 'serialNumber' }, { title: '产品(服务)名称', dataIndex: 'productName', key: 'productName' }, { title: '技术领域', dataIndex: 'technicalField', key: 'technicalField' }, { title: '技术来源', dataIndex: 'technicalSource', key: 'technicalSource', render: (text) => { return getTechnicalSource(text) } }, { title: '上年度销售收入(万元)', dataIndex: 'lastYearRevenue', key: 'lastYearRevenue' }, { title: '是否主要产品(服务)', dataIndex: 'mainProduct', key: 'mainProduct', render: (text) => { if (text == "1") { return '是' } else { return '否' } } }, { title: '知识产权编号', dataIndex: 'PropertyNumber', key: 'PropertyNumber' } ], 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 + "/techservice/cognizance/deleteTechProduct", 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) { this.state.showDesc = e; 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 (
上年度高新技术产品(服务)情况表

); } }); export default TechProduct;