123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- import React from 'react';
- import { Icon, Modal, Button, Form, Upload, message, Input, Spin, Select } from 'antd';
- import { beforeUploadFile, downloadFile, setUserContactsList } from '../../tools.js';
- import './patent.less';
- import ajax from 'jquery/src/ajax/xhr.js'
- import $ from 'jquery/src/ajax';
- const PatentAddFrom = Form.create()(React.createClass({
- getInitialState() {
- return {
- loading: false
- };
- },
- componentWillMount() {
- let theOption = [];
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + '/api/user/getContacts',
- success: function (data) {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- } else {
- for (let item in data.data) {
- let theData = data.data[item];
- theOption.push(
- <Select.Option value={item} key={theData}>{theData}</Select.Option>
- );
- };
- };
- }
- });
- this.setState({ contactsOption: theOption });
- },
- handleSubmit(e) {
- e.preventDefault();
- if (!this.state.patentProryStatementUrl) {
- 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/user/patent/clientApplyPatent",
- data: {
- 'firstInventorIdNumber': values.firstInventorID,
- 'firstInventorName': values.firstInventorName,
- 'patentDes': values.intro,
- 'patentName': values.patentName,
- 'contacts': values.contacts,
- 'secondInventorName': values.secondInventorName,
- 'thirdInventorName': values.thirdInventorName,
- 'patentProryStatementUrl': this.state.patentProryStatementUrl
- }
- }).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.clickOk();
- this.props.form.resetFields();
- }.bind(this));
- }
- });
- },
- avatarUrl(e) {
- this.state.avatarUrl = e;
- },
- checkIdcardnum(rule, value, callback) {
- if (!/(^\d{15}$)|(^\d{17}(\d|X)$)/.test(value)) {
- callback('请输入正确的身份证号!');
- } else {
- callback();
- }
- },
- render() {
- const FormItem = Form.Item;
- const { getFieldDecorator } = this.props.form;
- const formItemLayout = {
- labelCol: { span: 3 },
- wrapperCol: { span: 16 },
- };
- const _me = this;
- return (
- <Form horizontal onSubmit={this.handleSubmit} className="patent-form">
- <FormItem
- {...formItemLayout}
- label="专利名称"
- >
- {getFieldDecorator('patentName', {
- rules: [{ required: true, message: '请输入姓名!' }]
- })(
- <Input placeholder="请输入专利名称" style={{ width: 200 }} />
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="选择联系人"
- >
- {getFieldDecorator('contacts', {
- rules: [{ required: true, message: '请选择一个联系人!' }]
- })(
- <Select placeholder="请选择联系人" style={{ width: 200 }}
- notFoundContent="未获取到联系人列表"
- onSelect={(e, n) => { this.setState({ contacts: e }); }}>
- {this.state.contactsOption}
- </Select>
- )}
- </FormItem>
- <FormItem
- labelCol={{ span: 24 }}
- wrapperCol={{ span: 24 }}
- label="专利简要描述"
- >
- {getFieldDecorator('intro', {
- initialValue: this.state.intro || null
- })(
- <Input type="textarea"
- placeholder="多行输入"
- rows={6} />
- )}
- </FormItem>
- <p>第一发明人</p>
- <FormItem
- {...formItemLayout}
- label="姓名"
- >
- {getFieldDecorator('firstInventorName', {
- rules: [{ required: true, message: '请输入姓名!' }]
- })(
- <Input className="mini-input" />
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="身份证"
- >
- {getFieldDecorator('firstInventorID', {
- rules: [{ required: true, validator: this.checkIdcardnum, message: '请输入正确的身份证号!' }]
- })(
- <Input className="mini-input" />
- )}
- </FormItem>
- <p>第二发明人</p>
- <FormItem
- {...formItemLayout}
- label="姓名"
- >
- {getFieldDecorator('secondInventorName')(
- <Input className="mini-input" />
- )}
- </FormItem>
- <p>第三发明人</p>
- <FormItem
- {...formItemLayout}
- label="姓名"
- >
- {getFieldDecorator('thirdInventorName')(
- <Input className="mini-input" />
- )}
- </FormItem>
- <div className="hrSituation-roster">
- <Upload
- name="ratepay"
- action={globalConfig.context + "/api/user/patent/upload"}
- data={{ 'sign': 'patent_prory_statement' }}
- beforeUpload={beforeUploadFile}
- fileList={this.state.fileList}
- onChange={(info) => {
- 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.patentProryStatementUrl = info.file.response.data;
- } else if (info.file.status === 'error') {
- message.error(`${info.file.name} 文件上传失败。`);
- };
- this.setState({ fileList: info.fileList.slice(-1) });
- }}
- >
- <Button><Icon type="upload" /> 上传专利代理委托书 </Button>
- </Upload>
- <p style={{ paddingLeft: '10px', marginTop: '10px' }}>
- <a onClick={() => { window.open(globalConfig.context + "/api/user/patent/downloadTemplateFile?sign=patent_prory_statement") }}>专利代理委托书模板下载</a>
- </p>
- </div>
- <FormItem style={{ marginTop: '20px' }}>
- <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
- <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
- </FormItem>
- </Form >
- );
- },
- }));
- const PatentAdd = React.createClass({
- getInitialState() {
- return {
- visible: false,
- loading: false
- };
- },
- 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 (
- <div className="patent-addNew">
- <Button disabled={this.props.ButtonDisabled} className="patent-addNew" type="primary" onClick={this.showModal}>申请新专利<Icon type="plus" /></Button>
- <Modal maskClosable={false} title="新专利申请" visible={this.state.visible}
- onOk={this.handleOk} onCancel={this.handleCancel}
- width='720px'
- footer=''>
- <Spin spinning={this.state.loading} className='spin-box'>
- <PatentAddFrom spinState={this.spinChange} closeModal={this.handleCancel} clickOk={this.handleOk} />
- </Spin>
- </Modal>
- </div>
- );
- },
- });
- export default PatentAdd;
|