orgDesc.jsx 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  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 { provinceSelect, beforeUploadFile } from '../../tools.js';
  9. const OrgCertify = Form.create()(React.createClass({
  10. getInitialState() {
  11. return {
  12. visible: false,
  13. loading: false,
  14. tabKey: "1",
  15. eduLvlOption: [],
  16. auditStatusOption: []
  17. };
  18. },
  19. loadData(uid) {
  20. this.state.data = [];
  21. this.setState({
  22. loading: true
  23. });
  24. $.ajax({
  25. method: window.showAuditStatus ? "get" : "post",
  26. dataType: "json",
  27. crossDomain: false,
  28. url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/orgDetail" : globalConfig.context + "/api/admin/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. licenceAddress: [thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea],
  43. locationAddress: [thisData.locationProvince, thisData.locationCity, thisData.locationArea],
  44. contacts: thisData.contacts,
  45. contactMobile: thisData.contactMobile,
  46. fixedTel: thisData.fixedTel,
  47. qq: thisData.qq,
  48. postalAddress: thisData.postalAddress,
  49. postcode: thisData.postcode,
  50. aftUsername: thisData.aftUsername,
  51. unitName: thisData.unitName,
  52. identityType: thisData.identityType, //组织性质
  53. registeredCapital: thisData.registeredCapital, //注册资金
  54. firstContacts: thisData.firstContacts,
  55. firstMobile: thisData.firstMobile,
  56. secondContacts: thisData.secondContacts,
  57. secondMobile: thisData.secondMobile,
  58. thirdContacts: thisData.thirdContacts,
  59. thirdMobile: thisData.thirdMobile,
  60. legalPerson: thisData.legalPerson,
  61. legalPersonIdCard: thisData.legalPersonIdCard,
  62. licenceNumber: thisData.licenceNumber,
  63. licenceScanningUrl: thisData.licenceScanningUrl,
  64. orgCode: thisData.orgCode,
  65. orgCodeUrl: thisData.orgCodeUrl,
  66. bankAccount: thisData.bankAccount,
  67. banks: thisData.banks,
  68. bankBranch: thisData.bankBranch,
  69. bankCardNumber: thisData.bankCardNumber,
  70. validationAmount: thisData.validationAmount, //打款金额
  71. paymentDate: thisData.paymentDate,
  72. paymentDateFormattedDate: thisData.paymentDateFormattedDate,
  73. lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
  74. auditStatus: thisData.auditStatus,
  75. aid: thisData.aid, //业务员ID
  76. mid: thisData.mid //客户经理ID
  77. });
  78. this.props.form.resetFields();
  79. }.bind(this),
  80. }).always(function () {
  81. this.setState({
  82. loading: false
  83. });
  84. }.bind(this));
  85. },
  86. getAuthorList() {
  87. this.setState({
  88. loading: true
  89. });
  90. $.ajax({
  91. method: "get",
  92. dataType: "json",
  93. crossDomain: false,
  94. url: globalConfig.context + "/api/admin/getPrincipal",
  95. success: function (data) {
  96. let theArr = [];
  97. if (!data.data) {
  98. if (data.error && data.error.length) {
  99. message.warning(data.error[0].message);
  100. };
  101. return;
  102. };
  103. for (var item in data.data) {
  104. theArr.push(
  105. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  106. )
  107. };
  108. this.setState({
  109. authorOption: theArr
  110. });
  111. }.bind(this),
  112. }).always(function () {
  113. this.setState({
  114. loading: false
  115. });
  116. }.bind(this));
  117. },
  118. handleSubmit(e) {
  119. e.preventDefault();
  120. this.props.form.validateFields((err, values) => {
  121. if (!err) {
  122. this.setState({
  123. loading: true
  124. });
  125. //金额判断
  126. if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
  127. message.warning('请输入0-100以内的金额');
  128. return;
  129. };
  130. $.ajax({
  131. method: "POST",
  132. dataType: "json",
  133. crossDomain: false,
  134. url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/updateOrgDetail" : globalConfig.context + "/api/admin/updateOrgDetail",
  135. data: {
  136. uid: this.props.uid,
  137. id: this.state.id,
  138. contacts: values.contacts,
  139. contactMobile: values.contactMobile,
  140. postalAddress: values.postalAddress,
  141. postcode: values.postcode,
  142. aftUsername: values.aftUsername,
  143. unitName: values.unitName,
  144. identityType: values.identityType, //组织性质
  145. registeredCapital: values.registeredCapital, //注册资金
  146. legalPerson: values.legalPerson,
  147. legalPersonIdCard: values.legalPersonIdCard,
  148. licenceNumber: values.licenceNumber,
  149. orgCode: values.orgCode,
  150. firstContacts: values.firstContacts,
  151. firstMobile: values.firstMobile,
  152. secondContacts: values.secondContacts,
  153. secondMobile: values.secondMobile,
  154. thirdContacts: values.thirdContacts,
  155. thirdMobile: values.thirdMobile,
  156. bankAccount: values.bankAccount,
  157. banks: values.banks,
  158. bankBranch: values.bankBranch,
  159. bankCardNumber: values.bankCardNumber,
  160. validationAmount: values.validationAmount, //打款金额
  161. paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
  162. auditStatus: values.auditStatus,
  163. licenceScanningUrl: this.state.licenceScanningUrl,
  164. orgCodeUrl: this.state.orgCodeUrl,
  165. lastYearTaxReportUrl: this.state.lastYearTaxReportUrl,
  166. //process: this.state.process,
  167. licenceArea: values.licenceAddress[2],
  168. licenceCity: values.licenceAddress[1],
  169. licenceProvince: values.licenceAddress[0],
  170. locationArea: values.locationAddress[2],
  171. locationCity: values.locationAddress[1],
  172. locationProvince: values.locationAddress[0],
  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. visible: 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.eduLvlOption.push(
  198. <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
  199. );
  200. });
  201. auditStatusList.map(function (item, i) {
  202. _me.state.auditStatusOption.push(
  203. <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
  204. );
  205. });
  206. this.loadData(this.props.uid);
  207. this.getAuthorList();
  208. },
  209. componentWillReceiveProps(nextProps) {
  210. if (!this.props.visible && nextProps.visible) {
  211. this.loadData(nextProps.uid);
  212. this.state.tabKey = "1";
  213. };
  214. },
  215. render() {
  216. const { getFieldDecorator } = this.props.form;
  217. const FormItem = Form.Item
  218. const formItemLayout = {
  219. labelCol: { span: 6 },
  220. wrapperCol: { span: 12 },
  221. };
  222. return (
  223. <Form horizontal onSubmit={this.handleSubmit} className="person-form">
  224. <Tabs defaultActiveKey="1" activeKey={this.state.tabKey} onChange={(e) => { this.setState({ tabKey: e }); }}>
  225. <Tabs.TabPane tab="基本资料" key="1">
  226. <FormItem
  227. {...formItemLayout}
  228. label="公司名称"
  229. >
  230. {getFieldDecorator('unitName', {
  231. initialValue: this.state.unitName
  232. })(
  233. <Input />
  234. )}
  235. </FormItem>
  236. <FormItem
  237. {...formItemLayout}
  238. label="认证名称"
  239. >
  240. {getFieldDecorator('aftUsername', {
  241. initialValue: this.state.aftUsername
  242. })(
  243. <Input />
  244. )}
  245. </FormItem>
  246. <FormItem
  247. {...formItemLayout}
  248. label="身份类型"
  249. >
  250. {getFieldDecorator('identityType', {
  251. initialValue: this.state.identityType
  252. })(
  253. <Select placeholder="身份类型" style={{ width: 200 }}
  254. onChange={(e) => { this.state.identityType = e }}>
  255. {this.state.eduLvlOption}
  256. </Select>
  257. )}
  258. </FormItem>
  259. <FormItem
  260. {...formItemLayout}
  261. label="第一联系人"
  262. >
  263. {getFieldDecorator('firstContacts', {
  264. initialValue: this.state.firstContacts
  265. })(
  266. <Input />
  267. )}
  268. </FormItem>
  269. <FormItem
  270. {...formItemLayout}
  271. label="第一联系人电话"
  272. >
  273. {getFieldDecorator('firstMobile', {
  274. initialValue: this.state.firstMobile
  275. })(
  276. <Input />
  277. )}
  278. </FormItem>
  279. <FormItem
  280. {...formItemLayout}
  281. label="第二联系人"
  282. >
  283. {getFieldDecorator('secondContacts', {
  284. initialValue: this.state.secondContacts
  285. })(
  286. <Input />
  287. )}
  288. </FormItem>
  289. <FormItem
  290. {...formItemLayout}
  291. label="第二联系人电话"
  292. >
  293. {getFieldDecorator('secondMobile', {
  294. initialValue: this.state.secondMobile
  295. })(
  296. <Input />
  297. )}
  298. </FormItem>
  299. <FormItem
  300. {...formItemLayout}
  301. label="第三联系人"
  302. >
  303. {getFieldDecorator('thirdContacts', {
  304. initialValue: this.state.thirdContacts
  305. })(
  306. <Input />
  307. )}
  308. </FormItem>
  309. <FormItem
  310. {...formItemLayout}
  311. label="第三联系人电话"
  312. >
  313. {getFieldDecorator('thirdMobile', {
  314. initialValue: this.state.thirdMobile
  315. })(
  316. <Input />
  317. )}
  318. </FormItem>
  319. </Tabs.TabPane>
  320. <Tabs.TabPane tab="认证信息" key="2">
  321. <FormItem
  322. {...formItemLayout}
  323. label="法人"
  324. >
  325. {getFieldDecorator('legalPerson', {
  326. initialValue: this.state.legalPerson
  327. })(
  328. <Input />
  329. )}
  330. </FormItem>
  331. <FormItem
  332. {...formItemLayout}
  333. label="法人身份证号"
  334. >
  335. {getFieldDecorator('legalPersonIdCard', {
  336. initialValue: this.state.legalPersonIdCard
  337. })(
  338. <Input />
  339. )}
  340. </FormItem>
  341. <FormItem
  342. {...formItemLayout}
  343. label="注册资金"
  344. >
  345. {getFieldDecorator('registeredCapital', {
  346. initialValue: this.state.registeredCapital
  347. })(
  348. <Input />
  349. )}
  350. </FormItem>
  351. <FormItem
  352. {...formItemLayout}
  353. label="营业执照编号"
  354. >
  355. {getFieldDecorator('licenceNumber', {
  356. initialValue: this.state.licenceNumber
  357. })(
  358. <Input />
  359. )}
  360. </FormItem>
  361. <FormItem
  362. {...formItemLayout}
  363. label="营业执照所在地"
  364. >
  365. {getFieldDecorator('licenceAddress', {
  366. initialValue: this.state.licenceAddress
  367. })(
  368. <Cascader options={provinceSelect()} placeholder="请选择地址" />
  369. )}
  370. </FormItem>
  371. <FormItem
  372. labelCol={{ span: 6 }}
  373. wrapperCol={{ span: 18 }}
  374. label="营业执照图片"
  375. >
  376. <div className="idcard-img clearfix">
  377. {this.state.licenceScanningUrl ? <div>
  378. <div className="idcard-imgbox">
  379. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
  380. onClick={(e) => { window.open(e.target.src) }} />
  381. </div>
  382. </div> : <div>
  383. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  384. </div>}
  385. <Upload
  386. name="licence"
  387. action={globalConfig.context + "/api/admin/userCertify/upload"}
  388. data={{
  389. 'uid': this.props.uid,
  390. 'sign': 'licence'
  391. }}
  392. beforeUpload={beforeUploadFile}
  393. showUploadList={false}
  394. onChange={(info) => {
  395. if (info.file.status !== 'uploading') {
  396. console.log(info.file, info.fileList);
  397. }
  398. if (info.file.status === 'done') {
  399. if (!info.file.response.error.length) {
  400. message.success(`${info.file.name} 文件上传成功!`);
  401. } else {
  402. message.warning(info.file.response.error[0].message);
  403. return;
  404. };
  405. this.state.licenceScanningUrl = info.file.response.data;
  406. } else if (info.file.status === 'error') {
  407. message.error(`${info.file.name} 文件上传失败。`);
  408. }
  409. }}
  410. >
  411. <Button><Icon type="upload" /> 上传营业执照 </Button>
  412. </Upload>
  413. </div>
  414. </FormItem>
  415. <FormItem
  416. {...formItemLayout}
  417. label="组织机构代码"
  418. >
  419. {getFieldDecorator('orgCode', {
  420. initialValue: this.state.orgCode
  421. })(
  422. <Input />
  423. )}
  424. </FormItem>
  425. <FormItem
  426. labelCol={{ span: 6 }}
  427. wrapperCol={{ span: 18 }}
  428. label="组织机构代码证图片"
  429. >
  430. <div className="idcard-img clearfix">
  431. {this.state.orgCodeUrl ? <div>
  432. <div className="idcard-imgbox">
  433. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
  434. onClick={(e) => { window.open(e.target.src) }} />
  435. </div>
  436. </div> : <div>
  437. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  438. </div>}
  439. <Upload
  440. name="orgCode"
  441. action={globalConfig.context + "/api/admin/userCertify/upload"}
  442. data={{ 'uid': this.props.uid, 'sign': 'orgcode' }}
  443. beforeUpload={beforeUploadFile}
  444. showUploadList={false}
  445. onChange={(info) => {
  446. if (info.file.status !== 'uploading') {
  447. console.log(info.file, info.fileList);
  448. }
  449. if (info.file.status === 'done') {
  450. if (!info.file.response.error.length) {
  451. message.success(`${info.file.name} 文件上传成功!`);
  452. } else {
  453. message.warning(info.file.response.error[0].message);
  454. return;
  455. };
  456. this.state.orgCodeUrl = info.file.response.data;
  457. } else if (info.file.status === 'error') {
  458. message.error(`${info.file.name} 文件上传失败。`);
  459. }
  460. }}
  461. >
  462. <Button><Icon type="upload" /> 上传组织机构代码证 </Button>
  463. </Upload>
  464. </div>
  465. </FormItem>
  466. <FormItem
  467. labelCol={{ span: 6 }}
  468. wrapperCol={{ span: 18 }}
  469. label="上年度纳税报表"
  470. >
  471. <div className="idcard-img clearfix">
  472. {this.state.lastYearTaxReportUrl ? <div>
  473. <div className="idcard-imgbox">
  474. <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
  475. onClick={(e) => { window.open(e.target.src) }} />
  476. </div>
  477. </div> : <div>
  478. <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
  479. </div>}
  480. <Upload
  481. name="ratepay"
  482. action={globalConfig.context + "/api/admin/userCertify/upload"}
  483. data={{ 'uid': this.props.uid, 'sign': 'ratepay' }}
  484. beforeUpload={beforeUploadFile}
  485. showUploadList={false}
  486. onChange={(info) => {
  487. if (info.file.status !== 'uploading') {
  488. console.log(info.file, info.fileList);
  489. }
  490. if (info.file.status === 'done') {
  491. if (!info.file.response.error.length) {
  492. message.success(`${info.file.name} 文件上传成功!`);
  493. } else {
  494. message.warning(info.file.response.error[0].message);
  495. return;
  496. };
  497. this.state.lastYearTaxReportUrl = info.file.response.data;
  498. } else if (info.file.status === 'error') {
  499. message.error(`${info.file.name} 文件上传失败。`);
  500. }
  501. }}
  502. >
  503. <Button><Icon type="upload" /> 上传上年度纳税表 </Button>
  504. </Upload>
  505. </div>
  506. </FormItem>
  507. <FormItem
  508. {...formItemLayout}
  509. label="开户银行"
  510. >
  511. {getFieldDecorator('banks', {
  512. initialValue: this.state.banks
  513. })(
  514. <Input />
  515. )}
  516. </FormItem>
  517. <FormItem
  518. {...formItemLayout}
  519. label="开户银行支行"
  520. >
  521. {getFieldDecorator('bankBranch', {
  522. initialValue: this.state.bankBranch
  523. })(
  524. <Input />
  525. )}
  526. </FormItem>
  527. <FormItem
  528. {...formItemLayout}
  529. label="银行卡号"
  530. >
  531. {getFieldDecorator('bankCardNumber', {
  532. initialValue: this.state.bankCardNumber
  533. })(
  534. <Input />
  535. )}
  536. </FormItem>
  537. <FormItem
  538. {...formItemLayout}
  539. label="开户行所在地"
  540. >
  541. {getFieldDecorator('locationAddress', {
  542. initialValue: this.state.locationAddress
  543. })(
  544. <Cascader options={provinceSelect()} placeholder="请选择地址" />
  545. )}
  546. </FormItem>
  547. <div style={{ display: !window.showAuditStatus ? 'block' : 'none' }}>
  548. <FormItem
  549. {...formItemLayout}
  550. label="认证状态"
  551. >
  552. <span>
  553. {(() => {
  554. let _me = this, theStatus;
  555. auditStatusList.map(function (item) {
  556. if (_me.state.auditStatus == item.value) {
  557. theStatus = item.key;
  558. };
  559. });
  560. return theStatus;
  561. })()}
  562. </span>
  563. </FormItem>
  564. <FormItem
  565. {...formItemLayout}
  566. label="业务员"
  567. >
  568. {getFieldDecorator('aid', {
  569. initialValue: this.state.aid
  570. })(
  571. <Select placeholder="选择一个业务员" style={{ width: 200 }}>
  572. {this.state.authorOption}
  573. </Select>
  574. )}
  575. </FormItem>
  576. <FormItem
  577. {...formItemLayout}
  578. label="客户经理"
  579. >
  580. {getFieldDecorator('mid', {
  581. initialValue: this.state.mid
  582. })(
  583. <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
  584. {this.state.authorOption}
  585. </Select>
  586. )}
  587. </FormItem>
  588. </div>
  589. <div style={{ display: window.showAuditStatus ? 'block' : 'none' }}>
  590. <FormItem
  591. {...formItemLayout}
  592. label="认证状态"
  593. >
  594. {getFieldDecorator('auditStatus', {
  595. initialValue: this.state.auditStatus
  596. })(
  597. <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
  598. onChange={(e) => { this.state.auditStatus = e }}>
  599. {
  600. auditStatusList.map(function (item, i) {
  601. return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
  602. })
  603. }
  604. </Select>
  605. )}
  606. </FormItem>
  607. <FormItem
  608. {...formItemLayout}
  609. label="业务员"
  610. >
  611. {getFieldDecorator('aid', {
  612. initialValue: this.state.aid
  613. })(
  614. <Select placeholder="选择一个业务员" style={{ width: 200 }}>
  615. {this.state.authorOption}
  616. </Select>
  617. )}
  618. </FormItem>
  619. <FormItem
  620. {...formItemLayout}
  621. label="客户经理"
  622. >
  623. {getFieldDecorator('mid', {
  624. initialValue: this.state.mid
  625. })(
  626. <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
  627. {this.state.authorOption}
  628. </Select>
  629. )}
  630. </FormItem>
  631. </div>
  632. </Tabs.TabPane>
  633. </Tabs>
  634. <FormItem wrapperCol={{ span: 12, offset: 4 }}>
  635. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  636. <Button className="set-submit" type="ghost" onClick={this.handleCancel} >取消</Button>
  637. </FormItem>
  638. </Form >
  639. );
  640. }
  641. }));
  642. const OrgDesc = React.createClass({
  643. getInitialState() {
  644. return {
  645. visible: false,
  646. loading: false
  647. };
  648. },
  649. showModal() {
  650. this.setState({
  651. visible: true,
  652. });
  653. },
  654. handleCancel(e) {
  655. this.setState({
  656. visible: false,
  657. });
  658. this.props.closeDesc(false);
  659. },
  660. handleOk(e) {
  661. this.setState({
  662. visible: false,
  663. });
  664. this.props.closeDesc(false, true);
  665. },
  666. componentWillReceiveProps(nextProps) {
  667. this.state.visible = nextProps.showDesc;
  668. },
  669. render() {
  670. if (this.props.data) {
  671. return (
  672. <div className="patent-desc">
  673. <Spin spinning={this.state.loading} className='spin-box'>
  674. <Modal title="用户详情" visible={this.state.visible}
  675. onCancel={this.handleCancel}
  676. width='600px'
  677. footer=''
  678. className="admin-desc-content">
  679. <OrgCertify
  680. visible={this.state.visible}
  681. uid={this.props.data.id}
  682. closeDesc={this.handleCancel}
  683. handleOk={this.handleOk} />
  684. </Modal>
  685. </Spin>
  686. </div>
  687. );
  688. } else {
  689. return <div></div>
  690. }
  691. },
  692. });
  693. export default OrgDesc;
  694. // <FormItem
  695. // {...formItemLayout}
  696. // label="打款金额"
  697. // >
  698. // {getFieldDecorator('validationAmount', {
  699. // initialValue: this.state.validationAmount
  700. // })(
  701. // <Input />
  702. // )}
  703. // </FormItem>
  704. // <FormItem
  705. // {...formItemLayout}
  706. // label="打款日期"
  707. // >
  708. // {getFieldDecorator('paymentDateFormattedDate', {
  709. // initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null
  710. // })(
  711. // <DatePicker />
  712. // )}
  713. // </FormItem>