orgDesc.jsx 33 KB

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