addPatentPrice.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. import React,{Component} from "react";
  2. import {Form, Input, Button, Checkbox, Select, Spin} from 'antd';
  3. import $ from "jquery/src/ajax";
  4. import {message, Modal} from "antd";
  5. class AddPatentPrice extends Component{
  6. constructor(props) {
  7. super(props);
  8. this.state={
  9. loading: false
  10. }
  11. }
  12. //增加 修改
  13. addSoftWritingPriceFn(e) {
  14. e.preventDefault();
  15. this.props.form.validateFields((err, values) => {
  16. if (!err) {
  17. this.setState({
  18. loading: true
  19. });
  20. let api ;
  21. if(Object.keys(this.props.infor).length){
  22. api = '/api/admin/company/updatePatentPrice';
  23. values.id = this.props.infor.id;
  24. } else {
  25. api = '/api/admin/company/addPatentPrice';
  26. }
  27. $.ajax({
  28. method: "post",
  29. dataType: "json",
  30. crossDomain: false,
  31. url:globalConfig.context + api,
  32. data:values,
  33. }).done(function (data) {
  34. this.setState({
  35. loading: false
  36. });
  37. if (!data.error.length) {
  38. message.success(Object.keys(this.props.infor).length ? '修改成功!' : '新增成功!');
  39. this.props.successFn();
  40. } else {
  41. message.warning(data.error[0].message);
  42. }
  43. }.bind(this));
  44. }
  45. });
  46. }
  47. render() {
  48. const { getFieldDecorator } = this.props.form;
  49. return (
  50. <Modal
  51. maskClosable={false}
  52. className="customeDetails"
  53. title={Object.keys(this.props.infor).length ? "修改" : "新增"}
  54. width='350px'
  55. visible={this.props.visible}
  56. onCancel={this.props.onCancel}
  57. footer={null}
  58. >
  59. <Spin spinning={this.state.loading}>
  60. <Form onSubmit={(e)=>{
  61. this.addSoftWritingPriceFn(e)
  62. }}>
  63. <Form.Item label="公司名称">
  64. {getFieldDecorator('companyName', {
  65. initialValue: this.props.infor.companyName,
  66. rules: [{ required: true, message: '请输入公司名称!' }],
  67. })(
  68. <Input disabled={Object.keys(this.props.infor).length !== 0} placeholder="请输入公司名称" style={{width:'250px'}}/>
  69. )}
  70. </Form.Item>
  71. <Form.Item label="实用新型(万元)">
  72. {getFieldDecorator('utilityModel', {
  73. initialValue: this.props.infor.utilityModel,
  74. rules: [{ required: true, message: '请输入实用新型的金额!' }],
  75. })(
  76. <Input placeholder="请输入实用新型的金额" type={'number'} style={{width:'250px'}}/>
  77. )}
  78. </Form.Item>
  79. <Form.Item label="外观专利(万元)">
  80. {getFieldDecorator('appearancePatent', {
  81. initialValue: this.props.infor.appearancePatent,
  82. rules: [{ required: true, message: '请输入外观专利的金额!' }],
  83. })(
  84. <Input placeholder="请输入外观专利的金额" type={'number'} style={{width:'250px'}}/>
  85. )}
  86. </Form.Item>
  87. <Form.Item label="发明专利(万元)">
  88. {getFieldDecorator('inventionPatent', {
  89. initialValue: this.props.infor.inventionPatent,
  90. rules: [{ required: true, message: '请输入发明专利的金额!' }],
  91. })(
  92. <Input placeholder="请输入发明专利的金额" type={'number'} style={{width:'250px'}}/>
  93. )}
  94. </Form.Item>
  95. <Form.Item label="备注">
  96. {getFieldDecorator('remarks', {
  97. initialValue: this.props.infor.remarks,
  98. rules: [{ required: false, message: '请输入备注!' }],
  99. })(
  100. <Input placeholder="请输入备注" type={'textarea'} style={{width:'250px'}}/>
  101. )}
  102. </Form.Item>
  103. <Form.Item>
  104. <Button style={{
  105. width: '100%',
  106. marginTop: '18px',
  107. }} type="primary" htmlType="submit">
  108. {
  109. Object.keys(this.props.infor).length ? '确定修改' : '确定添加'
  110. }
  111. </Button>
  112. </Form.Item>
  113. </Form>
  114. </Spin>
  115. </Modal>
  116. )
  117. }
  118. }
  119. const WrappedHorizontalLoginForm = Form.create()(AddPatentPrice);
  120. export default WrappedHorizontalLoginForm