orgCertify.jsx 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. import React from 'react';
  2. import { Icon, message, Input, Select, Button, Form, DatePicker } from 'antd';
  3. import './userList.less';
  4. import ajax from 'jquery/src/ajax/xhr.js';
  5. import $ from 'jquery/src/ajax';
  6. import moment from 'moment';
  7. import { eduLevelList, auditStatusList } from '../../dataDic.js'
  8. import { addressInit } from '../../tools.js';
  9. const OrgCertify = Form.create()(React.createClass({
  10. getInitialState() {
  11. return {
  12. visible: false,
  13. loading: false,
  14. eduLvlOption: [],
  15. auditStatusOption: []
  16. };
  17. },
  18. loadData() {
  19. this.state.data = [];
  20. this.setState({
  21. loading: true
  22. });
  23. $.ajax({
  24. method: "post",
  25. dataType: "json",
  26. crossDomain: false,
  27. url: globalConfig.context + "/api/admin/orgDetail",
  28. data: {
  29. uid: this.props.uid
  30. },
  31. success: function (data) {
  32. if (data.error.length || !data.data) {
  33. message.warning(data.error[0].message);
  34. return;
  35. }
  36. addressInit('licenceProvince', 'licenceCity', 'licenceArea',
  37. data.data.licenceProvince, data.data.licenceCity, data.data.licenceArea);
  38. addressInit('locationProvince', 'locationCity', 'locationArea',
  39. data.data.locationProvince, data.data.locationCity, data.data.locationArea);
  40. this.setState({
  41. id: data.data.id,
  42. contacts: data.data.contacts,
  43. contactMobile: data.data.contactMobile,
  44. fixedTel: data.data.fixedTel,
  45. qq: data.data.qq,
  46. postalAddress: data.data.postalAddress,
  47. postcode: data.data.postcode,
  48. aftUsername: data.data.aftUsername,
  49. unitName: data.data.unitName,
  50. identityType: String(data.data.identityType), //组织性质
  51. registeredCapital: data.data.registeredCapital, //注册资金
  52. legalPerson: data.data.legalPerson,
  53. legalPersonIdCard: data.data.legalPersonIdCard,
  54. licenceNumber: data.data.licenceNumber,
  55. licenceScanningUrl: data.data.licenceScanningUrl,
  56. orgCode: data.data.orgCode,
  57. orgCodeUrl: data.data.orgCodeUrl,
  58. bankAccount: data.data.bankAccount,
  59. banks: data.data.banks,
  60. bankBranch: data.data.bankBranch,
  61. bankCardNumber: data.data.bankCardNumber,
  62. validationAmount: data.data.validationAmount, //打款金额
  63. paymentDate: data.data.paymentDate,
  64. paymentDateFormattedDate: data.data.paymentDateFormattedDate,
  65. lastYearTaxReportUrl: data.data.lastYearTaxReportUrl,
  66. auditStatus: String(data.data.auditStatus),
  67. process: data.data.process
  68. });
  69. }.bind(this),
  70. }).always(function () {
  71. this.setState({
  72. loading: false
  73. });
  74. }.bind(this));
  75. },
  76. handleSubmit(e) {
  77. e.preventDefault();
  78. this.props.form.validateFields((err, values) => {
  79. if (!err) {
  80. this.setState({
  81. loading: true
  82. });
  83. $.ajax({
  84. method: "POST",
  85. dataType: "json",
  86. crossDomain: false,
  87. url: globalConfig.context + "/api/admin/updateOrgDetail",
  88. data: {
  89. id: this.state.id,
  90. contacts: values.contacts,
  91. contactMobile: values.contactMobile,
  92. postalAddress: values.postalAddress,
  93. postcode: values.postcode,
  94. aftUsername: values.aftUsername,
  95. unitName: values.unitName,
  96. identityType: values.identityType, //组织性质
  97. registeredCapital: values.registeredCapital, //注册资金
  98. legalPerson: values.legalPerson,
  99. legalPersonIdCard: values.legalPersonIdCard,
  100. licenceNumber: values.licenceNumber,
  101. orgCode: values.orgCode,
  102. bankAccount: values.bankAccount,
  103. banks: values.banks,
  104. bankBranch: values.bankBranch,
  105. bankCardNumber: values.bankCardNumber,
  106. validationAmount: values.validationAmount, //打款金额
  107. paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
  108. auditStatus: values.auditStatus,
  109. process: values.process
  110. }
  111. }).done(function (data) {
  112. if (!data.error.length) {
  113. message.success('保存成功!');
  114. } else {
  115. message.warning(data.error[0].message);
  116. }
  117. }.bind(this)).always(function () {
  118. this.setState({
  119. visible: false,
  120. });
  121. this.props.closeDesc(false);
  122. }.bind(this));
  123. }
  124. });
  125. },
  126. componentWillMount() {
  127. let _me = this;
  128. eduLevelList.map(function (item, i) {
  129. _me.state.eduLvlOption.push(
  130. <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
  131. );
  132. });
  133. auditStatusList.map(function (item, i) {
  134. _me.state.auditStatusOption.push(
  135. <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
  136. );
  137. });
  138. },
  139. componentDidMount() {
  140. addressInit('licenceProvince', 'licenceCity', 'licenceArea');
  141. addressInit('locationProvince', 'locationCity', 'locationArea');
  142. this.loadData();
  143. },
  144. componentWillReceiveProps(nextProps) {
  145. if (!this.props.visible && nextProps.visible) {
  146. this.props.form.resetFields();
  147. this.loadData();
  148. };
  149. },
  150. render() {
  151. const { getFieldDecorator } = this.props.form;
  152. const FormItem = Form.Item
  153. const formItemLayout = {
  154. labelCol: { span: 4 },
  155. wrapperCol: { span: 12 },
  156. };
  157. return (
  158. <Form horizontal onSubmit={this.handleSubmit} className="person-form">
  159. <FormItem
  160. {...formItemLayout}
  161. label="公司名称"
  162. >
  163. {getFieldDecorator('unitName', {
  164. initialValue: this.state.unitName
  165. })(
  166. <Input />
  167. )}
  168. </FormItem>
  169. <FormItem
  170. {...formItemLayout}
  171. label="认证名称"
  172. >
  173. {getFieldDecorator('aftUsername', {
  174. initialValue: this.state.aftUsername
  175. })(
  176. <Input />
  177. )}
  178. </FormItem>
  179. <FormItem
  180. {...formItemLayout}
  181. label="身份类型"
  182. >
  183. {getFieldDecorator('identityType', {
  184. initialValue: this.state.identityType
  185. })(
  186. <Select placeholder="身份类型" style={{ width: 200 }}
  187. onChange={(e) => { this.state.identityType = e }}>
  188. {this.state.eduLvlOption}
  189. </Select>
  190. )}
  191. </FormItem>
  192. <FormItem
  193. {...formItemLayout}
  194. label="联系人"
  195. >
  196. {getFieldDecorator('contacts', {
  197. initialValue: this.state.contacts
  198. })(
  199. <Input />
  200. )}
  201. </FormItem>
  202. <FormItem
  203. {...formItemLayout}
  204. label="联系人电话"
  205. >
  206. {getFieldDecorator('contactMobile', {
  207. initialValue: this.state.contactMobile
  208. })(
  209. <Input />
  210. )}
  211. </FormItem>
  212. <FormItem
  213. {...formItemLayout}
  214. label="法人"
  215. >
  216. {getFieldDecorator('legalPerson', {
  217. initialValue: this.state.legalPerson
  218. })(
  219. <Input />
  220. )}
  221. </FormItem>
  222. <FormItem
  223. {...formItemLayout}
  224. label="法人身份证号"
  225. >
  226. {getFieldDecorator('legalPersonIdCard', {
  227. initialValue: this.state.legalPersonIdCard
  228. })(
  229. <Input />
  230. )}
  231. </FormItem>
  232. <FormItem
  233. {...formItemLayout}
  234. label="注册资金"
  235. >
  236. {getFieldDecorator('registeredCapital', {
  237. initialValue: this.state.registeredCapital
  238. })(
  239. <Input />
  240. )}
  241. </FormItem>
  242. <FormItem
  243. {...formItemLayout}
  244. label="营业执照编号"
  245. >
  246. {getFieldDecorator('licenceNumber', {
  247. initialValue: this.state.licenceNumber
  248. })(
  249. <Input />
  250. )}
  251. </FormItem>
  252. <FormItem
  253. labelCol={{ span: 4 }}
  254. wrapperCol={{ span: 18 }}
  255. label="营业执照所在地"
  256. >
  257. {getFieldDecorator('licenceAddress')(
  258. <div>
  259. <select id="licenceProvince" name="licenceProvince"></select>
  260. <select id="licenceCity" name="licenceCity"></select>
  261. <select id="licenceArea" name="licenceArea"></select>
  262. </div>
  263. )}
  264. </FormItem>
  265. <FormItem
  266. labelCol={{ span: 4 }}
  267. wrapperCol={{ span: 18 }}
  268. label="营业执照图片"
  269. >
  270. <div className="idcard-img clearfix">
  271. {this.state.licenceScanningUrl ? <div>
  272. <div className="idcard-imgbox">
  273. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
  274. onClick={(e) => { window.open(e.target.src) }} />
  275. </div>
  276. </div> : <div>未上传</div>}
  277. </div>
  278. </FormItem>
  279. <FormItem
  280. {...formItemLayout}
  281. label="组织机构代码"
  282. >
  283. {getFieldDecorator('orgCode', {
  284. initialValue: this.state.orgCode
  285. })(
  286. <Input />
  287. )}
  288. </FormItem>
  289. <FormItem
  290. labelCol={{ span: 4 }}
  291. wrapperCol={{ span: 18 }}
  292. label="组织机构代码证图片"
  293. >
  294. <div className="idcard-img clearfix">
  295. {this.state.orgCodeUrl ? <div>
  296. <div className="idcard-imgbox">
  297. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
  298. onClick={(e) => { window.open(e.target.src) }} />
  299. </div>
  300. </div> : <div>未上传</div>}
  301. </div>
  302. </FormItem>
  303. <FormItem
  304. labelCol={{ span: 4 }}
  305. wrapperCol={{ span: 18 }}
  306. label="上年度纳税报表"
  307. >
  308. <div className="idcard-img clearfix">
  309. {this.state.lastYearTaxReportUrl ? <div>
  310. <div className="idcard-imgbox">
  311. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
  312. onClick={(e) => { window.open(e.target.src) }} />
  313. </div>
  314. </div> : <div>未上传</div>}
  315. </div>
  316. </FormItem>
  317. <FormItem
  318. {...formItemLayout}
  319. label="开户银行"
  320. >
  321. {getFieldDecorator('banks', {
  322. initialValue: this.state.banks
  323. })(
  324. <Input />
  325. )}
  326. </FormItem>
  327. <FormItem
  328. {...formItemLayout}
  329. label="开户银行支行"
  330. >
  331. {getFieldDecorator('bankBranch', {
  332. initialValue: this.state.bankBranch
  333. })(
  334. <Input />
  335. )}
  336. </FormItem>
  337. <FormItem
  338. {...formItemLayout}
  339. label="银行卡号"
  340. >
  341. {getFieldDecorator('bankCardNumber', {
  342. initialValue: this.state.bankCardNumber
  343. })(
  344. <Input />
  345. )}
  346. </FormItem>
  347. <FormItem
  348. labelCol={{ span: 4 }}
  349. wrapperCol={{ span: 18 }}
  350. label="开户行所在地"
  351. >
  352. {getFieldDecorator('locationAddress')(
  353. <div>
  354. <select id="locationProvince" name="locationProvince"></select>
  355. <select id="locationCity" name="locationCity"></select>
  356. <select id="locationArea" name="locationArea"></select>
  357. </div>
  358. )}
  359. </FormItem>
  360. <FormItem
  361. {...formItemLayout}
  362. label="打款金额"
  363. >
  364. {getFieldDecorator('validationAmount', {
  365. initialValue: this.state.validationAmount
  366. })(
  367. <Input />
  368. )}
  369. </FormItem>
  370. <FormItem
  371. {...formItemLayout}
  372. label="打款日期"
  373. >
  374. {getFieldDecorator('paymentDateFormattedDate', {
  375. initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null
  376. })(
  377. <DatePicker />
  378. )}
  379. </FormItem>
  380. <FormItem
  381. {...formItemLayout}
  382. label="认证状态"
  383. >
  384. {getFieldDecorator('auditStatus', {
  385. initialValue: this.state.auditStatus
  386. })(
  387. <Select placeholder="选择认证状态" style={{ width: 200 }}
  388. onChange={(e) => { this.state.auditStatus = e }}>
  389. {this.state.auditStatusOption}
  390. </Select>
  391. )}
  392. </FormItem>
  393. <FormItem
  394. {...formItemLayout}
  395. label="认证步骤"
  396. >
  397. {getFieldDecorator('process', {
  398. initialValue: this.state.process
  399. })(
  400. <Input />
  401. )}
  402. </FormItem>
  403. <FormItem wrapperCol={{ span: 12, offset: 4 }}>
  404. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  405. </FormItem>
  406. </Form >
  407. );
  408. },
  409. }));
  410. export default OrgCertify;