unit.jsx 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. /*
  2. @author:李霆
  3. @update:2018/05/29
  4. @descript:复制粘贴,拿起来就是干!!
  5. */
  6. import React from 'react';
  7. import {
  8. Radio,
  9. Icon,
  10. Button,
  11. Input,
  12. Select,
  13. Spin,
  14. message,
  15. DatePicker,
  16. Modal,
  17. Upload,
  18. Form,
  19. Row,
  20. Col,
  21. InputNumber
  22. } from 'antd';
  23. import $ from 'jquery/src/ajax';
  24. import './unit.less';
  25. import {
  26. socialAttribute,
  27. industry,
  28. } from '@/dataDic.js';
  29. import {
  30. splitUrl,
  31. } from '@/tools.js';
  32. const FormItem = Form.Item;
  33. //图片组件
  34. const PicturesWall = React.createClass({
  35. getInitialState() {
  36. return {
  37. previewVisible: false,
  38. previewImage: '',
  39. fileList: []
  40. };
  41. },
  42. handleCancel() {
  43. this.setState({
  44. previewVisible: false
  45. });
  46. },
  47. handlePreview(file) {
  48. this.setState({
  49. previewImage: file.url || file.thumbUrl,
  50. previewVisible: true
  51. });
  52. },
  53. handleChange(info) {
  54. let fileList = info.fileList;
  55. this.setState({
  56. fileList
  57. });
  58. this.props.fileList(fileList);
  59. },
  60. componentWillReceiveProps(nextProps) {
  61. this.state.fileList = nextProps.pictureUrl;
  62. },
  63. render() {
  64. const { previewVisible, previewImage, fileList } = this.state;
  65. const uploadButton = (
  66. <div>
  67. <Icon type="plus" />
  68. <div className="ant-upload-text">点击上传</div>
  69. </div>
  70. );
  71. return (
  72. <div style={{ display: 'inline-block' }}>
  73. <Upload
  74. action={globalConfig.context + '/api/user/uploadPicture'}
  75. data={{ sign: 'user_picture' }}
  76. listType="picture-card"
  77. fileList={fileList}
  78. onPreview={this.handlePreview}
  79. onChange={this.handleChange}
  80. >
  81. {fileList.length >= 1 ? null : uploadButton}
  82. </Upload>
  83. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  84. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  85. </Modal>
  86. </div>
  87. );
  88. }
  89. });
  90. const PicturesWallMore = React.createClass({
  91. getInitialState() {
  92. return {
  93. previewVisible: false,
  94. previewImage: '',
  95. fileList: []
  96. };
  97. },
  98. handleCancel() {
  99. this.setState({
  100. previewVisible: false
  101. });
  102. },
  103. handlePreview(file) {
  104. this.setState({
  105. previewImage: file.url || file.thumbUrl,
  106. previewVisible: true
  107. });
  108. },
  109. handleChange(info) {
  110. let fileList = info.fileList;
  111. this.setState({
  112. fileList
  113. });
  114. this.props.fileList(fileList);
  115. },
  116. componentWillReceiveProps(nextProps) {
  117. this.state.fileList = nextProps.pictureUrl;
  118. },
  119. render() {
  120. const { previewVisible, previewImage, fileList } = this.state;
  121. const uploadButton = (
  122. <div>
  123. <Icon type="plus" />
  124. <div className="ant-upload-text">点击上传</div>
  125. </div>
  126. );
  127. return (
  128. <div style={{ display: 'inline-block' }}>
  129. <Upload
  130. action={globalConfig.context + '/api/user/uploadHonerPicture'}
  131. data={{ sign: 'honor_picture' }}
  132. listType="picture-card"
  133. fileList={fileList}
  134. onPreview={this.handlePreview}
  135. onChange={this.handleChange}
  136. >
  137. {fileList.length >= 8 ? null : uploadButton}
  138. </Upload>
  139. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  140. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  141. </Modal>
  142. </div>
  143. );
  144. }
  145. });
  146. const Unit = React.createClass({
  147. getInitialState() {
  148. return {
  149. loading: false,
  150. orgCodeUrl: [],
  151. companyLogoUrl: [],
  152. ProvinceCity:[],
  153. qualiUrl:[]
  154. };
  155. },
  156. loadInformation(record) {
  157. this.setState({
  158. loading:true
  159. })
  160. $.ajax({
  161. method: 'get',
  162. dataType: 'json',
  163. url: globalConfig.context + '/api/user/getOrganizationDetail',
  164. success: function(data) {
  165. let thisData = data.data;
  166. if (!thisData) {
  167. if (data.error && data.error.length) {
  168. message.warning(data.error[0].message);
  169. }
  170. thisData = {};
  171. }
  172. // let ProvinceCityArr = [];
  173. // let ProvinceS = thisData.locationProvince; //getprovince
  174. // let citys = thisData.locationCity;
  175. // let Areas = thisData.locationArea;
  176. // ProvinceCityArr.push(ProvinceS, citys, Areas);
  177. this.setState({
  178. InformationId: thisData.id,
  179. InformationUid: thisData.uid,
  180. identifyName: thisData.identifyName,
  181. listed: thisData.listed,
  182. highTechZone: thisData.highTechZone,
  183. orgCodeUrl: thisData.orgCodeUrl
  184. ? splitUrl(thisData.orgCodeUrl, ',', globalConfig.avatarHost + '/upload')
  185. : [],
  186. companyLogoUrl: thisData.companyLogoUrl
  187. ? splitUrl(thisData.companyLogoUrl, ',', globalConfig.avatarHost + '/upload')
  188. : [],
  189. qualiUrl: thisData.honorPicture
  190. ? splitUrl(thisData.honorPicture, ',', globalConfig.avatarHost + '/upload')
  191. : [],
  192. dataInformation: thisData,
  193. //ProvinceCity: ProvinceCityArr[0] != null ? ProvinceCityArr : undefined,
  194. industry: String(thisData.industry) == 'null' ? undefined : String(thisData.industry),
  195. societyTag: thisData.societyTag || undefined,
  196. introduction: thisData.introduction,
  197. postalAddress: thisData.postalAddress,
  198. fixedTel: thisData.fixedTel,
  199. registeredCapital: thisData.registeredCapital,
  200. enterpriseScale: thisData.enterpriseScale,
  201. legalPerson: thisData.legalPerson,
  202. legalPersonIdCard: thisData.legalPersonIdCard,
  203. legalPersonTel: thisData.legalPersonTel,
  204. legalPersonEmail: thisData.legalPersonEmail,
  205. businessScope: thisData.businessScope,
  206. orgCode: thisData.orgCode,
  207. type:thisData.type,
  208. authentication:thisData.authentication
  209. });
  210. }.bind(this)
  211. }).always(
  212. function() {
  213. this.setState({
  214. loading: false
  215. });
  216. }.bind(this)
  217. );
  218. },
  219. //图片
  220. getOrgCodeUrl(e) {
  221. this.setState({
  222. orgCodeUrl: e
  223. });
  224. },
  225. getCompanyLogoUrl(e) {
  226. this.setState({
  227. companyLogoUrl: e
  228. });
  229. },
  230. getQualiUrl(e) {
  231. this.setState({
  232. qualiUrl: e
  233. });
  234. },
  235. //基本信息提交
  236. newSubmit(e) {
  237. if(!this.state.identifyName){
  238. message.warning('请填写单位名称!');
  239. return;
  240. }
  241. if (!this.state.industry) {
  242. message.warning('请选择行业!');
  243. return false;
  244. }
  245. if (!this.state.societyTag) {
  246. message.warning('请选择社会性质!');
  247. return false;
  248. }
  249. if (isNaN(this.state.registeredCapital)) {
  250. message.warning('注册资本只能输入数字!');
  251. return false;
  252. }
  253. this.setState({
  254. selectedRowKeys: []
  255. });
  256. let theorgCodeUrl = [];
  257. if (this.state.orgCodeUrl.length) {
  258. let picArr = [];
  259. this.state.orgCodeUrl.map(function(item) {
  260. if (item.response && item.response.data && item.response.data.length) {
  261. picArr.push(item.response.data);
  262. }
  263. });
  264. theorgCodeUrl = picArr.join(',');
  265. }
  266. let thecompanyLogoUrl = [];
  267. if (this.state.companyLogoUrl.length) {
  268. let picArr = [];
  269. this.state.companyLogoUrl.map(function(item) {
  270. if (item.response && item.response.data && item.response.data.length) {
  271. picArr.push(item.response.data);
  272. }
  273. });
  274. thecompanyLogoUrl = picArr.join(',');
  275. }
  276. let thequaliUrl = [];
  277. if (this.state.qualiUrl.length) {
  278. let picArr = [];
  279. this.state.qualiUrl.map(function(item) {
  280. if (item.response && item.response.data && item.response.data.length) {
  281. picArr.push(item.response.data);
  282. }
  283. });
  284. thequaliUrl = picArr.join(',');
  285. }
  286. this.setState({
  287. loading: true
  288. });
  289. $.ajax({
  290. method: 'post',
  291. dataType: 'json',
  292. url: globalConfig.context + '/api/user/updateOrganizationDetail',
  293. data: {
  294. id: this.state.InformationId,
  295. uid: this.state.InformationUid,
  296. societyTag: this.state.societyTag,
  297. identifyName: this.state.identifyName, //单位名称
  298. introduction: this.state.introduction,
  299. unitName: this.state.unitName,
  300. industry: this.state.industry,
  301. postalAddress: this.state.postalAddress,
  302. fixedTel: this.state.fixedTel,
  303. contactsFax: this.state.contactsFax,
  304. registeredCapital: this.state.registeredCapital ? this.state.registeredCapital : 0,
  305. enterpriseScale: this.state.enterpriseScale,
  306. legalPerson: this.state.legalPerson,
  307. legalPersonIdCard: this.state.legalPersonIdCard,
  308. legalPersonTel: this.state.legalPersonTel,
  309. legalPersonEmail: this.state.legalPersonEmail,
  310. highTechZone: this.state.highTechZone,
  311. listed: this.state.listed,
  312. contacts: this.state.contacts,
  313. orgCode: this.state.orgCode,
  314. businessScope: this.state.businessScope,
  315. introduction: this.state.introduction,
  316. companyLogoUrl: thecompanyLogoUrl != 0 ? thecompanyLogoUrl : '',
  317. honorPicture: thequaliUrl != 0 ? thequaliUrl : '',
  318. orgCodeUrl: theorgCodeUrl != 0 ? theorgCodeUrl : '',
  319. auditStatus: this.state.auditStatus,
  320. authentication:this.state.authentication,
  321. type:this.state.type
  322. }
  323. }).done(
  324. function(data) {
  325. this.setState({
  326. loading: false
  327. });
  328. if (!data.error.length) {
  329. if(this.state.type!='1'){
  330. message.success('企业认证成功,1s后回到首页.')
  331. setTimeout(()=>{
  332. window.location.href = globalConfig.context + "/user/account/index.html";
  333. },1000)
  334. }else{
  335. message.success('保存成功');
  336. this.loadInformation();
  337. }
  338. } else {
  339. message.warning(data.error[0].message);
  340. }
  341. }.bind(this)
  342. );
  343. },
  344. subFun(){
  345. if(this.state.type=='0'||this.state.type=='1'){
  346. this.newSubmit()
  347. }else{
  348. this.setState({
  349. visible:true
  350. })
  351. }
  352. },
  353. handleOk(){
  354. this.newSubmit();
  355. this.setState({
  356. visible:false
  357. })
  358. },
  359. handleCancel(){
  360. this.setState({
  361. visible:false
  362. })
  363. },
  364. componentWillMount() {
  365. this.loadInformation();
  366. },
  367. componentWillReceiveProps(nextProps) {
  368. },
  369. render() {
  370. return (
  371. <div className="unit-wrap">
  372. <Form layout="horizontal" onSubmit={this.newSubmit} id="demand-form" style={{width:'80%'}}>
  373. <Spin spinning={this.state.loading}>
  374. <Row style={{ marginBottom: 20 }}>
  375. <Col offset={2} span={4}>
  376. <h4 style={{fontSize:20}}>企业资料</h4>
  377. </Col>
  378. </Row>
  379. <div className="clearfix" style={{ paddingLeft: '60px' }}>
  380. <FormItem
  381. className="half-item"
  382. labelCol={{ span: 4 }}
  383. wrapperCol={{ span: 18 }}
  384. label={<span><span className="color-red"> * </span>企业名称</span>}
  385. >
  386. <Input
  387. value={this.state.identifyName}
  388. onChange={(e) => {
  389. this.setState({ identifyName: e.target.value });
  390. }}
  391. placeholder="请输入企业名称"
  392. />
  393. </FormItem>
  394. <FormItem
  395. className="half-item"
  396. labelCol={{ span: 4 }}
  397. wrapperCol={{ span: 18 }}
  398. label="企业规模"
  399. >
  400. <InputNumber
  401. placeholder="企业规模"
  402. value={this.state.enterpriseScale}
  403. InputNumber min={0} max={999999}
  404. style={{width:120,marginRight:10}}
  405. onChange={(e) => {
  406. this.setState({ enterpriseScale: e });
  407. }}
  408. />
  409. <span>人</span>
  410. </FormItem>
  411. </div>
  412. <div className="clearfix" style={{ paddingLeft: '60px' }}>
  413. <FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label={<span><span className="color-red"> * </span>行业</span>}>
  414. <Select
  415. placeholder="选择行业"
  416. value={this.state.industry}
  417. onChange={(e) => {
  418. this.setState({ industry: e });
  419. }}
  420. >
  421. {industry.map(function(item) {
  422. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  423. })}
  424. </Select>
  425. </FormItem>
  426. <FormItem
  427. className="half-item"
  428. labelCol={{ span: 4 }}
  429. wrapperCol={{ span: 18 }}
  430. label={<span><span className="color-red"> * </span>社会属性</span>}
  431. >
  432. <Select
  433. placeholder="客户社会属性"
  434. value={this.state.societyTag}
  435. onChange={(e) => {
  436. this.setState({ societyTag: e });
  437. }}
  438. >
  439. {socialAttribute.map(function(item) {
  440. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  441. })}
  442. </Select>
  443. </FormItem>
  444. <FormItem
  445. className="half-item"
  446. labelCol={{ span: 4 }}
  447. wrapperCol={{ span: 18 }}
  448. label="通信地址"
  449. >
  450. <Input
  451. placeholder="客户通信地址"
  452. value={this.state.postalAddress}
  453. onChange={(e) => {
  454. this.setState({ postalAddress: e.target.value });
  455. }}
  456. />
  457. </FormItem>
  458. <FormItem
  459. className="half-item"
  460. labelCol={{ span: 4 }}
  461. wrapperCol={{ span: 18 }}
  462. label="固定电话"
  463. >
  464. <Input
  465. placeholder="客户固定电话"
  466. value={this.state.fixedTel}
  467. onChange={(e) => {
  468. this.setState({ fixedTel: e.target.value });
  469. }}
  470. />
  471. </FormItem>
  472. <FormItem
  473. className="half-item"
  474. labelCol={{ span: 4 }}
  475. wrapperCol={{ span: 18 }}
  476. label="注册资本"
  477. >
  478. <Input
  479. placeholder="注册资本"
  480. value={this.state.registeredCapital}
  481. maxLength="6"
  482. onChange={(e) => {
  483. this.setState({ registeredCapital: e.target.value });
  484. }}
  485. />
  486. </FormItem>
  487. <FormItem
  488. className="half-item"
  489. labelCol={{ span: 4 }}
  490. wrapperCol={{ span: 18 }}
  491. label="法人名称"
  492. >
  493. <Input
  494. placeholder="法人名称"
  495. value={this.state.legalPerson}
  496. onChange={(e) => {
  497. this.setState({ legalPerson: e.target.value });
  498. }}
  499. />
  500. </FormItem>
  501. <FormItem
  502. className="half-item"
  503. labelCol={{ span: 4 }}
  504. wrapperCol={{ span: 18 }}
  505. label="法人身份证号码"
  506. >
  507. <Input
  508. placeholder="法人身份证号码"
  509. value={this.state.legalPersonIdCard}
  510. onChange={(e) => {
  511. this.setState({ legalPersonIdCard: e.target.value });
  512. }}
  513. />
  514. </FormItem>
  515. <FormItem
  516. className="half-item"
  517. labelCol={{ span: 4 }}
  518. wrapperCol={{ span: 18 }}
  519. label="法人电话"
  520. >
  521. <Input
  522. placeholder="法人电话"
  523. value={this.state.legalPersonTel}
  524. onChange={(e) => {
  525. this.setState({ legalPersonTel: e.target.value });
  526. }}
  527. />
  528. </FormItem>
  529. <FormItem
  530. className="half-item"
  531. labelCol={{ span: 4 }}
  532. wrapperCol={{ span: 18 }}
  533. label="法人电子邮箱"
  534. >
  535. <Input
  536. placeholder="法人电子邮箱"
  537. value={this.state.legalPersonEmail}
  538. onChange={(e) => {
  539. this.setState({ legalPersonEmail: e.target.value });
  540. }}
  541. />
  542. </FormItem>
  543. <FormItem
  544. className="half-item"
  545. labelCol={{ span: 4 }}
  546. wrapperCol={{ span: 18 }}
  547. label="机构代码"
  548. >
  549. <Input
  550. placeholder="社会同意机构代码"
  551. value={this.state.orgCode}
  552. onChange={(e) => {
  553. this.setState({ orgCode: e.target.value });
  554. }}
  555. />
  556. </FormItem>
  557. <FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label="高新">
  558. <Radio.Group
  559. value={this.state.highTechZone}
  560. onChange={(e) => {
  561. this.setState({ highTechZone: e.target.value });
  562. }}
  563. >
  564. <Radio value={0}>是</Radio>
  565. <Radio value={1}>否 </Radio>
  566. </Radio.Group>
  567. </FormItem>
  568. <FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label="上市">
  569. <Radio.Group
  570. value={this.state.listed}
  571. onChange={(e) => {
  572. this.setState({ listed: e.target.value });
  573. }}
  574. >
  575. <Radio value={0}>是</Radio>
  576. <Radio value={1}>否 </Radio>
  577. </Radio.Group>
  578. </FormItem>
  579. <div className="clearfix pictures">
  580. <FormItem
  581. className="half-item"
  582. labelCol={{ span: 4 }}
  583. wrapperCol={{ span: 18 }}
  584. style={{ marginTop: 15 }}
  585. label="机构证(PIC)"
  586. >
  587. <PicturesWall
  588. pictureSign="PIC"
  589. fileList={this.getOrgCodeUrl}
  590. pictureUrl={this.state.orgCodeUrl}
  591. />
  592. <p>图片建议:图片要清晰。</p>
  593. </FormItem>
  594. <FormItem
  595. className="half-item"
  596. labelCol={{ span: 4 }}
  597. wrapperCol={{ span: 18 }}
  598. label="企业logo"
  599. >
  600. <PicturesWall
  601. pictureSign="logo"
  602. fileList={this.getCompanyLogoUrl}
  603. pictureUrl={this.state.companyLogoUrl}
  604. />
  605. <p>图片建议:图片要清晰。</p>
  606. </FormItem>
  607. </div>
  608. <div className="clearfix">
  609. <FormItem
  610. className="half-item"
  611. labelCol={{ span: 4 }}
  612. wrapperCol={{ span: 18 }}
  613. label="业务范围"
  614. >
  615. <Input
  616. type="textarea"
  617. rows={4}
  618. value={this.state.businessScope}
  619. placeholder="请输入业务范围"
  620. onChange={(e) => {
  621. this.setState({ businessScope: e.target.value });
  622. }}
  623. />
  624. </FormItem>
  625. <FormItem
  626. className="half-item"
  627. labelCol={{ span: 4 }}
  628. wrapperCol={{ span: 18 }}
  629. label="企业简介"
  630. >
  631. <Input
  632. type="textarea"
  633. rows={4}
  634. value={this.state.introduction}
  635. placeholder="请输入企业简介"
  636. onChange={(e) => {
  637. this.setState({ introduction: e.target.value });
  638. }}
  639. />
  640. </FormItem>
  641. </div>
  642. <div className="clearfix">
  643. <FormItem
  644. labelCol={{ span: 2 }}
  645. wrapperCol={{ span: 18 }}
  646. style={{ marginTop: 15 }}
  647. label="荣誉资质"
  648. >
  649. <PicturesWallMore
  650. pictureSign="PIC"
  651. fileList={this.getQualiUrl}
  652. pictureUrl={this.state.qualiUrl}
  653. />
  654. <p>图片建议:图片要清晰。</p>
  655. </FormItem>
  656. </div>
  657. <Row style={{ marginBottom: 20 ,marginTop:10}}>
  658. <Col offset={2} span={4}>
  659. <Button size="large" className="set-submit" type="primary" onClick={this.subFun} >
  660. 保存
  661. </Button>
  662. </Col>
  663. </Row>
  664. </div>
  665. </Spin>
  666. </Form>
  667. <Modal
  668. visible={this.state.visible}
  669. onOk={this.handleOk}
  670. onCancel={this.handleCancel}
  671. >
  672. <p>是否申请企业用户认证?</p>
  673. </Modal>
  674. </div>
  675. );
  676. }
  677. });
  678. export default Unit;