personal.jsx 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  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. const monthFormat = 'YYYY/MM';
  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/admin/customer/uploadCustomerImg'}
  113. data={{ sign: '' }}
  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 Personal = React.createClass({
  129. getInitialState() {
  130. return {
  131. loading: false,
  132. orgCodeUrl: [],
  133. companyLogoUrl: [],
  134. headPortraitUrl: [],
  135. positiveIdUrl: [],
  136. oppositeIdUrl: []
  137. };
  138. },
  139. loadInformation(record) {
  140. this.setState({
  141. loading: true
  142. });
  143. $.ajax({
  144. method: 'get',
  145. dataType: 'json',
  146. crossDomain: false,
  147. url: globalConfig.context + '/api/admin/customer/findPersonalCustomerDetail',
  148. data: {
  149. uid: record
  150. },
  151. success: function(data) {
  152. let thisData = data.data;
  153. if (!thisData) {
  154. if (data.error && data.error.length) {
  155. message.warning(data.error[0].message);
  156. }
  157. thisData = {};
  158. }
  159. let ProvinceCityArr = [];
  160. let ProvinceS = thisData.province; //getprovince
  161. let citys = thisData.city;
  162. let Areas = thisData.area;
  163. ProvinceCityArr.push(ProvinceS, citys, Areas);
  164. let month = thisData.dateOfBirthYear
  165. ? thisData.dateOfBirthYear + '/' + thisData.dateOfBirthMonth
  166. : undefined;
  167. this.setState({
  168. InformationId: thisData.id,
  169. InformationUid: thisData.uid,
  170. identifyName: thisData.identifyName,
  171. listed: thisData.listed,
  172. highTechZone: thisData.highTechZone,
  173. headPortraitUrl: thisData.headPortraitUrl
  174. ? splitUrl(thisData.headPortraitUrl, ',', globalConfig.avatarHost + '/upload')
  175. : [],
  176. positiveIdUrl: thisData.positiveIdUrl
  177. ? splitUrl(thisData.positiveIdUrl, ',', globalConfig.avatarHost + '/upload')
  178. : [],
  179. oppositeIdUrl: thisData.oppositeIdUrl
  180. ? splitUrl(thisData.oppositeIdUrl, ',', globalConfig.avatarHost + '/upload')
  181. : [],
  182. dataInformation: thisData,
  183. idNumber: thisData.idNumber,
  184. contacts: thisData.contacts,
  185. contactMobile: thisData.contactMobile,
  186. ProvinceCity: ProvinceCityArr[0] != null ? ProvinceCityArr : undefined,
  187. industry: thisData.industry ? String(thisData.industry) : undefined,
  188. societyTag: thisData.societyTag || undefined,
  189. sex: thisData.sex,
  190. yearMonth: month,
  191. postalAddress: thisData.postalAddress,
  192. fixedTel: thisData.fixedTel,
  193. consultationPrice: thisData.consultationPrice,
  194. email: thisData.email,
  195. qq: thisData.qq,
  196. introduction: thisData.introduction,
  197. expert: thisData.expert,
  198. celebrity: thisData.celebrity,
  199. consultant: thisData.consultant,
  200. international: thisData.international,
  201. investment: thisData.investment,
  202. professionalTitle: thisData.professionalTitle,
  203. workUnit: thisData.workUnit,
  204. education: thisData.education,
  205. graduateSchool: thisData.graduateSchool,
  206. majorCategory: thisData.majorCategory,
  207. qualification: thisData.qualification,
  208. businessAudit: thisData.businessAudit,
  209. auditStatus: thisData.auditStatus ? String(thisData.auditStatus) : undefined
  210. });
  211. }.bind(this)
  212. }).always(
  213. function() {
  214. this.setState({
  215. loading: false
  216. });
  217. }.bind(this)
  218. );
  219. },
  220. //图片
  221. getOrgCodeUrl(e) {
  222. this.setState({
  223. orgCodeUrl: e
  224. });
  225. },
  226. getCompanyLogoUrl(e) {
  227. this.setState({
  228. companyLogoUrl: e
  229. });
  230. },
  231. //基本信息提交
  232. newSubmit(e) {
  233. e.preventDefault();
  234. if(!this.state.identifyName){
  235. message.warning("请填写姓名!")
  236. return;
  237. }
  238. if (!this.state.industry) {
  239. message.warning('请选择行业!');
  240. return false;
  241. }
  242. if (!this.state.societyTag) {
  243. message.warning('请选择社会性质!');
  244. return false;
  245. }
  246. if (!this.state.ProvinceCity[1]) {
  247. message.warning('请选择地区!');
  248. return false;
  249. }
  250. if(!this.state.photo){
  251. message.warning("请填写手机号码!")
  252. return;
  253. }
  254. this.state.data = [];
  255. this.setState({
  256. selectedRowKeys: []
  257. });
  258. let theorgCodeUrl = [];
  259. if (this.state.headPortraitUrl.length) {
  260. let picArr = [];
  261. this.state.headPortraitUrl.map(function(item) {
  262. if (item.response && item.response.data && item.response.data.length) {
  263. picArr.push(item.response.data);
  264. }
  265. });
  266. theorgCodeUrl = picArr.join(',');
  267. }
  268. let thecompanyLogoUrl = [];
  269. if (this.state.positiveIdUrl.length) {
  270. let picArr = [];
  271. this.state.positiveIdUrl.map(function(item) {
  272. if (item.response && item.response.data && item.response.data.length) {
  273. picArr.push(item.response.data);
  274. }
  275. });
  276. thecompanyLogoUrl = picArr.join(',');
  277. }
  278. let thecompanyLogoUrls = [];
  279. if (this.state.oppositeIdUrl.length) {
  280. let picArr = [];
  281. this.state.oppositeIdUrl.map(function(item) {
  282. if (item.response && item.response.data && item.response.data.length) {
  283. picArr.push(item.response.data);
  284. }
  285. });
  286. thecompanyLogoUrls = picArr.join(',');
  287. }
  288. let years = [];
  289. let yearMonth = this.state.yearMonth != undefined ? new Date(this.state.yearMonth).toLocaleDateString() : '';
  290. years = yearMonth.split('/');
  291. this.setState({
  292. loading: true
  293. });
  294. $.ajax({
  295. method: 'post',
  296. dataType: 'json',
  297. url: globalConfig.context + '/api/admin/customer/updatePersonalCustomer',
  298. data: {
  299. id: this.state.InformationId,
  300. uid: this.state.InformationUid,
  301. societyTag: this.state.societyTag,
  302. identifyName: this.state.identifyName,
  303. industry: this.state.industry,
  304. dateOfBirthYear: years[0], //出生年
  305. dateOfBirthMonth: years[1], //出生月
  306. province: this.state.ProvinceCity[0], //省-
  307. city: this.state.ProvinceCity[1], //市
  308. area: this.state.ProvinceCity[2], //区
  309. sex: this.state.sex,
  310. expert: this.state.expert,
  311. celebrity: this.state.celebrity,
  312. consultant: this.state.consultant,
  313. international: this.state.international,
  314. fixedTel: this.state.fixedTel,
  315. consultationPrice: this.state.consultationPrice ? this.state.consultationPrice : '',
  316. qq: this.state.qq,
  317. contacts: this.state.contacts,
  318. contactMobile: this.state.contactMobile,
  319. idNumber: this.state.idNumber,
  320. email: this.state.email,
  321. isMember: this.state.isMember,
  322. postalAddress: this.state.postalAddress,
  323. introduction: this.state.introduction,
  324. positiveIdUrl: thecompanyLogoUrl.length != 0 ? thecompanyLogoUrl : '',
  325. oppositeIdUrl: thecompanyLogoUrls.length != 0 ? thecompanyLogoUrls : '',
  326. headPortraitUrl: theorgCodeUrl.length != 0 ? theorgCodeUrl : '',
  327. investment: this.state.investment,
  328. professionalTitle: this.state.professionalTitle,
  329. workUnit: this.state.workUnit,
  330. education: this.state.education,
  331. graduateSchool: this.state.graduateSchool,
  332. majorCategory: this.state.majorCategory,
  333. qualification: this.state.qualification,
  334. businessAudit: this.state.businessAudit,
  335. auditStatus: this.state.auditStatus
  336. }
  337. }).done(
  338. function(data) {
  339. this.setState({
  340. loading: false
  341. });
  342. if (!data.error.length) {
  343. message.success('保存成功!');
  344. this.loadInformation();
  345. } else {
  346. message.warning(data.error[0].message);
  347. }
  348. }.bind(this)
  349. );
  350. },
  351. getHeadPortraitUrl(e) {
  352. this.setState({ headPortraitUrl: e });
  353. },
  354. getPositiveIdUrl(e) {
  355. this.setState({ positiveIdUrl: e });
  356. },
  357. getOppositeIdUrl(e) {
  358. this.setState({ oppositeIdUrl: e });
  359. },
  360. componentWillMount() {
  361. this.loadInformation();
  362. },
  363. componentWillReceiveProps(nextProps) {},
  364. render() {
  365. const { RangePicker, MonthPicker } = DatePicker;
  366. const formItemLayout = {
  367. labelCol: {
  368. span: 6
  369. },
  370. wrapperCol: {
  371. span: 14
  372. }
  373. };
  374. return (
  375. <div className="unit-wrap">
  376. <Form layout="horizontal" onSubmit={this.newSubmit} id="demand-form">
  377. <Spin spinning={this.state.loading}>
  378. <Row style={{ marginBottom: 20 }}>
  379. <Col offset={2} span={4}>
  380. <h4>个人资料</h4>
  381. </Col>
  382. </Row>
  383. <div className="clearfix">
  384. <FormItem className="half-item" {...formItemLayout} label="姓名">
  385. <Input
  386. style={{ width: '90%' }}
  387. placeholder="输入姓名"
  388. value={this.state.identifyName}
  389. onChange={(e) => {
  390. this.setState({ identifyName: e.target.value });
  391. }}
  392. />
  393. <span className="color-red"> * </span>
  394. </FormItem>
  395. <FormItem className="half-item" {...formItemLayout} label="性别">
  396. <Radio.Group
  397. value={this.state.sex}
  398. onChange={(e) => {
  399. this.setState({ sex: e.target.value });
  400. }}
  401. >
  402. <Radio value={'男'}>男</Radio>
  403. <Radio value={'女'}>女</Radio>
  404. </Radio.Group>
  405. </FormItem>
  406. <FormItem className="half-item" {...formItemLayout} label="行业">
  407. <Select
  408. placeholder="选择行业"
  409. value={this.state.industry}
  410. style={{ width: '90%' }}
  411. onChange={(e) => {
  412. this.setState({ industry: e });
  413. }}
  414. >
  415. {industry.map(function(item) {
  416. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  417. })}
  418. </Select>
  419. <span className="color-red"> * </span>
  420. </FormItem>
  421. <FormItem className="half-item" {...formItemLayout} label="社会属性">
  422. <Select
  423. placeholder="客户社会属性"
  424. value={this.state.societyTag}
  425. style={{ width: '90%' }}
  426. onChange={(e) => {
  427. this.setState({ societyTag: e });
  428. }}
  429. >
  430. {socialAttribute.map(function(item) {
  431. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  432. })}
  433. </Select>
  434. <span className="color-red"> * </span>
  435. </FormItem>
  436. <FormItem className="half-item" {...formItemLayout} label="出生日期">
  437. {!this.state.yearMonth ? (
  438. <MonthPicker
  439. placeholder="选择出生年月"
  440. value={this.state.yearMonth}
  441. onChange={(time) => {
  442. this.setState({ yearMonth: time });
  443. }}
  444. />
  445. ) : (
  446. <MonthPicker
  447. value={moment(this.state.yearMonth, monthFormat)}
  448. format={monthFormat}
  449. onChange={(time) => {
  450. this.setState({ yearMonth: time });
  451. }}
  452. />
  453. )}
  454. </FormItem>
  455. <FormItem className="half-item" {...formItemLayout} label="身份证号码">
  456. <Input
  457. placeholder="身份证号码"
  458. value={this.state.idNumber}
  459. onChange={(e) => {
  460. this.setState({ idNumber: e.target.value });
  461. }}
  462. />
  463. </FormItem>
  464. </div>
  465. <div className="clearfix">
  466. <FormItem className="half-item" {...formItemLayout} label="省-市-区">
  467. <Cascader
  468. options={areaSelect()}
  469. value={this.state.ProvinceCity}
  470. placeholder="选择城市"
  471. style={{ width: '90%' }}
  472. onChange={(e, pre) => {
  473. this.setState({ ProvinceCity: e });
  474. }}
  475. />
  476. <span className="color-red"> * </span>
  477. </FormItem>
  478. <FormItem className="half-item" {...formItemLayout} label="通信地址">
  479. <Input
  480. placeholder="客户通信地址"
  481. value={this.state.postalAddress}
  482. onChange={(e, pre) => {
  483. this.setState({ postalAddress: e.target.value });
  484. }}
  485. />
  486. </FormItem>
  487. <FormItem className="half-item" {...formItemLayout} label="手机号码">
  488. <Input
  489. style={{width:'90%'}}
  490. placeholder="手机号码"
  491. value={this.state.photo}
  492. onChange={(e) => {
  493. this.setState({ photo: e.target.value });
  494. }}
  495. />
  496. <span className="color-red"> * </span>
  497. </FormItem>
  498. <FormItem className="half-item" {...formItemLayout} label="就业单位">
  499. <Input
  500. placeholder="传真"
  501. value={this.state.Fax}
  502. onChange={(e) => {
  503. this.setState({ Fax: e.target.value });
  504. }}
  505. />
  506. </FormItem>
  507. <FormItem className="half-item" {...formItemLayout} label="固定电话">
  508. <Input
  509. placeholder="客户固定电话"
  510. value={this.state.fixedTel}
  511. onChange={(e) => {
  512. this.setState({ fixedTel: e.target.value });
  513. }}
  514. />
  515. </FormItem>
  516. <FormItem className="half-item" {...formItemLayout} label="QQ">
  517. <Input
  518. placeholder="QQ"
  519. value={this.state.qq}
  520. onChange={(e) => {
  521. this.setState({ qq: e.target.value });
  522. }}
  523. />
  524. </FormItem>
  525. <FormItem className="half-item" {...formItemLayout} label="电子邮箱">
  526. <Input
  527. placeholder="客户电子邮箱"
  528. value={this.state.email}
  529. onChange={(e) => {
  530. this.setState({ email: e.target.value });
  531. }}
  532. />
  533. </FormItem>
  534. </div>
  535. <div className="clearfix">
  536. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="专家简介">
  537. <Input
  538. type="textarea"
  539. rows={4}
  540. value={this.state.introduction}
  541. onChange={(e, pre) => {
  542. this.setState({ introduction: e.target.value });
  543. }}
  544. />
  545. </FormItem>
  546. </div>
  547. <div className="clearfix pictures">
  548. <FormItem
  549. className="picWidth"
  550. labelCol={{ span: 10 }}
  551. wrapperCol={{ span: 10 }}
  552. label="身份证正面"
  553. >
  554. <PicturesWall
  555. fileList={this.getPositiveIdUrl}
  556. pictureUrl={this.state.positiveIdUrl}
  557. />
  558. <p>建议:图片要清晰。</p>
  559. </FormItem>
  560. <FormItem
  561. className="picWidth"
  562. labelCol={{ span: 10 }}
  563. wrapperCol={{ span: 10 }}
  564. label="身份证反面"
  565. >
  566. <PicturesWall
  567. fileList={this.getOppositeIdUrl}
  568. pictureUrl={this.state.oppositeIdUrl}
  569. />
  570. <p>建议:图片要清晰。</p>
  571. </FormItem>
  572. <FormItem
  573. className="picWidth"
  574. labelCol={{ span: 10 }}
  575. wrapperCol={{ span: 10 }}
  576. label="客户照片"
  577. >
  578. <PicturesWall
  579. fileList={this.getHeadPortraitUrl}
  580. pictureUrl={this.state.headPortraitUrl}
  581. />
  582. <p>建议:图片要清晰。</p>
  583. </FormItem>
  584. </div>
  585. <Row style={{ marginBottom: 20 }}>
  586. <Col offset={3} span={4}>
  587. <Button size="large" className="set-submit" type="primary" htmlType="submit">
  588. 保存
  589. </Button>
  590. </Col>
  591. </Row>
  592. </Spin>
  593. </Form>
  594. </div>
  595. );
  596. }
  597. });
  598. export default Personal;