import React from 'react'; import { Icon, Modal, Button, Form, message, Input, Spin, Checkbox, Select, Row, Col } from 'antd'; import './comprehensive.less'; import ajax from 'jquery/src/ajax/xhr.js' import $ from 'jquery/src/ajax'; const PatentAddFrom = Form.create()(React.createClass({ getCompanyList() { this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/techservice/patent/getUnitNames", success: function (data) { if (data.error.length || !data.data) { return; }; let _me = this; for (var item in data.data) { _me.state.companyOption.push( {data.data[item]} ) }; }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, getInitialState() { return { loading: false, companyOption: [], firstCheck: 0, secondCheck: 0, thirdCheck: 0, accelerated: 0, acceleratedDate: 0, visible:"visible" }; }, componentWillMount() { this.getCompanyList(); }, handleSubmit(e) { e.preventDefault(); if ( !this.state.companyName || this.state.companyName === "") { 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 + "/techservice/patent/manageApplyPatent", data: { 'uid':this.state.companyName, 'firstInventorIdNumber': values.firstInventorID, 'firstInventorName': values.firstInventorName, 'patentDes': values.intro, 'secondInventorName': values.secondInventorName, 'thirdInventorName': values.thirdInventorName, 'firstInventorIsPublish': this.state.firstCheck, 'secondInventorIsPublish': this.state.secondCheck, 'thirdInventorIsPublish': this.state.thirdCheck, 'patentProryStatementUrl': this.state.avatarUrl } }).done(function (data) { if (!data.error.length) { message.success('保存成功!'); } else { message.warning(data.error[0].message); } }.bind(this)).always(function () { this.props.spinState(false); this.props.closeModal(); this.props.form.resetFields(); }.bind(this)); } }); }, acceleratedCheck(e) { if (e.target.checked == true) { this.state.accelerated = 1; this.state.visible = "show"; } else if (e.target.checked == false) { this.state.accelerated = 0; this.state.visible = "visible"; } }, acceleratedSelect(value) { this.state.acceleratedDate = value; }, avatarUrl(e) { this.state.avatarUrl = e; }, render() { const FormItem = Form.Item; const { getFieldDecorator } = this.props.form; const formItemLayout = { labelCol: { span: 3 }, wrapperCol: { span: 14 }, }; const _me = this; return (
{getFieldDecorator('intro', { initialValue: this.state.intro || null })( )} 是否加急
); }, })); const PatentAdd = React.createClass({ getInitialState() { return { visible: false, loading: false }; }, showModal() { this.setState({ visible: true, }); }, handleOk() { this.setState({ visible: false, }); }, handleCancel(e) { this.setState({ visible: false, }); this.props.closeDesc(false); }, spinChange(e) { this.setState({ loading: e }); }, render() { return (
); }, }); export default PatentAdd;