unit.jsx 17 KB

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