websiteChange.jsx 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. import React from 'react';
  2. import { Icon, Form, Button, Input, Select, Spin, Table, message, Modal, Checkbox, Upload } from 'antd';
  3. import { cognizanceStateList } from '../../../dataDic.js';
  4. import { getCognizanceState, beforeUpload, getBase64 } from '../../../tools.js';
  5. import ajax from 'jquery/src/ajax/xhr.js';
  6. import $ from 'jquery/src/ajax';
  7. const WebsiteChangeFrom = Form.create()(React.createClass({
  8. loadData(id) {
  9. this.setState({
  10. loading: true
  11. });
  12. $.ajax({
  13. method: "post",
  14. dataType: "json",
  15. crossDomain: false,
  16. url: globalConfig.context + "/api/admin/techproject/techWebsiteDetail",
  17. data: {
  18. id: id || this.props.data.id
  19. },
  20. success: function (data) {
  21. this.state.data = data.data;
  22. }.bind(this),
  23. }).always(function () {
  24. this.setState({
  25. loading: false
  26. });
  27. }.bind(this));
  28. },
  29. getInitialState() {
  30. return {
  31. loading: false,
  32. stateOption: [],
  33. introduce: '',
  34. projectCheck: 0,
  35. subsidy: 0,
  36. stateTable: []
  37. };
  38. },
  39. componentWillMount() {
  40. let _me = this;
  41. cognizanceStateList.map(function (item) {
  42. _me.state.stateOption.push(
  43. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  44. )
  45. });
  46. this.loadData();
  47. },
  48. handleSubmit(e) {
  49. e.preventDefault();
  50. this.props.form.validateFields((err, values) => {
  51. if (!err) {
  52. this.props.spinState(true);
  53. $.ajax({
  54. method: "POST",
  55. dataType: "json",
  56. crossDomain: false,
  57. url: globalConfig.context + "/api/admin/techproject/disposeTechWebsite",
  58. data: {
  59. id: this.state.data.id,
  60. uid: this.state.data.uid,
  61. department: values.department,
  62. website: values.website,
  63. accountNumber: values.accountNumber,
  64. password: values.password,
  65. }
  66. }).done(function (data) {
  67. if (!data.error.length) {
  68. message.success('保存成功!');
  69. this.props.closeModal();
  70. this.props.form.resetFields();
  71. this.state.targetKeys = [];
  72. this.state.selectedKeys = [];
  73. this.props.spinState(false);
  74. } else {
  75. message.warning(data.error[0].message);
  76. this.props.spinState(false);
  77. }
  78. }.bind(this));
  79. }
  80. });
  81. },
  82. componentWillReceiveProps(nextProps) {
  83. if (!this.props.visible && nextProps.visible) {
  84. this.loadData(nextProps.data.id);
  85. };
  86. },
  87. projectEstablishmentCheck(e) {
  88. if (e.target.checked == true) {
  89. this.state.projectCheck = 1;
  90. } else if (e.target.checked == false) {
  91. this.state.projectCheck = 0;
  92. };
  93. },
  94. subsidyCheck(e) {
  95. if (e.target.checked == true) {
  96. this.state.subsidy = 1;
  97. } else if (e.target.checked == false) {
  98. this.state.subsidy = 0;
  99. };
  100. },
  101. render() {
  102. const FormItem = Form.Item;
  103. const { getFieldDecorator } = this.props.form;
  104. const theData = this.state.data;
  105. const formItemLayout = {
  106. labelCol: { span: 8 },
  107. wrapperCol: { span: 16 },
  108. };
  109. const _me = this;
  110. if (this.state.data) {
  111. return (
  112. <Form onSubmit={this.handleSubmit} id="highTechApply-form">
  113. <FormItem
  114. {...formItemLayout}
  115. label="公司名称:"
  116. >
  117. <span>{theData.unitName}</span>
  118. </FormItem>
  119. <FormItem
  120. {...formItemLayout}
  121. label="科技部门名称:"
  122. >
  123. {getFieldDecorator('department', {
  124. initialValue: theData.department
  125. })(
  126. <Input />
  127. )}
  128. </FormItem>
  129. <FormItem
  130. {...formItemLayout}
  131. label="网址:"
  132. >
  133. {getFieldDecorator('website', {
  134. initialValue: theData.website
  135. })(
  136. <Input />
  137. )}
  138. </FormItem>
  139. <FormItem
  140. {...formItemLayout}
  141. label="账号:"
  142. >
  143. {getFieldDecorator('accountNumber', {
  144. initialValue: theData.accountNumber
  145. })(
  146. <Input />
  147. )}
  148. </FormItem>
  149. <FormItem
  150. {...formItemLayout}
  151. label="密码:"
  152. >
  153. {getFieldDecorator('password', {
  154. initialValue: theData.password
  155. })(
  156. <Input />
  157. )}
  158. </FormItem>
  159. <FormItem style={{ marginTop: '20px' }}>
  160. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  161. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  162. </FormItem>
  163. </Form >
  164. );
  165. } else {
  166. return (<div></div>)
  167. };
  168. },
  169. }));
  170. const WebsiteChange = React.createClass({
  171. getInitialState() {
  172. return {
  173. visible: false,
  174. loading: false
  175. };
  176. },
  177. componentWillReceiveProps(nextProps) {
  178. this.state.visible = nextProps.showDesc
  179. },
  180. showModal() {
  181. this.setState({
  182. visible: true,
  183. });
  184. },
  185. handleOk() {
  186. this.setState({
  187. visible: false,
  188. });
  189. this.props.closeDesc(false);
  190. },
  191. handleCancel(e) {
  192. this.setState({
  193. visible: false,
  194. });
  195. this.props.closeDesc(false);
  196. },
  197. spinChange(e) {
  198. this.setState({
  199. loading: e
  200. });
  201. },
  202. render() {
  203. return (
  204. <div className="patent-addNew">
  205. <Spin spinning={this.state.loading} className='spin-box'>
  206. <Modal title="编辑科技部门网址" visible={this.state.visible}
  207. onOk={this.handleOk} onCancel={this.handleCancel}
  208. width='400px'
  209. footer=''
  210. >
  211. <WebsiteChangeFrom
  212. visible={this.state.visible}
  213. companyOption={this.props.companyOption}
  214. data={this.props.data}
  215. spinState={this.spinChange} closeModal={this.handleCancel} />
  216. </Modal>
  217. </Spin>
  218. </div>
  219. );
  220. }
  221. });
  222. export default WebsiteChange;