orgDesc.jsx 50 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093
  1. import React from 'react';
  2. import { Icon, Modal, message, Spin, Button, Tabs, Input, Select, Form, DatePicker, Cascader, Upload } 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, certifyStepList } from '../../dataDic.js'
  8. import { beforeUploadFile, getAuditState } from '../../tools.js';
  9. import { areaSelect, getProvince } from '../../NewDicProvinceList'
  10. const OrgShow = Form.create()(React.createClass({
  11. getInitialState() {
  12. return {
  13. loading: false,
  14. tabKey: "1",
  15. eduLvlOption: [],
  16. eduLvlObj: {}
  17. };
  18. },
  19. loadData(uid) {
  20. this.state.data = [];
  21. this.setState({
  22. loading: true
  23. });
  24. $.ajax({
  25. method: "get",
  26. dataType: "json",
  27. crossDomain: false,
  28. url: globalConfig.context + "/api/admin/userCertify/orgDetail",
  29. data: {
  30. uid: uid
  31. },
  32. success: function (data) {
  33. let thisData = data.data;
  34. if (!thisData) {
  35. if (data.error && data.error.length) {
  36. message.warning(data.error[0].message);
  37. };
  38. thisData = {};
  39. };
  40. this.setState({
  41. id: thisData.id,
  42. licenceProvince: thisData.licenceProvince,
  43. licenceCity: thisData.licenceCity,
  44. licenceArea: thisData.licenceArea,
  45. locationProvince: thisData.locationProvince,
  46. locationCity: thisData.locationCity,
  47. locationArea: thisData.locationArea,
  48. contacts: thisData.contacts,
  49. contactMobile: thisData.contactMobile,
  50. fixedTel: thisData.fixedTel,
  51. qq: thisData.qq,
  52. postalAddress: thisData.postalAddress,
  53. postcode: thisData.postcode,
  54. aftUsername: thisData.aftUsername,
  55. unitName: thisData.unitName,
  56. identityType: thisData.identityType, //组织性质
  57. registeredCapital: thisData.registeredCapital, //注册资金
  58. firstContacts: thisData.firstContacts,
  59. firstMobile: thisData.firstMobile,
  60. secondContacts: thisData.secondContacts,
  61. secondMobile: thisData.secondMobile,
  62. thirdContacts: thisData.thirdContacts,
  63. thirdMobile: thisData.thirdMobile,
  64. legalPerson: thisData.legalPerson,
  65. legalPersonIdCard: thisData.legalPersonIdCard,
  66. licenceNumber: thisData.licenceNumber,
  67. licenceScanningUrl: thisData.licenceScanningUrl,
  68. orgCode: thisData.orgCode,
  69. orgCodeUrl: thisData.orgCodeUrl,
  70. bankAccount: thisData.bankAccount,
  71. banks: thisData.banks,
  72. bankBranch: thisData.bankBranch,
  73. bankCardNumber: thisData.bankCardNumber,
  74. validationAmount: thisData.validationAmount, //打款金额
  75. paymentDate: thisData.paymentDate,
  76. paymentDateFormattedDate: thisData.paymentDateFormattedDate,
  77. lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
  78. auditStatus: thisData.auditStatus,
  79. aid: thisData.aid, //业务员ID
  80. mid: thisData.mid //客户经理ID
  81. });
  82. this.props.form.resetFields();
  83. }.bind(this),
  84. }).always(function () {
  85. this.setState({
  86. loading: false
  87. });
  88. }.bind(this));
  89. },
  90. getAccountManagerList() {
  91. this.setState({
  92. loading: true
  93. });
  94. $.ajax({
  95. method: "get",
  96. dataType: "json",
  97. crossDomain: false,
  98. url: globalConfig.context + "/api/admin/userCertify/accountManager",
  99. success: function (data) {
  100. let theArr = [];
  101. if (!data.data) {
  102. if (data.error && data.error.length) {
  103. message.warning(data.error[0].message);
  104. };
  105. return;
  106. };
  107. for (var item in data.data) {
  108. theArr.push(
  109. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  110. )
  111. };
  112. this.setState({
  113. accountManagerOption: theArr,
  114. accountManagerList: data.data
  115. });
  116. }.bind(this),
  117. }).always(function () {
  118. this.setState({
  119. loading: false
  120. });
  121. }.bind(this));
  122. },
  123. getTechnicianList() {
  124. this.setState({
  125. loading: true
  126. });
  127. $.ajax({
  128. method: "get",
  129. dataType: "json",
  130. crossDomain: false,
  131. url: globalConfig.context + "/api/admin/userCertify/technician",
  132. success: function (data) {
  133. let theArr = [];
  134. if (!data.data) {
  135. if (data.error && data.error.length) {
  136. message.warning(data.error[0].message);
  137. };
  138. return;
  139. };
  140. for (var item in data.data) {
  141. theArr.push(
  142. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  143. )
  144. };
  145. this.setState({
  146. technicianOption: theArr,
  147. technicianList: data.data
  148. });
  149. }.bind(this),
  150. }).always(function () {
  151. this.setState({
  152. loading: false
  153. });
  154. }.bind(this));
  155. },
  156. handleSubmit(e) {
  157. e.preventDefault();
  158. this.props.form.validateFields((err, values) => {
  159. if (!err) {
  160. this.setState({
  161. loading: true
  162. });
  163. $.ajax({
  164. method: "POST",
  165. dataType: "json",
  166. crossDomain: false,
  167. url: globalConfig.context + "/api/admin/userCertify/updateOrgDetail",
  168. data: {
  169. uid: this.props.uid,
  170. id: this.state.id,
  171. auditStatus: values.auditStatus,
  172. level: this.state.level,
  173. aid: values.aid, //指派业务员ID
  174. mid: values.mid, //指派客户经理ID
  175. }
  176. }).done(function (data) {
  177. if (!data.error.length) {
  178. message.success('保存成功!');
  179. } else {
  180. message.warning(data.error[0].message);
  181. }
  182. }.bind(this)).always(function () {
  183. this.setState({
  184. loading: false
  185. });
  186. this.props.handleOk();
  187. }.bind(this));
  188. }
  189. });
  190. },
  191. handleCancel() {
  192. this.props.closeDesc(false);
  193. },
  194. componentWillMount() {
  195. let _me = this;
  196. eduLevelList.map(function (item, i) {
  197. _me.state.eduLvlObj[item.value] = item.key
  198. });
  199. this.loadData(this.props.uid);
  200. this.getAccountManagerList();
  201. this.getTechnicianList();
  202. },
  203. componentWillReceiveProps(nextProps) {
  204. if (!this.props.visible && nextProps.visible) {
  205. this.loadData(nextProps.uid);
  206. this.state.tabKey = "1";
  207. };
  208. },
  209. render() {
  210. const { getFieldDecorator } = this.props.form;
  211. const FormItem = Form.Item
  212. const formItemLayout = {
  213. labelCol: { span: 6 },
  214. wrapperCol: { span: 12 },
  215. };
  216. return (
  217. <Form horizontal onSubmit={this.handleSubmit} className="person-form">
  218. <Tabs defaultActiveKey="1" activeKey={this.state.tabKey} onChange={(e) => { this.setState({ tabKey: e }); }}>
  219. <Tabs.TabPane tab="基本资料" key="1">
  220. <FormItem
  221. {...formItemLayout}
  222. label="公司名称" >
  223. {getFieldDecorator('unitName')(
  224. <span>{this.state.unitName}</span>
  225. )}
  226. </FormItem>
  227. <FormItem
  228. {...formItemLayout}
  229. label="认证名称" >
  230. {getFieldDecorator('aftUsername', {
  231. initialValue: this.state.aftUsername
  232. })(
  233. <span>{this.state.aftUsername}</span>
  234. )}
  235. </FormItem>
  236. <FormItem
  237. {...formItemLayout}
  238. label="身份类型" >
  239. {getFieldDecorator('identityType')(
  240. <span>{this.state.eduLvlObj[this.state.identityType]}</span>
  241. )}
  242. </FormItem>
  243. <FormItem
  244. {...formItemLayout}
  245. label="第一联系人" >
  246. {getFieldDecorator('firstContacts')(
  247. <span>{this.state.firstContacts}</span>
  248. )}
  249. </FormItem>
  250. <FormItem
  251. {...formItemLayout}
  252. label="第一联系人电话" >
  253. {getFieldDecorator('firstMobile')(
  254. <span>{this.state.firstMobile}</span>
  255. )}
  256. </FormItem>
  257. <FormItem
  258. {...formItemLayout}
  259. label="第二联系人" >
  260. {getFieldDecorator('secondContacts')(
  261. <span>{this.state.secondContacts}</span>
  262. )}
  263. </FormItem>
  264. <FormItem
  265. {...formItemLayout}
  266. label="第二联系人电话" >
  267. {getFieldDecorator('secondMobile')(
  268. <span>{this.state.secondMobile}</span>
  269. )}
  270. </FormItem>
  271. <FormItem
  272. {...formItemLayout}
  273. label="第三联系人" >
  274. {getFieldDecorator('thirdContacts')(
  275. <span>{this.state.thirdContacts}</span>
  276. )}
  277. </FormItem>
  278. <FormItem
  279. {...formItemLayout}
  280. label="第三联系人电话"
  281. >
  282. {getFieldDecorator('thirdMobile')(
  283. <span>{this.state.thirdMobile}</span>
  284. )}
  285. </FormItem>
  286. </Tabs.TabPane>
  287. <Tabs.TabPane tab="认证信息" key="2">
  288. <FormItem
  289. {...formItemLayout}
  290. label="法人" >
  291. {getFieldDecorator('legalPerson')(
  292. <span>{this.state.legalPerson}</span>
  293. )}
  294. </FormItem>
  295. <FormItem
  296. {...formItemLayout}
  297. label="法人身份证号" >
  298. {getFieldDecorator('legalPersonIdCard')(
  299. <span>{this.state.legalPersonIdCard}</span>
  300. )}
  301. </FormItem>
  302. <FormItem
  303. {...formItemLayout}
  304. label="注册资金" >
  305. {getFieldDecorator('registeredCapital')(
  306. <span>{this.state.registeredCapital}</span>
  307. )}
  308. </FormItem>
  309. <FormItem
  310. {...formItemLayout}
  311. label="营业执照编号" >
  312. {getFieldDecorator('licenceNumber')(
  313. <span>{this.state.licenceNumber}</span>
  314. )}
  315. </FormItem>
  316. <FormItem
  317. {...formItemLayout}
  318. label="营业执照所在地" >
  319. {getFieldDecorator('licenceAddress', {
  320. initialValue: this.state.licenceAddress
  321. })(
  322. <span>{getProvince(this.state.licenceProvince, this.state.licenceCity, this.state.licenceArea)}</span>
  323. )}
  324. </FormItem>
  325. <FormItem
  326. labelCol={{ span: 6 }}
  327. wrapperCol={{ span: 18 }}
  328. label="营业执照图片" >
  329. <div className="idcard-img clearfix">
  330. {this.state.licenceScanningUrl ? <div>
  331. <div className="idcard-imgbox">
  332. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
  333. onClick={(e) => { window.open(e.target.src) }} />
  334. </div>
  335. </div> : <div>
  336. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  337. </div>}
  338. </div>
  339. </FormItem>
  340. <FormItem
  341. {...formItemLayout}
  342. label="组织机构代码" >
  343. {getFieldDecorator('orgCode')(
  344. <span>{this.state.orgCode}</span>
  345. )}
  346. </FormItem>
  347. <FormItem
  348. labelCol={{ span: 6 }}
  349. wrapperCol={{ span: 18 }}
  350. label="组织机构代码证图片" >
  351. <div className="idcard-img clearfix">
  352. {this.state.orgCodeUrl ? <div>
  353. <div className="idcard-imgbox">
  354. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
  355. onClick={(e) => { window.open(e.target.src) }} />
  356. </div>
  357. </div> : <div>
  358. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  359. </div>}
  360. </div>
  361. </FormItem>
  362. <FormItem
  363. labelCol={{ span: 6 }}
  364. wrapperCol={{ span: 18 }}
  365. label="上年度纳税报表" >
  366. <div className="idcard-img clearfix">
  367. {this.state.lastYearTaxReportUrl ? <div>
  368. <div className="idcard-imgbox">
  369. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
  370. onClick={(e) => { window.open(e.target.src) }} />
  371. </div>
  372. </div> : <div>
  373. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  374. </div>}
  375. </div>
  376. </FormItem>
  377. <FormItem
  378. {...formItemLayout}
  379. label="开户银行" >
  380. {getFieldDecorator('banks')(
  381. <span>{this.state.banks}</span>
  382. )}
  383. </FormItem>
  384. <FormItem
  385. {...formItemLayout}
  386. label="开户银行支行" >
  387. {getFieldDecorator('bankBranch')(
  388. <span>{this.state.bankBranch}</span>
  389. )}
  390. </FormItem>
  391. <FormItem
  392. {...formItemLayout}
  393. label="银行卡号" >
  394. {getFieldDecorator('bankCardNumber')(
  395. <span>{this.state.bankCardNumber}</span>
  396. )}
  397. </FormItem>
  398. <FormItem
  399. {...formItemLayout}
  400. label="开户行所在地" >
  401. {getFieldDecorator('locationAddress', {
  402. initialValue: this.state.locationAddress
  403. })(
  404. <span>{getProvince(this.state.locationProvince, this.state.locationCity, this.state.locationArea)}</span>
  405. )}
  406. </FormItem>
  407. <FormItem
  408. {...formItemLayout}
  409. label="认证状态" >
  410. {getFieldDecorator('auditStatus', {
  411. initialValue: this.state.auditStatus
  412. })(
  413. <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
  414. onChange={(e) => { this.state.auditStatus = e }}>
  415. {
  416. auditStatusList.map(function (item, i) {
  417. return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
  418. })
  419. }
  420. </Select>
  421. )}
  422. </FormItem>
  423. <FormItem
  424. {...formItemLayout}
  425. label="业务员" >
  426. {getFieldDecorator('aid', {
  427. initialValue: this.state.aid
  428. })(
  429. <Select placeholder="选择一个业务员" style={{ width: 200 }}>
  430. {this.state.technicianOption}
  431. </Select>
  432. )}
  433. </FormItem>
  434. <FormItem
  435. {...formItemLayout}
  436. label="客户经理" >
  437. {getFieldDecorator('mid', {
  438. initialValue: this.state.mid
  439. })(
  440. <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
  441. {this.state.accountManagerOption}
  442. </Select>
  443. )}
  444. </FormItem>
  445. </Tabs.TabPane>
  446. </Tabs>
  447. <FormItem wrapperCol={{ span: 12, offset: 4 }}>
  448. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  449. <Button className="set-submit" type="ghost" onClick={() => { this.props.closeDesc }} >取消</Button>
  450. </FormItem>
  451. </Form >
  452. );
  453. }
  454. }));
  455. const OrgCertify = Form.create()(React.createClass({
  456. getInitialState() {
  457. return {
  458. loading: false,
  459. tabKey: "1",
  460. saveSign: "save",
  461. eduLvlOption: [],
  462. auditStatusOption: []
  463. };
  464. },
  465. loadData(uid) {
  466. this.state.data = [];
  467. this.setState({
  468. loading: true
  469. });
  470. $.ajax({
  471. method: "post",
  472. dataType: "json",
  473. crossDomain: false,
  474. url: globalConfig.context + "/api/admin/orgDetail",
  475. data: {
  476. uid: uid
  477. },
  478. success: function (data) {
  479. let thisData = data.data;
  480. if (!thisData) {
  481. if (data.error && data.error.length) {
  482. message.warning(data.error[0].message);
  483. };
  484. thisData = {};
  485. };
  486. this.setState({
  487. id: thisData.id,
  488. licenceAddress: [thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea],
  489. locationAddress: [thisData.locationProvince, thisData.locationCity, thisData.locationArea],
  490. contacts: thisData.contacts,
  491. contactMobile: thisData.contactMobile,
  492. fixedTel: thisData.fixedTel,
  493. qq: thisData.qq,
  494. postalAddress: thisData.postalAddress,
  495. postcode: thisData.postcode,
  496. aftUsername: thisData.aftUsername,
  497. unitName: thisData.unitName,
  498. identityType: thisData.identityType, //组织性质
  499. registeredCapital: thisData.registeredCapital, //注册资金
  500. firstContacts: thisData.firstContacts,
  501. firstMobile: thisData.firstMobile,
  502. secondContacts: thisData.secondContacts,
  503. secondMobile: thisData.secondMobile,
  504. thirdContacts: thisData.thirdContacts,
  505. thirdMobile: thisData.thirdMobile,
  506. legalPerson: thisData.legalPerson,
  507. legalPersonIdCard: thisData.legalPersonIdCard,
  508. licenceNumber: thisData.licenceNumber,
  509. licenceScanningUrl: thisData.licenceScanningUrl,
  510. orgCode: thisData.orgCode,
  511. orgCodeUrl: thisData.orgCodeUrl,
  512. bankAccount: thisData.bankAccount,
  513. banks: thisData.banks,
  514. bankBranch: thisData.bankBranch,
  515. bankCardNumber: thisData.bankCardNumber,
  516. validationAmount: thisData.validationAmount, //打款金额
  517. paymentDate: thisData.paymentDate,
  518. paymentDateFormattedDate: thisData.paymentDateFormattedDate,
  519. lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
  520. auditStatus: thisData.auditStatus,
  521. level: thisData.level,
  522. aid: thisData.aid, //业务员ID
  523. mid: thisData.mid //客户经理ID
  524. });
  525. this.props.form.resetFields();
  526. }.bind(this),
  527. }).always(function () {
  528. this.setState({
  529. loading: false
  530. });
  531. }.bind(this));
  532. },
  533. handleSubmit(e) {
  534. if (e) {
  535. e.preventDefault();
  536. };
  537. this.props.form.validateFields((err, values) => {
  538. if (!err) {
  539. this.setState({
  540. loading: true
  541. });
  542. // //金额判断
  543. // if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
  544. // message.warning('请输入0-100以内的金额');
  545. // return;
  546. // };
  547. if ((this.state.auditStatus == "5" && values.level == "0") || (this.state.auditStatus != "5" && values.level != "0")) {
  548. message.warning('认证状态和用户等级不匹配!');
  549. return;
  550. };
  551. $.ajax({
  552. method: "POST",
  553. dataType: "json",
  554. crossDomain: false,
  555. url: globalConfig.context + "/api/admin/updateOrgDetail",
  556. data: {
  557. uid: this.props.uid,
  558. id: this.state.id,
  559. contacts: values.contacts,
  560. contactMobile: values.contactMobile,
  561. postalAddress: values.postalAddress,
  562. postcode: values.postcode,
  563. aftUsername: values.aftUsername,
  564. unitName: values.unitName,
  565. identityType: values.identityType, //组织性质
  566. registeredCapital: values.registeredCapital, //注册资金
  567. legalPerson: values.legalPerson,
  568. legalPersonIdCard: values.legalPersonIdCard,
  569. licenceNumber: values.licenceNumber,
  570. orgCode: values.orgCode,
  571. firstContacts: values.firstContacts,
  572. firstMobile: values.firstMobile,
  573. secondContacts: values.secondContacts,
  574. secondMobile: values.secondMobile,
  575. thirdContacts: values.thirdContacts,
  576. thirdMobile: values.thirdMobile,
  577. bankAccount: values.bankAccount,
  578. banks: values.banks,
  579. bankBranch: values.bankBranch,
  580. bankCardNumber: values.bankCardNumber,
  581. validationAmount: values.validationAmount, //打款金额
  582. paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
  583. licenceScanningUrl: this.state.licenceScanningUrl,
  584. orgCodeUrl: this.state.orgCodeUrl,
  585. lastYearTaxReportUrl: this.state.lastYearTaxReportUrl,
  586. //process: this.state.process,
  587. licenceArea: values.licenceAddress[2],
  588. licenceCity: values.licenceAddress[1],
  589. licenceProvince: values.licenceAddress[0],
  590. locationArea: values.locationAddress[2],
  591. locationCity: values.locationAddress[1],
  592. locationProvince: values.locationAddress[0],
  593. //auditStatus: this.state.auditStatus,
  594. level: values.level,
  595. aid: values.aid, //指派业务员ID
  596. mid: values.mid, //指派客户经理ID
  597. saveSign: this.state.saveSign
  598. }
  599. }).done(function (data) {
  600. if (!data.error.length) {
  601. message.success('保存成功!');
  602. } else {
  603. message.warning(data.error[0].message);
  604. }
  605. }.bind(this)).always(function () {
  606. this.setState({
  607. loading: false,
  608. saveSign: "save"
  609. });
  610. this.props.handleOk();
  611. }.bind(this));
  612. }
  613. });
  614. },
  615. handleCancel() {
  616. this.props.closeDesc(false);
  617. },
  618. componentWillMount() {
  619. let _me = this;
  620. eduLevelList.map(function (item, i) {
  621. _me.state.eduLvlOption.push(
  622. <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
  623. );
  624. });
  625. this.loadData(this.props.uid);
  626. },
  627. componentWillReceiveProps(nextProps) {
  628. if (!this.props.visible && nextProps.visible) {
  629. this.loadData(nextProps.uid);
  630. this.state.tabKey = "1";
  631. };
  632. },
  633. render() {
  634. const { getFieldDecorator } = this.props.form;
  635. const FormItem = Form.Item
  636. const formItemLayout = {
  637. labelCol: { span: 6 },
  638. wrapperCol: { span: 12 },
  639. };
  640. return (
  641. <Form horizontal onSubmit={this.handleSubmit} className="person-form">
  642. <Tabs defaultActiveKey="1" activeKey={this.state.tabKey} onChange={(e) => { this.setState({ tabKey: e }); }}>
  643. <Tabs.TabPane tab="基本资料" key="1">
  644. <FormItem
  645. {...formItemLayout}
  646. label="公司名称" >
  647. {getFieldDecorator('unitName', {
  648. initialValue: this.state.unitName
  649. })(
  650. <Input />
  651. )}
  652. </FormItem>
  653. <FormItem
  654. {...formItemLayout}
  655. label="认证名称" >
  656. {getFieldDecorator('aftUsername', {
  657. initialValue: this.state.aftUsername
  658. })(
  659. <Input />
  660. )}
  661. </FormItem>
  662. <FormItem
  663. {...formItemLayout}
  664. label="身份类型" >
  665. {getFieldDecorator('identityType', {
  666. initialValue: this.state.identityType
  667. })(
  668. <Select placeholder="身份类型" style={{ width: 200 }}
  669. onChange={(e) => { this.state.identityType = e }}>
  670. {this.state.eduLvlOption}
  671. </Select>
  672. )}
  673. </FormItem>
  674. <FormItem
  675. {...formItemLayout}
  676. label="第一联系人" >
  677. {getFieldDecorator('firstContacts', {
  678. initialValue: this.state.firstContacts
  679. })(
  680. <Input />
  681. )}
  682. </FormItem>
  683. <FormItem
  684. {...formItemLayout}
  685. label="第一联系人电话" >
  686. {getFieldDecorator('firstMobile', {
  687. initialValue: this.state.firstMobile
  688. })(
  689. <Input />
  690. )}
  691. </FormItem>
  692. <FormItem
  693. {...formItemLayout}
  694. label="第二联系人" >
  695. {getFieldDecorator('secondContacts', {
  696. initialValue: this.state.secondContacts
  697. })(
  698. <Input />
  699. )}
  700. </FormItem>
  701. <FormItem
  702. {...formItemLayout}
  703. label="第二联系人电话" >
  704. {getFieldDecorator('secondMobile', {
  705. initialValue: this.state.secondMobile
  706. })(
  707. <Input />
  708. )}
  709. </FormItem>
  710. <FormItem
  711. {...formItemLayout}
  712. label="第三联系人" >
  713. {getFieldDecorator('thirdContacts', {
  714. initialValue: this.state.thirdContacts
  715. })(
  716. <Input />
  717. )}
  718. </FormItem>
  719. <FormItem
  720. {...formItemLayout}
  721. label="第三联系人电话" >
  722. {getFieldDecorator('thirdMobile', {
  723. initialValue: this.state.thirdMobile
  724. })(
  725. <Input />
  726. )}
  727. </FormItem>
  728. </Tabs.TabPane>
  729. <Tabs.TabPane tab="认证信息" key="2">
  730. <FormItem
  731. {...formItemLayout}
  732. label="法人" >
  733. {getFieldDecorator('legalPerson', {
  734. initialValue: this.state.legalPerson
  735. })(
  736. <Input />
  737. )}
  738. </FormItem>
  739. <FormItem
  740. {...formItemLayout}
  741. label="法人身份证号" >
  742. {getFieldDecorator('legalPersonIdCard', {
  743. initialValue: this.state.legalPersonIdCard
  744. })(
  745. <Input />
  746. )}
  747. </FormItem>
  748. <FormItem
  749. {...formItemLayout}
  750. label="注册资金" >
  751. {getFieldDecorator('registeredCapital', {
  752. initialValue: this.state.registeredCapital
  753. })(
  754. <Input />
  755. )}
  756. </FormItem>
  757. <FormItem
  758. {...formItemLayout}
  759. label="营业执照编号" >
  760. {getFieldDecorator('licenceNumber', {
  761. initialValue: this.state.licenceNumber
  762. })(
  763. <Input />
  764. )}
  765. </FormItem>
  766. <FormItem
  767. {...formItemLayout}
  768. label="营业执照所在地" >
  769. {getFieldDecorator('licenceAddress', {
  770. initialValue: this.state.licenceAddress
  771. })(
  772. <Cascader options={areaSelect()} placeholder="请选择地址" />
  773. )}
  774. </FormItem>
  775. <FormItem
  776. labelCol={{ span: 6 }}
  777. wrapperCol={{ span: 18 }}
  778. label="营业执照图片" >
  779. <div className="idcard-img clearfix">
  780. {this.state.licenceScanningUrl ? <div>
  781. <div className="idcard-imgbox">
  782. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
  783. onClick={(e) => { window.open(e.target.src) }} />
  784. </div>
  785. </div> : <div>
  786. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  787. </div>}
  788. <Upload
  789. name="licence"
  790. action={globalConfig.context + "/api/admin/userCertify/upload"}
  791. data={{
  792. 'uid': this.props.uid,
  793. 'sign': 'licence'
  794. }}
  795. beforeUpload={beforeUploadFile}
  796. showUploadList={false}
  797. onChange={(info) => {
  798. if (info.file.status !== 'uploading') {
  799. console.log(info.file, info.fileList);
  800. }
  801. if (info.file.status === 'done') {
  802. if (!info.file.response.error.length) {
  803. message.success(`${info.file.name} 文件上传成功!`);
  804. } else {
  805. message.warning(info.file.response.error[0].message);
  806. return;
  807. };
  808. this.state.licenceScanningUrl = info.file.response.data;
  809. } else if (info.file.status === 'error') {
  810. message.error(`${info.file.name} 文件上传失败。`);
  811. }
  812. }} >
  813. <Button><Icon type="upload" /> 上传营业执照 </Button>
  814. </Upload>
  815. </div>
  816. </FormItem>
  817. <FormItem
  818. {...formItemLayout}
  819. label="组织机构代码" >
  820. {getFieldDecorator('orgCode', {
  821. initialValue: this.state.orgCode
  822. })(
  823. <Input />
  824. )}
  825. </FormItem>
  826. <FormItem
  827. labelCol={{ span: 6 }}
  828. wrapperCol={{ span: 18 }}
  829. label="组织机构代码证图片" >
  830. <div className="idcard-img clearfix">
  831. {this.state.orgCodeUrl ? <div>
  832. <div className="idcard-imgbox">
  833. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
  834. onClick={(e) => { window.open(e.target.src) }} />
  835. </div>
  836. </div> : <div>
  837. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  838. </div>}
  839. <Upload
  840. name="orgCode"
  841. action={globalConfig.context + "/api/admin/userCertify/upload"}
  842. data={{ 'uid': this.props.uid, 'sign': 'orgcode' }}
  843. beforeUpload={beforeUploadFile}
  844. showUploadList={false}
  845. onChange={(info) => {
  846. if (info.file.status !== 'uploading') {
  847. console.log(info.file, info.fileList);
  848. }
  849. if (info.file.status === 'done') {
  850. if (!info.file.response.error.length) {
  851. message.success(`${info.file.name} 文件上传成功!`);
  852. } else {
  853. message.warning(info.file.response.error[0].message);
  854. return;
  855. };
  856. this.state.orgCodeUrl = info.file.response.data;
  857. } else if (info.file.status === 'error') {
  858. message.error(`${info.file.name} 文件上传失败。`);
  859. }
  860. }} >
  861. <Button><Icon type="upload" /> 上传组织机构代码证 </Button>
  862. </Upload>
  863. </div>
  864. </FormItem>
  865. <FormItem
  866. labelCol={{ span: 6 }}
  867. wrapperCol={{ span: 18 }}
  868. label="上年度纳税报表" >
  869. <div className="idcard-img clearfix">
  870. {this.state.lastYearTaxReportUrl ? <div>
  871. <div className="idcard-imgbox">
  872. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
  873. onClick={(e) => { window.open(e.target.src) }} />
  874. </div>
  875. </div> : <div>
  876. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  877. </div>}
  878. <Upload
  879. name="ratepay"
  880. action={globalConfig.context + "/api/admin/userCertify/upload"}
  881. data={{ 'uid': this.props.uid, 'sign': 'ratepay' }}
  882. beforeUpload={beforeUploadFile}
  883. showUploadList={false}
  884. onChange={(info) => {
  885. if (info.file.status !== 'uploading') {
  886. console.log(info.file, info.fileList);
  887. }
  888. if (info.file.status === 'done') {
  889. if (!info.file.response.error.length) {
  890. message.success(`${info.file.name} 文件上传成功!`);
  891. } else {
  892. message.warning(info.file.response.error[0].message);
  893. return;
  894. };
  895. this.state.lastYearTaxReportUrl = info.file.response.data;
  896. } else if (info.file.status === 'error') {
  897. message.error(`${info.file.name} 文件上传失败。`);
  898. }
  899. }} >
  900. <Button><Icon type="upload" /> 上传上年度纳税表 </Button>
  901. </Upload>
  902. </div>
  903. </FormItem>
  904. <FormItem
  905. {...formItemLayout}
  906. label="开户银行" >
  907. {getFieldDecorator('banks', {
  908. initialValue: this.state.banks
  909. })(
  910. <Input />
  911. )}
  912. </FormItem>
  913. <FormItem
  914. {...formItemLayout}
  915. label="开户银行支行" >
  916. {getFieldDecorator('bankBranch', {
  917. initialValue: this.state.bankBranch
  918. })(
  919. <Input />
  920. )}
  921. </FormItem>
  922. <FormItem
  923. {...formItemLayout}
  924. label="银行卡号" >
  925. {getFieldDecorator('bankCardNumber', {
  926. initialValue: this.state.bankCardNumber
  927. })(
  928. <Input />
  929. )}
  930. </FormItem>
  931. <FormItem
  932. {...formItemLayout}
  933. label="开户行所在地" >
  934. {getFieldDecorator('locationAddress', {
  935. initialValue: this.state.locationAddress
  936. })(
  937. <Cascader options={areaSelect()} placeholder="请选择地址" />
  938. )}
  939. </FormItem>
  940. <FormItem
  941. {...formItemLayout}
  942. label="用户等级" >
  943. {getFieldDecorator('level', {
  944. initialValue: this.state.level
  945. })(
  946. <Select placeholder="选择要修改的用户等级" style={{ width: 200 }} >
  947. <Select.Option value="0" >Lv.0</Select.Option>
  948. <Select.Option value="1" >Lv.1</Select.Option>
  949. <Select.Option value="2" >Lv.2</Select.Option>
  950. <Select.Option value="3" >Lv.3</Select.Option>
  951. <Select.Option value="4" >Lv.4</Select.Option>
  952. <Select.Option value="5" >Lv.5</Select.Option>
  953. </Select>
  954. )}
  955. </FormItem>
  956. <FormItem
  957. {...formItemLayout}
  958. label="认证状态" >
  959. {getFieldDecorator('auditStatus')(
  960. <span>{getAuditState(this.state.auditStatus)}</span>
  961. )}
  962. </FormItem>
  963. <FormItem
  964. {...formItemLayout}
  965. label="业务员" >
  966. {getFieldDecorator('aid')(
  967. <span>{this.props.data.adminName}</span>
  968. )}
  969. </FormItem>
  970. <FormItem
  971. {...formItemLayout}
  972. label="客户经理" >
  973. {getFieldDecorator('mid')(
  974. <span>{this.props.data.managerName}</span>
  975. )}
  976. </FormItem>
  977. </Tabs.TabPane>
  978. </Tabs>
  979. <FormItem wrapperCol={{ span: 12, offset: 4 }}>
  980. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  981. <Button className="set-submit" type="ghost"
  982. onClick={() => {
  983. this.state.saveSign = "submit";
  984. this.handleSubmit();
  985. }}>提交审核</Button>
  986. </FormItem>
  987. </Form >
  988. );
  989. }
  990. }));
  991. const OrgDesc = React.createClass({
  992. getInitialState() {
  993. return {
  994. visible: false,
  995. loading: false
  996. };
  997. },
  998. showModal() {
  999. this.setState({
  1000. visible: true,
  1001. });
  1002. },
  1003. handleCancel(e) {
  1004. this.setState({
  1005. visible: false,
  1006. });
  1007. this.props.closeDesc(false);
  1008. },
  1009. handleOk(e) {
  1010. this.setState({
  1011. visible: false,
  1012. });
  1013. this.props.closeDesc(false, true);
  1014. },
  1015. componentWillReceiveProps(nextProps) {
  1016. this.state.visible = nextProps.showDesc;
  1017. },
  1018. render() {
  1019. if (this.props.data) {
  1020. return (
  1021. <div className="patent-desc">
  1022. <Spin spinning={this.state.loading} className='spin-box'>
  1023. <Modal maskClosable={false} title="用户详情" visible={this.state.visible}
  1024. onCancel={this.handleCancel}
  1025. width='600px'
  1026. footer=''
  1027. className="admin-desc-content">
  1028. {window.showAuditStatus ? <OrgShow
  1029. uid={this.props.data.id}
  1030. data={this.props.data}
  1031. closeDesc={this.handleCancel}
  1032. visible={this.state.visible}
  1033. handleOk={this.handleOk} />
  1034. : <OrgCertify
  1035. uid={this.props.data.id}
  1036. data={this.props.data}
  1037. closeDesc={this.handleCancel}
  1038. visible={this.state.visible}
  1039. handleOk={this.handleOk} />}
  1040. </Modal>
  1041. </Spin>
  1042. </div>
  1043. );
  1044. } else {
  1045. return <div></div>
  1046. }
  1047. },
  1048. });
  1049. export default OrgDesc;
  1050. // <FormItem
  1051. // {...formItemLayout}
  1052. // label="打款金额"
  1053. // >
  1054. // {getFieldDecorator('validationAmount', {
  1055. // initialValue: this.state.validationAmount
  1056. // })(
  1057. // <Input />
  1058. // )}
  1059. // </FormItem>
  1060. // <FormItem
  1061. // {...formItemLayout}
  1062. // label="打款日期"
  1063. // >
  1064. // {getFieldDecorator('paymentDateFormattedDate', {
  1065. // initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null
  1066. // })(
  1067. // <DatePicker />
  1068. // )}
  1069. // </FormItem>