123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- import React from 'react';
- import { Icon, Modal, Button, Form, message, Input, Spin, Select, Checkbox, InputNumber, DatePicker } from 'antd';
- import './contract.less';
- import { companySearch } from '../../../tools.js';
- import ajax from 'jquery/src/ajax/xhr.js'
- import $ from 'jquery/src/ajax';
- const ContractAddFrom = Form.create()(React.createClass({
- getInitialState() {
- return {
- loading: false,
- companyOption: [],
- accelerated: 0,
- acceleratedDate: 0,
- visible: "visible"
- };
- },
- loadData(id) {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- cache: false,
- url: globalConfig.context + "/api/user/contract/detail",
- data: {
- id: id || this.props.data.id
- }
- }).done((data) => {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- } else {
- this.setState({
- data: data.data,
- patentCheck: data.data.patentNum ? true : false,
- copyrightCheck: data.data.copyrightNum ? true : false,
- highTechCheck: data.data.cognizanceYear ? true : false,
- techProjectCheck: data.data.techProjectNum ? true : false,
- });
- };
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- componentWillMount() {
- let d = new Date(), _me = this, theArr = [];
- d = d.getFullYear() - 1;
- for (let i = d; i < d + 20; i++) {
- theArr.push(
- <Select.Option key={i.toString()}>{i}</Select.Option>
- )
- };
- this.state.yearOption = theArr;
- if (this.props.data && this.props.data.id) {
- this.loadData(this.props.data.id);
- } else {
- this.state.data = {};
- this.state.patentCheck = false;
- this.state.copyrightCheck = false;
- this.state.highTechCheck = false;
- this.state.techProjectCheck = false;
- };
- },
- componentWillReceiveProps(nextProps) {
- if (!this.props.visible && nextProps.visible) {
- if (nextProps.data && nextProps.data.id) {
- this.loadData(nextProps.data.id);
- } else {
- this.state.data = {};
- this.state.patentCheck = false;
- this.state.copyrightCheck = false;
- this.state.highTechCheck = false;
- this.state.techProjectCheck = false;
- };
- this.props.form.resetFields();
- };
- },
- handleSave(e) {
- e.preventDefault();
- this.props.form.validateFields((err, values) => {
- if (!err) {
- if (!values.patentNum && !values.copyrightNum && !values.cognizanceYear && !values.techProjectNum) {
- message.warning('请至少选择一个申报项目!');
- return;
- };
- this.props.spinState(true);
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + (this.state.data.id ? "/api/user/contract/update" : "/api/user/contract/apply"),
- data: {
- "id": this.state.data.id,
- "contacts": values.contacts, //联系人
- "type": values.type, //合同类型
- "depict": values.depict, // "合同描述",
- "patentNum": this.state.patentCheck ? values.patentNum : 0,
- "copyrightNum": this.state.copyrightCheck ? values.copyrightNum : 0,
- "cognizanceYear": this.state.highTechCheck ? values.cognizanceYear : undefined,
- "techProjectNum": this.state.techProjectCheck ? values.techProjectNum : 0,
- "comment": values.comment //"备注"
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('保存成功!');
- this.props.okClick();
- this.props.closeModal();
- this.props.form.resetFields();
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this)).always(function () {
- this.props.spinState(false);
- }.bind(this));
- }
- });
- },
- render() {
- const FormItem = Form.Item;
- const { getFieldDecorator } = this.props.form;
- const theData = this.state.data || {};
- const formItemLayout = {
- labelCol: { span: 6 },
- wrapperCol: { span: 14 },
- };
- const _me = this;
- return (
- <Form horizontal onSubmit={this.handleSave}>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="联系人" >
- {getFieldDecorator('contacts', {
- initialValue: theData.contacts,
- rules: [{ required: true, message: '请选择联系人!' }],
- })(
- <Select placeholder="请选择联系人"
- style={{ width: 260 }}
- notFoundContent="未获取到联系人列表">
- {this.props.contactsOption}
- </Select>
- )}
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="合同类型" >
- {getFieldDecorator('type', {
- initialValue: theData.type,
- rules: [{ required: true, message: '请选择合同类型!' }],
- })(
- <Select placeholder="请选择合同类型"
- style={{ width: 260 }}>
- {this.props.typeOption}
- </Select>
- )}
- </FormItem>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 19 }}
- label="合同描述" >
- {getFieldDecorator('depict', {
- initialValue: theData.depict
- })(
- <Input type="textarea"
- placeholder="多行输入"
- rows={4} />
- )}
- </FormItem>
- <div className="clearfix">
- <span style={{ float: "left", lineHeight: '27px', marginRight: '20px' }}>
- <Checkbox checked={this.state.highTechCheck} onChange={(e) => {
- this.setState({ highTechCheck: e.target.checked });
- }}></Checkbox>
- </span>
- <FormItem className="half-item"
- {...formItemLayout}
- label={"高企申请"} >
- {getFieldDecorator('cognizanceYear', {
- initialValue: theData.cognizanceYear ? theData.cognizanceYear.toString() : null
- })(
- <Select placeholder="请选择年份"
- style={{ width: 120 }}
- onSelect={(e, n) => { this.setState({ year: e }); }}>
- {this.state.yearOption}
- </Select>
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <span style={{ float: "left", lineHeight: '27px', marginRight: '20px' }}>
- <Checkbox checked={this.state.patentCheck} onChange={(e) => {
- this.setState({ patentCheck: e.target.checked });
- }}></Checkbox>
- </span>
- <FormItem className="half-item"
- {...formItemLayout}
- label={"专利申请"} >
- {getFieldDecorator('patentNum', {
- initialValue: theData.patentNum
- })(
- <InputNumber />
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <span style={{ float: "left", lineHeight: '27px', marginRight: '20px' }}>
- <Checkbox checked={this.state.copyrightCheck} onChange={(e) => {
- this.setState({ copyrightCheck: e.target.checked });
- }}></Checkbox>
- </span>
- <FormItem className="half-item"
- {...formItemLayout}
- label={"软著申请"} >
- {getFieldDecorator('copyrightNum', {
- initialValue: theData.copyrightNum
- })(
- <InputNumber />
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <span style={{ float: "left", lineHeight: '27px', marginRight: '20px' }}>
- <Checkbox checked={this.state.techProjectCheck} onChange={(e) => {
- this.setState({ techProjectCheck: e.target.checked });
- }}></Checkbox>
- </span>
- <FormItem className="half-item"
- {...formItemLayout}
- label={"科技项目申请"} >
- {getFieldDecorator('techProjectNum', {
- initialValue: theData.techProjectNum
- })(
- <InputNumber />
- )}
- </FormItem>
- </div>
- <FormItem style={{ paddingLeft: '40px' }}>
- <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
- <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
- </FormItem>
- </Form >
- );
- },
- }));
- const ContractAdd = React.createClass({
- getInitialState() {
- return {
- visible: false,
- loading: false
- };
- },
- showModal() {
- this.setState({
- visible: true,
- data: {}
- });
- },
- handleCancel(e) {
- this.setState({
- visible: false,
- });
- this.props.closeAdd(false);
- },
- componentWillReceiveProps(nextProps) {
- this.state.visible = nextProps.showAdd;
- },
- spinChange(e) {
- this.setState({
- loading: e
- });
- },
- render() {
- return (
- <div className="patent-addNew">
- <Button className="patent-addNew" type="primary" onClick={this.props.onClick}>申请合同<Icon type="plus" /></Button>
- <Modal maskClosable={false} title="合同详情"
- visible={this.state.visible}
- onCancel={this.handleCancel}
- width='800px'
- footer='' >
- <Spin spinning={this.state.loading} className='spin-box'>
- <ContractAddFrom
- spinState={this.spinChange}
- closeModal={this.handleCancel}
- visible={this.state.visible}
- data={this.props.data}
- okClick={() => { this.props.closeAdd(false, true) }}
- typeOption={this.props.typeOption}
- contactsOption={this.props.contactsOption} />
- </Spin>
- </Modal>
- </div>
- );
- },
- });
- export default ContractAdd;
|