expert.jsx 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  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. Cascader,
  12. Input,
  13. Select,
  14. Spin,
  15. message,
  16. DatePicker,
  17. Modal,
  18. Upload,
  19. Form,
  20. Row,
  21. Col
  22. } from 'antd';
  23. import $ from 'jquery/src/ajax';
  24. import moment from 'moment';
  25. import './unit.less';
  26. import { areaSelect } from '@/NewDicProvinceList';
  27. import { socialAttribute, industry,adviserType } from '@/dataDic.js';
  28. import { splitUrl,getAuthState,getAdviserType ,getSocialAttribute } from '@/tools.js';
  29. const FormItem = Form.Item;
  30. const monthFormat = 'YYYY/MM';
  31. //图片组件
  32. const PicturesWall = React.createClass({
  33. getInitialState() {
  34. return {
  35. previewVisible: false,
  36. previewImage: '',
  37. fileList: []
  38. };
  39. },
  40. handleCancel() {
  41. this.setState({
  42. previewVisible: false
  43. });
  44. },
  45. handlePreview(file) {
  46. this.setState({
  47. previewImage: file.url || file.thumbUrl,
  48. previewVisible: true
  49. });
  50. },
  51. handleChange(info) {
  52. let fileList = info.fileList;
  53. this.setState({
  54. fileList
  55. });
  56. this.props.fileList(fileList);
  57. },
  58. componentWillReceiveProps(nextProps) {
  59. this.state.fileList = nextProps.pictureUrl;
  60. },
  61. render() {
  62. const { previewVisible, previewImage, fileList } = this.state;
  63. const uploadButton = (
  64. <div>
  65. <Icon type="plus" />
  66. <div className="ant-upload-text">点击上传</div>
  67. </div>
  68. );
  69. return (
  70. <div style={{ display: 'inline-block' }}>
  71. <Upload
  72. action={globalConfig.context + '/api/user/uploadPicture'}
  73. data={{ sign: 'user_picture' }}
  74. listType="picture-card"
  75. fileList={fileList}
  76. onPreview={this.handlePreview}
  77. onChange={this.handleChange}
  78. >
  79. {fileList.length >= 1 ? null : uploadButton}
  80. </Upload>
  81. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  82. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  83. </Modal>
  84. </div>
  85. );
  86. }
  87. });
  88. const Expert = React.createClass({
  89. getInitialState() {
  90. return {
  91. loading: false,
  92. orgCodeUrl: [],
  93. companyLogoUrl: [],
  94. headPortraitUrl: [],
  95. adviserUrl:[],
  96. positiveIdUrl: [],
  97. oppositeIdUrl: [],
  98. authenticationState:undefined
  99. };
  100. },
  101. loadInformation(record) {
  102. this.setState({
  103. loading: true
  104. });
  105. $.ajax({
  106. method: 'get',
  107. dataType: 'json',
  108. crossDomain: false,
  109. url: globalConfig.context + '/api/user/getUserDetail',
  110. success: function(data) {
  111. let thisData = data.data;
  112. if (!thisData) {
  113. if (data.error && data.error.length) {
  114. message.warning(data.error[0].message);
  115. }
  116. thisData = {};
  117. }
  118. let ProvinceCityArr = [];
  119. let ProvinceS = thisData.province; //getprovince
  120. let citys = thisData.city;
  121. let Areas = thisData.area;
  122. ProvinceCityArr.push(ProvinceS, citys, Areas);
  123. let month = thisData.dateOfBirthYear
  124. ? thisData.dateOfBirthYear + '/' + thisData.dateOfBirthMonth
  125. : undefined;
  126. let authenticationState='';
  127. if(thisData.auditStatus=='3'){
  128. authenticationState=(thisData.expert-1).toString()
  129. }
  130. this.setState({
  131. InformationId: thisData.id,
  132. InformationUid: thisData.uid,
  133. authentication:thisData.authentication,
  134. authenticationState:authenticationState,
  135. dateOfBirthYear:thisData.dateOfBirthYear,
  136. dateOfBirthMonth:thisData.dateOfBirthMonth,
  137. type:thisData.type, //0-个人认证 1-企业认证
  138. expert:thisData.expert, //认证类型 0-未认证专家顾问 1-专家认证 2-顾问认证
  139. authMessage:thisData.auditInfo,
  140. auditStatus:thisData.auditStatus||'0', //认证状态 0-未认证 1-认证审核中 2-已认证 3-认证失败
  141. headPortraitUrl: thisData.headPortraitUrl //专家照片
  142. ? splitUrl(thisData.headPortraitUrl, ',', globalConfig.avatarHost + '/upload')
  143. : [],
  144. adviserUrl: thisData.adviserUrl //顾问照片
  145. ? splitUrl(thisData.adviserUrl, ',', globalConfig.avatarHost + '/upload')
  146. : [],
  147. positiveIdUrl: thisData.positiveIdUrl
  148. ? splitUrl(thisData.positiveIdUrl, ',', globalConfig.avatarHost + '/upload')
  149. : [],
  150. oppositeIdUrl: thisData.oppositeIdUrl
  151. ? splitUrl(thisData.oppositeIdUrl, ',', globalConfig.avatarHost + '/upload')
  152. : [],
  153. data: thisData,
  154. ProvinceCity: ProvinceCityArr[0] != null ? ProvinceCityArr : undefined,
  155. yearMonth: month,
  156. workUnit:thisData.workUnit||'',
  157. graduateSchool: thisData.graduateSchool||'',
  158. professionalTitle: thisData.professionalTitle||'',
  159. qualification: thisData.qualification||'',
  160. majorCategory: thisData.majorCategory||'',
  161. adviserType: thisData.consultantType||'',
  162. headPortraitUrlCopy: thisData.headPortraitUrl,
  163. adviserUrlCopy: thisData.adviserUrl,
  164. positiveIdUrlCopy: thisData.positiveIdUrl,
  165. oppositeIdUrlCopy:thisData.oppositeIdUrl
  166. });
  167. }.bind(this)
  168. }).always(
  169. function() {
  170. this.setState({
  171. loading: false
  172. });
  173. }.bind(this)
  174. );
  175. },
  176. //图片
  177. getOrgCodeUrl(e) {
  178. this.setState({
  179. orgCodeUrl: e
  180. });
  181. },
  182. getCompanyLogoUrl(e) {
  183. this.setState({
  184. companyLogoUrl: e
  185. });
  186. },
  187. //基本信息提交
  188. newSubmit(values={}){
  189. this.state.data = [];
  190. let theorgCodeUrl = [];
  191. if (this.state.headPortraitUrl.length) {
  192. let picArr = [];
  193. this.state.headPortraitUrl.map(function(item) {
  194. if (item.response && item.response.data && item.response.data.length) {
  195. picArr.push(item.response.data);
  196. }
  197. });
  198. theorgCodeUrl = picArr.join(',');
  199. }
  200. let thecompanyLogoUrl = [];
  201. if (this.state.positiveIdUrl.length) {
  202. let picArr = [];
  203. this.state.positiveIdUrl.map(function(item) {
  204. if (item.response && item.response.data && item.response.data.length) {
  205. picArr.push(item.response.data);
  206. }
  207. });
  208. thecompanyLogoUrl = picArr.join(',');
  209. }
  210. let thecompanyLogoUrls = [];
  211. if (this.state.oppositeIdUrl.length) {
  212. let picArr = [];
  213. this.state.oppositeIdUrl.map(function(item) {
  214. if (item.response && item.response.data && item.response.data.length) {
  215. picArr.push(item.response.data);
  216. }
  217. });
  218. thecompanyLogoUrls = picArr.join(',');
  219. }
  220. let years = [];
  221. years = this.state.yearList!=undefined?(this.state.yearList).split('/'):[this.state.dateOfBirthYear,this.state.dateOfBirthMonth];
  222. this.setState({
  223. loading: true
  224. });
  225. let dataList={};
  226. dataList={
  227. id: this.state.InformationId,
  228. uid: this.state.InformationUid,
  229. type:this.state.type,
  230. societyTag: values.societyTag,
  231. identifyName: values.identifyName,
  232. industry: values.industry,
  233. dateOfBirthYear: years[0]||'', //出生年
  234. dateOfBirthMonth: years[1]||'', //出生月
  235. province: (values.ProvinceCity)[0], //省-
  236. city:(values.ProvinceCity)[1], //市
  237. area:(values.ProvinceCity)[2], //区
  238. sex: values.sex,
  239. expert:'0',
  240. authentication:this.state.authentication,
  241. // mobile: values.mobile,
  242. fixedTel: values.fixedTel,
  243. qq: values.qq,
  244. idNumber: values.idNumber,
  245. email: values.email,
  246. postalAddress: values.postalAddress,
  247. introduction: values.introduction,
  248. auditStatus:this.state.auditStatus||'0',
  249. }
  250. if(this.state.authenticationState=='0'){
  251. dataList.expert='1',
  252. dataList.workUnit=values.workUnit;
  253. dataList.professionalTitle=values.professionalTitle;
  254. dataList.qualification=values.qualification;
  255. dataList.majorCategory=values.majorCategory;
  256. dataList.graduateSchool=values.graduateSchool;
  257. dataList.headPortraitUrl=theorgCodeUrl.length != 0 ? theorgCodeUrl : '';
  258. dataList.positiveIdUrl=thecompanyLogoUrl.length != 0 ? thecompanyLogoUrl : '';
  259. dataList.oppositeIdUrl=thecompanyLogoUrls.length != 0 ? thecompanyLogoUrls : '';
  260. }else if(this.state.authenticationState=='1'){
  261. dataList.expert='2';
  262. dataList.consultantType=values.adviserType;//顾问类型
  263. dataList.headPortraitUrl=theorgCodeUrl.length != 0 ? theorgCodeUrl : ''; //顾问照片
  264. dataList.positiveIdUrl=thecompanyLogoUrl.length != 0 ? thecompanyLogoUrl : '';
  265. dataList.oppositeIdUrl=thecompanyLogoUrls.length != 0 ? thecompanyLogoUrls : '';
  266. }
  267. $.ajax({
  268. method: 'post',
  269. dataType: 'json',
  270. url: globalConfig.context + '/api/user/updateUserDetail',
  271. data:dataList,
  272. }).done(
  273. function(data) {
  274. this.setState({
  275. loading: false
  276. });
  277. if (!data.error.length) {
  278. //认证状态判定说明
  279. if(this.state.authentication){
  280. message.success((this.state.auditStatus=='0'||this.state.auditStatus=='3')&&(this.state.headPortraitUrl).length?'认证审核提交成功,请耐心等待。':'保存成功')
  281. }else{
  282. message.success('个人认证成功,2秒后跳转个人中心首页。')
  283. setTimeout(()=>{
  284. window.location.href= globalConfig.context+'/user/account/index.html'
  285. },2000)
  286. }
  287. this.loadInformation();
  288. } else {
  289. message.warning(data.error[0].message);
  290. }
  291. }.bind(this)
  292. );
  293. },
  294. subFun(e) {
  295. e.preventDefault();
  296. this.props.form.validateFields((err, values) => {
  297. if(!err){
  298. if(this.state.authenticationState==undefined||this.state.authentication=='0'){
  299. if(!this.state.authentication&&(this.state.auditStatus=='0'||this.state.auditStatus=='3'||!this.state.auditStatus)){
  300. this.setState({
  301. visible: true,
  302. values :values
  303. });
  304. }else{
  305. this.newSubmit(values)
  306. }
  307. }else{
  308. if(this.state.authenticationState=='0'||this.state.authenticationState=='1'){
  309. if(!(this.state.headPortraitUrl.length)){
  310. message.warning(this.state.authenticationState?'请上传顾问照片!':'请上传专家照片');
  311. return;
  312. }
  313. if(!(this.state.oppositeIdUrl.length)||!(this.state.positiveIdUrl.length)){
  314. message.warning('请上传您的身份证正反照片!');
  315. return;
  316. }
  317. this.setState({
  318. visible: true,
  319. values :values
  320. });
  321. }else{
  322. this.newSubmit(values)
  323. }
  324. }
  325. }
  326. })
  327. },
  328. handleOk() {
  329. this.newSubmit(this.state.values);
  330. this.setState({
  331. visible: false
  332. });
  333. },
  334. handleCancel() {
  335. this.setState({
  336. visible: false
  337. });
  338. },
  339. getHeadPortraitUrl(e) {
  340. this.setState({ headPortraitUrl: e });
  341. },
  342. getPositiveIdUrl(e) {
  343. this.setState({ positiveIdUrl: e });
  344. },
  345. getOppositeIdUrl(e) {
  346. this.setState({ oppositeIdUrl: e });
  347. },
  348. componentWillMount() {
  349. this.loadInformation();
  350. },
  351. componentWillReceiveProps(nextProps) {},
  352. render() {
  353. const { getFieldDecorator } = this.props.form;
  354. const { MonthPicker } = DatePicker;
  355. const formItemLayout = {
  356. labelCol: {
  357. span: 6
  358. },
  359. wrapperCol: {
  360. span: 14
  361. }
  362. };
  363. const theData = this.state.data || [];
  364. return (
  365. <div className="unit-wrap">
  366. <Form layout="horizontal" onSubmit={this.subFun} id="demand-form" style={{ width: '80%' }}>
  367. <Spin spinning={this.state.loading}>
  368. <Row style={{ marginBottom: 20 }}>
  369. <Col offset={2} span={4}>
  370. <h4 style={{ fontSize: 20 }}>个人资料</h4>
  371. </Col>
  372. </Row>
  373. <div className="clearfix">
  374. {this.state.auditStatus=='0'?<FormItem className="half-item" {...formItemLayout} label="姓名">
  375. {getFieldDecorator('identifyName', {
  376. rules: [ { required: true, message: '此项为必填项!' } ],
  377. initialValue: theData.identifyName
  378. })(<Input placeholder="输入姓名" maxLength={128}/>)}
  379. </FormItem>:<FormItem className="half-item" {...formItemLayout} label="姓名">
  380. <span>{theData.identifyName}</span>
  381. </FormItem>
  382. }
  383. <FormItem className="half-item" {...formItemLayout} label="手机号码">
  384. <span>{theData.mobile}</span>
  385. </FormItem>
  386. <FormItem className="half-item" {...formItemLayout} label="行业">
  387. {getFieldDecorator('industry', {
  388. rules: [ { required: true, message: '此项为必填项!' } ],
  389. initialValue: theData.industry?theData.industry.toString():undefined
  390. })(
  391. <Select placeholder="选择行业">
  392. {industry.map(function(item) {
  393. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  394. })}
  395. </Select>
  396. )}
  397. </FormItem>
  398. <FormItem className="half-item" {...formItemLayout} label="性别">
  399. {getFieldDecorator('sex', {
  400. initialValue: theData.sex
  401. })(
  402. <Radio.Group>
  403. <Radio value={'男'}>男</Radio>
  404. <Radio value={'女'}>女</Radio>
  405. </Radio.Group>
  406. )}
  407. </FormItem>
  408. <FormItem className="half-item" {...formItemLayout} label="出生日期">
  409. <MonthPicker
  410. value={this.state.yearMonth?moment(this.state.yearMonth, monthFormat):undefined}
  411. format={monthFormat}
  412. onChange={(time,times) => {
  413. this.setState({ yearMonth: time,yearList:times });
  414. }}
  415. />
  416. </FormItem>
  417. <FormItem className="half-item" {...formItemLayout} label="身份证号码">
  418. {getFieldDecorator('idNumber', {
  419. initialValue: theData.idNumber
  420. })(<Input placeholder="身份证号码" maxLength={20}/>)}
  421. </FormItem>
  422. </div>
  423. <div className="clearfix">
  424. <FormItem className="half-item" {...formItemLayout} label="省-市-区">
  425. {getFieldDecorator('ProvinceCity', {
  426. rules: [ { required: true, message: '此项为必填项!' } ],
  427. initialValue: this.state.ProvinceCity
  428. })(<Cascader options={areaSelect()} placeholder="选择城市" />)}
  429. </FormItem>
  430. <FormItem className="half-item" {...formItemLayout} label="通信地址">
  431. {getFieldDecorator('postalAddress', {
  432. initialValue: theData.postalAddress
  433. })(<Input placeholder="输入通信地址" maxLength={255}/>)}
  434. </FormItem>
  435. {/* <FormItem className="half-item" {...formItemLayout} label="手机号码">
  436. {getFieldDecorator('mobile', {
  437. rules: [ { required: true, message: '此项为必填项!' } ],
  438. initialValue: theData.mobile
  439. })(<Input placeholder="输入手机号码" maxLength={16}/>)}
  440. </FormItem> */}
  441. <FormItem className="half-item" {...formItemLayout} label="固定电话">
  442. {getFieldDecorator('fixedTel', {
  443. initialValue: theData.fixedTel
  444. })(<Input placeholder="输入固定电话" maxLength={13}/>)}
  445. </FormItem>
  446. <FormItem className="half-item" {...formItemLayout} label="QQ">
  447. {getFieldDecorator('qq', {
  448. initialValue: theData.qq
  449. })(<Input placeholder="输入qq" maxLength={16}/>)}
  450. </FormItem>
  451. <FormItem className="half-item" {...formItemLayout} label="电子邮箱">
  452. {getFieldDecorator('email', {
  453. initialValue: theData.email
  454. })(<Input placeholder="输入电子邮箱" maxLength={128}/>)}
  455. </FormItem>
  456. </div>
  457. <div className="clearfix">
  458. <FormItem
  459. labelCol={{ span: 3 }}
  460. wrapperCol={{ span: 18 }}
  461. label="个人简介"
  462. >
  463. {getFieldDecorator('introduction', {
  464. initialValue: theData.introduction
  465. })(<Input type="textarea" rows={4} maxLength={512} placeholder="输入个人简介"/>)}
  466. </FormItem>
  467. </div>
  468. {(this.state.expert=='0'||this.state.auditStatus=='0'||this.state.expert==null||this.state.auditStatus=='3')&&this.state.type!=null?
  469. <div>
  470. <div className="clearfix btnGrounp">
  471. <Radio.Group
  472. value={this.state.authenticationState}
  473. onChange={(e)=>{this.setState({
  474. authenticationState:e.target.value
  475. })}}>
  476. <Radio.Button value="0">专家认证</Radio.Button>
  477. <Radio.Button value="1">顾问认证</Radio.Button>
  478. </Radio.Group>
  479. <Button type="dashed" style={{marginLeft:20}} onClick={(e)=>{this.setState({authenticationState:undefined})}}>暂不认证</Button>
  480. <span style={{marginLeft:10,color:'#f00'}}>{this.state.auditStatus=='3'?"(认证失败:"+this.state.authMessage+')':''}</span>
  481. </div>
  482. {(this.state.authenticationState=='0'||this.state.auditStatus!='0')?<div className="patentBody">
  483. <FormItem className="half-item" {...formItemLayout} label="毕业院校">
  484. {getFieldDecorator('graduateSchool', {
  485. initialValue: theData.graduateSchool,
  486. rules: [ { required: true, message: '此项为必填项!' } ],
  487. })(<Input placeholder="输入毕业院校全称" maxLength={32}/>)}
  488. </FormItem>
  489. <FormItem className="half-item" {...formItemLayout} label="专业类别">
  490. {getFieldDecorator('majorCategory', {
  491. initialValue: theData.majorCategory,
  492. rules: [ { required: true, message: '此项为必填项!' } ],
  493. })(<Input placeholder="输入专业" maxLength={16}/>)}
  494. </FormItem>
  495. <FormItem className="half-item" {...formItemLayout} label="职业资格">
  496. {getFieldDecorator('qualification', {
  497. initialValue: theData.qualification,
  498. rules: [ { required: true, message: '此项为必填项!' } ],
  499. })(<Input placeholder="输入职业资格" maxLength={32} />)}
  500. </FormItem>
  501. <FormItem className="half-item" {...formItemLayout} label="就职单位">
  502. {getFieldDecorator('workUnit', {
  503. initialValue: theData.workUnit,
  504. rules: [ { required: true, message: '此项为必填项!' } ],
  505. })(<Input placeholder="输入就职单位全称" maxLength={64}/>)}
  506. </FormItem>
  507. <FormItem className="half-item" {...formItemLayout} label="职称">
  508. {getFieldDecorator('professionalTitle', {
  509. initialValue: theData.professionalTitle,
  510. rules: [ { required: true, message: '此项为必填项!' } ],
  511. })(<Input placeholder="输入职称" maxLength={32}/>)}
  512. </FormItem>
  513. <FormItem className="half-item" {...formItemLayout} label="社会属性">
  514. {getFieldDecorator('societyTag', {
  515. rules: [ { required: true, message: '此项为必填项!' } ],
  516. initialValue: theData.societyTag
  517. })(
  518. <Select placeholder="客户社会属性">
  519. {socialAttribute.map(function(item) {
  520. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  521. })}
  522. </Select>
  523. )}
  524. </FormItem>
  525. </div>:this.state.authenticationState=='1'?
  526. <div>
  527. <FormItem className="half-item" {...formItemLayout} label="顾问类型">
  528. {getFieldDecorator('adviserType', {
  529. rules: [ { required: true, message: '此项为必填项!' } ],
  530. initialValue: theData.consultantType=='0'?theData.consultantType.toString():undefined
  531. })(
  532. <Select placeholder="选择类型">
  533. {adviserType.map(function(item) {
  534. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  535. })}
  536. </Select>
  537. )}
  538. </FormItem>
  539. <FormItem className="half-item" {...formItemLayout} label="社会属性">
  540. {getFieldDecorator('societyTag', {
  541. rules: [ { required: true, message: '此项为必填项!' } ],
  542. initialValue: theData.societyTag
  543. })(
  544. <Select placeholder="客户社会属性">
  545. {socialAttribute.map(function(item) {
  546. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  547. })}
  548. </Select>
  549. )}
  550. </FormItem>
  551. </div>:''}
  552. {this.state.authenticationState=='1'||this.state.authenticationState=='0'?<div className="clearfix pictures">
  553. <div className="clearfix">
  554. <FormItem
  555. className="picWidth"
  556. labelCol={{ span: 9 }}
  557. wrapperCol={{ span: 10 }}
  558. label={<span><strong style={{color:"#f00"}}>*</strong><span>{this.state.authenticationState=='0'?'专家照片':'顾问照片'}</span></span> }
  559. >
  560. <PicturesWall
  561. fileList={this.getHeadPortraitUrl}
  562. pictureUrl={this.state.headPortraitUrl}
  563. />
  564. <p>建议:图片要清晰1。</p>
  565. </FormItem>
  566. </div>
  567. <FormItem
  568. className="picWidth"
  569. labelCol={{ span: 9 }}
  570. wrapperCol={{ span: 10 }}
  571. label={<span ><strong style={{color:"#f00"}}>*</strong><span>身份证正面</span></span> }
  572. >
  573. <PicturesWall fileList={this.getPositiveIdUrl} pictureUrl={this.state.positiveIdUrl} />
  574. <p>建议:图片要清晰。</p>
  575. </FormItem>
  576. <FormItem
  577. className="picWidth"
  578. labelCol={{ span: 9 }}
  579. wrapperCol={{ span: 10 }}
  580. label={<span><strong style={{color:"#f00"}}>*</strong><span>身份证反面</span></span> }
  581. >
  582. <PicturesWall fileList={this.getOppositeIdUrl} pictureUrl={this.state.oppositeIdUrl} />
  583. <p>建议:图片要清晰。</p>
  584. </FormItem>
  585. </div>:''}
  586. </div>:(this.state.auditStatus=='2'||this.state.auditStatus=='1')&&this.state.expert=='1'?
  587. <div>
  588. <div className="authState">专家认证<span>({getAuthState(this.state.auditStatus)})</span></div>
  589. <FormItem className="half-item" {...formItemLayout} label="毕业院校">
  590. <span>{theData.graduateSchool}</span>
  591. </FormItem>
  592. <FormItem className="half-item" {...formItemLayout} label="专业类别">
  593. <span>{theData.majorCategory}</span>
  594. </FormItem>
  595. <FormItem className="half-item" {...formItemLayout} label="职业资格">
  596. <span>{theData.qualification}</span>
  597. </FormItem>
  598. <FormItem className="half-item" {...formItemLayout} label="就职单位">
  599. <span>{theData.workUnit}</span>
  600. </FormItem>
  601. <FormItem className="half-item" {...formItemLayout} label="职称">
  602. <span>{theData.professionalTitle}</span>
  603. </FormItem>
  604. <FormItem className="half-item" {...formItemLayout} label="社会属性">
  605. <span>{getSocialAttribute(theData.societyTag)}</span>
  606. </FormItem>
  607. <div className="clearfix">
  608. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 13 }} label="专家照片">
  609. <Upload className="demandDetailShow-upload"
  610. listType="picture-card"
  611. fileList={this.state.headPortraitUrl}
  612. onPreview={(file) => {
  613. this.setState({
  614. previewImage: file.url || file.thumbUrl,
  615. previewVisible: true,
  616. });
  617. }} >
  618. </Upload>
  619. <Modal maskClosable={false} footer={null}
  620. visible={this.state.previewVisible}
  621. onCancel={() => { this.setState({ previewVisible: false }) }}>
  622. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  623. </Modal>
  624. </FormItem>
  625. </div>
  626. <FormItem className="picWidth" labelCol={{ span: 9 }} wrapperCol={{ span: 10 }} label="身份证正面">
  627. <div className="clearfix">
  628. <Upload className="demandDetailShow-upload"
  629. listType="picture-card"
  630. fileList={this.state.positiveIdUrl}
  631. onPreview={(file) => {
  632. this.setState({
  633. previewImage: file.url || file.thumbUrl,
  634. previewVisible: true,
  635. });
  636. }} >
  637. </Upload>
  638. <Modal maskClosable={false} footer={null}
  639. visible={this.state.previewVisible}
  640. onCancel={() => { this.setState({ previewVisible: false }) }}>
  641. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  642. </Modal>
  643. </div>
  644. </FormItem>
  645. <FormItem className="picWidth" labelCol={{ span:9 }} wrapperCol={{ span: 10 }} label="身份证反面">
  646. <div className="clearfix">
  647. <Upload className="demandDetailShow-upload"
  648. listType="picture-card"
  649. fileList={this.state.oppositeIdUrl}
  650. onPreview={(file) => {
  651. this.setState({
  652. previewImage: file.url || file.thumbUrl,
  653. previewVisible: true,
  654. });
  655. }} >
  656. </Upload>
  657. <Modal maskClosable={false} footer={null}
  658. visible={this.state.previewVisible}
  659. onCancel={() => { this.setState({ previewVisible: false }) }}>
  660. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  661. </Modal>
  662. </div>
  663. </FormItem>
  664. </div>:(this.state.auditStatus=='2'||this.state.auditStatus=='1')&&this.state.expert=='2'?
  665. <div className="clearfix">
  666. <div className="authState">顾问认证<span>({getAuthState(this.state.auditStatus)})</span></div>
  667. <FormItem className="half-item" {...formItemLayout} label="顾问类型">
  668. <span>{getAdviserType(theData.consultantType)}</span>
  669. </FormItem>
  670. <FormItem className="half-item" {...formItemLayout} label="社会属性">
  671. <span>{getSocialAttribute(theData.societyTag)}</span>
  672. </FormItem>
  673. <div className="clearfix">
  674. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 13 }} label="顾问照片">
  675. <Upload className="demandDetailShow-upload"
  676. listType="picture-card"
  677. fileList={this.state.headPortraitUrl}
  678. onPreview={(file) => {
  679. this.setState({
  680. previewImage: file.url || file.thumbUrl,
  681. previewVisible: true,
  682. });
  683. }} >
  684. </Upload>
  685. <Modal maskClosable={false} footer={null}
  686. visible={this.state.previewVisible}
  687. onCancel={() => { this.setState({ previewVisible: false }) }}>
  688. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  689. </Modal>
  690. </FormItem>
  691. </div>
  692. <div>
  693. <FormItem className="picWidth" labelCol={{ span: 9 }} wrapperCol={{ span: 10 }} label="身份证正面">
  694. <div className="clearfix">
  695. <Upload className="demandDetailShow-upload"
  696. listType="picture-card"
  697. fileList={this.state.positiveIdUrl}
  698. onPreview={(file) => {
  699. this.setState({
  700. previewImage: file.url || file.thumbUrl,
  701. previewVisible: true,
  702. });
  703. }} >
  704. </Upload>
  705. <Modal maskClosable={false} footer={null}
  706. visible={this.state.previewVisible}
  707. onCancel={() => { this.setState({ previewVisible: false }) }}>
  708. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  709. </Modal>
  710. </div>
  711. </FormItem>
  712. <FormItem className="picWidth" labelCol={{ span:9 }} wrapperCol={{ span: 10 }} label="身份证反面">
  713. <div className="clearfix">
  714. <Upload className="demandDetailShow-upload"
  715. listType="picture-card"
  716. fileList={this.state.oppositeIdUrl}
  717. onPreview={(file) => {
  718. this.setState({
  719. previewImage: file.url || file.thumbUrl,
  720. previewVisible: true,
  721. });
  722. }} >
  723. </Upload>
  724. <Modal maskClosable={false} footer={null}
  725. visible={this.state.previewVisible}
  726. onCancel={() => { this.setState({ previewVisible: false }) }}>
  727. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  728. </Modal>
  729. </div>
  730. </FormItem>
  731. </div>
  732. </div>:''}
  733. <div className="clearfix">
  734. <Row style={{ marginBottom: 20 }} >
  735. <Col offset={3} span={4}>
  736. <Button size="large" className="set-submit" type="primary" htmlType="submit">
  737. 保存
  738. </Button>
  739. </Col>
  740. </Row>
  741. </div>
  742. </Spin>
  743. </Form>
  744. <Modal visible={this.state.visible} onOk={this.handleOk} onCancel={this.handleCancel}>
  745. {this.state.authenticationState=='0'&&<p>是否申请专家认证?注意:认证成功后,您的信息将在本平台展示。</p>}
  746. {this.state.authenticationState=='1'&&<p>是否申请顾问认证?注意:认证成功后,您的信息将在本平台展示。</p>}
  747. {!this.state.authentication?<p>是否申请个人认证?</p>:''}
  748. </Modal>
  749. </div>
  750. );
  751. }
  752. });
  753. export default Form.create()(Expert);