unit.jsx 17 KB

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