expert.jsx 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  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. {this.state.auditStatus=='0'?
  387. <FormItem className="half-item" {...formItemLayout} label="社会属性">
  388. {getFieldDecorator('societyTag', {
  389. rules: [ { required: true, message: '此项为必填项!' } ],
  390. initialValue: theData.societyTag
  391. })(
  392. <Select placeholder="客户社会属性">
  393. {socialAttribute.map(function(item) {
  394. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  395. })}
  396. </Select>
  397. )}
  398. </FormItem>:
  399. <FormItem className="half-item" {...formItemLayout} label="社会属性">
  400. <span>{getSocialAttribute(theData.societyTag)}</span>
  401. </FormItem>}
  402. <FormItem className="half-item" {...formItemLayout} label="行业">
  403. {getFieldDecorator('industry', {
  404. rules: [ { required: true, message: '此项为必填项!' } ],
  405. initialValue: theData.industry?theData.industry.toString():undefined
  406. })(
  407. <Select placeholder="选择行业">
  408. {industry.map(function(item) {
  409. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  410. })}
  411. </Select>
  412. )}
  413. </FormItem>
  414. <FormItem className="half-item" {...formItemLayout} label="性别">
  415. {getFieldDecorator('sex', {
  416. initialValue: theData.sex
  417. })(
  418. <Radio.Group>
  419. <Radio value={'男'}>男</Radio>
  420. <Radio value={'女'}>女</Radio>
  421. </Radio.Group>
  422. )}
  423. </FormItem>
  424. <FormItem className="half-item" {...formItemLayout} label="出生日期">
  425. <MonthPicker
  426. value={this.state.yearMonth?moment(this.state.yearMonth, monthFormat):undefined}
  427. format={monthFormat}
  428. onChange={(time,times) => {
  429. this.setState({ yearMonth: time,yearList:times });
  430. }}
  431. />
  432. </FormItem>
  433. <FormItem className="half-item" {...formItemLayout} label="身份证号码">
  434. {getFieldDecorator('idNumber', {
  435. initialValue: theData.idNumber
  436. })(<Input placeholder="身份证号码" maxLength={20}/>)}
  437. </FormItem>
  438. </div>
  439. <div className="clearfix">
  440. <FormItem className="half-item" {...formItemLayout} label="省-市-区">
  441. {getFieldDecorator('ProvinceCity', {
  442. rules: [ { required: true, message: '此项为必填项!' } ],
  443. initialValue: this.state.ProvinceCity
  444. })(<Cascader options={areaSelect()} placeholder="选择城市" />)}
  445. </FormItem>
  446. <FormItem className="half-item" {...formItemLayout} label="通信地址">
  447. {getFieldDecorator('postalAddress', {
  448. initialValue: theData.postalAddress
  449. })(<Input placeholder="输入通信地址" maxLength={255}/>)}
  450. </FormItem>
  451. {/* <FormItem className="half-item" {...formItemLayout} label="手机号码">
  452. {getFieldDecorator('mobile', {
  453. rules: [ { required: true, message: '此项为必填项!' } ],
  454. initialValue: theData.mobile
  455. })(<Input placeholder="输入手机号码" maxLength={16}/>)}
  456. </FormItem> */}
  457. <FormItem className="half-item" {...formItemLayout} label="固定电话">
  458. {getFieldDecorator('fixedTel', {
  459. initialValue: theData.fixedTel
  460. })(<Input placeholder="输入固定电话" maxLength={13}/>)}
  461. </FormItem>
  462. <FormItem className="half-item" {...formItemLayout} label="QQ">
  463. {getFieldDecorator('qq', {
  464. initialValue: theData.qq
  465. })(<Input placeholder="输入qq" maxLength={16}/>)}
  466. </FormItem>
  467. <FormItem className="half-item" {...formItemLayout} label="电子邮箱">
  468. {getFieldDecorator('email', {
  469. initialValue: theData.email
  470. })(<Input placeholder="输入电子邮箱" maxLength={128}/>)}
  471. </FormItem>
  472. </div>
  473. <div className="clearfix">
  474. <FormItem
  475. labelCol={{ span: 3 }}
  476. wrapperCol={{ span: 18 }}
  477. label="个人简介"
  478. >
  479. {getFieldDecorator('introduction', {
  480. initialValue: theData.introduction
  481. })(<Input type="textarea" rows={4} maxLength={512} placeholder="输入个人简介"/>)}
  482. </FormItem>
  483. </div>
  484. {(this.state.expert=='0'||this.state.auditStatus=='0'||this.state.expert==null||this.state.auditStatus=='3')&&this.state.type!=null?
  485. <div>
  486. <div className="clearfix btnGrounp">
  487. <Radio.Group
  488. value={this.state.authenticationState}
  489. onChange={(e)=>{this.setState({
  490. authenticationState:e.target.value
  491. })}}>
  492. <Radio.Button value="0">专家认证</Radio.Button>
  493. <Radio.Button value="1">顾问认证</Radio.Button>
  494. </Radio.Group>
  495. <Button type="dashed" style={{marginLeft:20}} onClick={(e)=>{this.setState({authenticationState:undefined})}}>暂不认证</Button>
  496. <span style={{marginLeft:10,color:'#f00'}}>{this.state.auditStatus=='3'?"(认证失败:"+this.state.authMessage+')':''}</span>
  497. </div>
  498. {(this.state.authenticationState=='0'||this.state.auditStatus!='0')?<div className="patentBody">
  499. <FormItem className="half-item" {...formItemLayout} label="毕业院校">
  500. {getFieldDecorator('graduateSchool', {
  501. initialValue: theData.graduateSchool,
  502. rules: [ { required: true, message: '此项为必填项!' } ],
  503. })(<Input placeholder="输入毕业院校全称" maxLength={32}/>)}
  504. </FormItem>
  505. <FormItem className="half-item" {...formItemLayout} label="专业类别">
  506. {getFieldDecorator('majorCategory', {
  507. initialValue: theData.majorCategory,
  508. rules: [ { required: true, message: '此项为必填项!' } ],
  509. })(<Input placeholder="输入专业" maxLength={16}/>)}
  510. </FormItem>
  511. <FormItem className="half-item" {...formItemLayout} label="职业资格">
  512. {getFieldDecorator('qualification', {
  513. initialValue: theData.qualification,
  514. rules: [ { required: true, message: '此项为必填项!' } ],
  515. })(<Input placeholder="输入职业资格" maxLength={32} />)}
  516. </FormItem>
  517. <FormItem className="half-item" {...formItemLayout} label="就职单位">
  518. {getFieldDecorator('workUnit', {
  519. initialValue: theData.workUnit,
  520. rules: [ { required: true, message: '此项为必填项!' } ],
  521. })(<Input placeholder="输入就职单位全称" maxLength={64}/>)}
  522. </FormItem>
  523. <FormItem className="half-item" {...formItemLayout} label="职称">
  524. {getFieldDecorator('professionalTitle', {
  525. initialValue: theData.professionalTitle,
  526. rules: [ { required: true, message: '此项为必填项!' } ],
  527. })(<Input placeholder="输入职称" maxLength={32}/>)}
  528. </FormItem>
  529. </div>:this.state.authenticationState=='1'?
  530. <div>
  531. <FormItem className="half-item" {...formItemLayout} label="顾问类型">
  532. {getFieldDecorator('adviserType', {
  533. rules: [ { required: true, message: '此项为必填项!' } ],
  534. initialValue: theData.consultantType=='0'?theData.consultantType.toString():undefined
  535. })(
  536. <Select placeholder="选择类型">
  537. {adviserType.map(function(item) {
  538. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  539. })}
  540. </Select>
  541. )}
  542. </FormItem>
  543. </div>:''}
  544. {this.state.authenticationState=='1'||this.state.authenticationState=='0'?<div className="clearfix pictures">
  545. <div className="clearfix">
  546. <FormItem
  547. className="picWidth"
  548. labelCol={{ span: 9 }}
  549. wrapperCol={{ span: 10 }}
  550. label={<span><strong style={{color:"#f00"}}>*</strong><span>{this.state.authenticationState=='0'?'专家照片':'顾问照片'}</span></span> }
  551. >
  552. <PicturesWall
  553. fileList={this.getHeadPortraitUrl}
  554. pictureUrl={this.state.headPortraitUrl}
  555. />
  556. <p>建议:图片要清晰1。</p>
  557. </FormItem>
  558. </div>
  559. <FormItem
  560. className="picWidth"
  561. labelCol={{ span: 9 }}
  562. wrapperCol={{ span: 10 }}
  563. label={<span ><strong style={{color:"#f00"}}>*</strong><span>身份证正面</span></span> }
  564. >
  565. <PicturesWall fileList={this.getPositiveIdUrl} pictureUrl={this.state.positiveIdUrl} />
  566. <p>建议:图片要清晰。</p>
  567. </FormItem>
  568. <FormItem
  569. className="picWidth"
  570. labelCol={{ span: 9 }}
  571. wrapperCol={{ span: 10 }}
  572. label={<span><strong style={{color:"#f00"}}>*</strong><span>身份证反面</span></span> }
  573. >
  574. <PicturesWall fileList={this.getOppositeIdUrl} pictureUrl={this.state.oppositeIdUrl} />
  575. <p>建议:图片要清晰。</p>
  576. </FormItem>
  577. </div>:''}
  578. </div>:(this.state.auditStatus=='2'||this.state.auditStatus=='1')&&this.state.expert=='1'?
  579. <div>
  580. <div className="authState">专家认证<span>({getAuthState(this.state.auditStatus)})</span></div>
  581. <FormItem className="half-item" {...formItemLayout} label="毕业院校">
  582. <span>{theData.graduateSchool}</span>
  583. </FormItem>
  584. <FormItem className="half-item" {...formItemLayout} label="专业类别">
  585. <span>{theData.majorCategory}</span>
  586. </FormItem>
  587. <FormItem className="half-item" {...formItemLayout} label="职业资格">
  588. <span>{theData.qualification}</span>
  589. </FormItem>
  590. <FormItem className="half-item" {...formItemLayout} label="就职单位">
  591. <span>{theData.workUnit}</span>
  592. </FormItem>
  593. <FormItem className="half-item" {...formItemLayout} label="职称">
  594. <span>{theData.professionalTitle}</span>
  595. </FormItem>
  596. <div className="clearfix">
  597. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 13 }} label="专家照片">
  598. <Upload className="demandDetailShow-upload"
  599. listType="picture-card"
  600. fileList={this.state.headPortraitUrl}
  601. onPreview={(file) => {
  602. this.setState({
  603. previewImage: file.url || file.thumbUrl,
  604. previewVisible: true,
  605. });
  606. }} >
  607. </Upload>
  608. <Modal maskClosable={false} footer={null}
  609. visible={this.state.previewVisible}
  610. onCancel={() => { this.setState({ previewVisible: false }) }}>
  611. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  612. </Modal>
  613. </FormItem>
  614. </div>
  615. <FormItem className="picWidth" labelCol={{ span: 9 }} wrapperCol={{ span: 10 }} label="身份证正面">
  616. <div className="clearfix">
  617. <Upload className="demandDetailShow-upload"
  618. listType="picture-card"
  619. fileList={this.state.positiveIdUrl}
  620. onPreview={(file) => {
  621. this.setState({
  622. previewImage: file.url || file.thumbUrl,
  623. previewVisible: true,
  624. });
  625. }} >
  626. </Upload>
  627. <Modal maskClosable={false} footer={null}
  628. visible={this.state.previewVisible}
  629. onCancel={() => { this.setState({ previewVisible: false }) }}>
  630. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  631. </Modal>
  632. </div>
  633. </FormItem>
  634. <FormItem className="picWidth" labelCol={{ span:9 }} wrapperCol={{ span: 10 }} label="身份证反面">
  635. <div className="clearfix">
  636. <Upload className="demandDetailShow-upload"
  637. listType="picture-card"
  638. fileList={this.state.oppositeIdUrl}
  639. onPreview={(file) => {
  640. this.setState({
  641. previewImage: file.url || file.thumbUrl,
  642. previewVisible: true,
  643. });
  644. }} >
  645. </Upload>
  646. <Modal maskClosable={false} footer={null}
  647. visible={this.state.previewVisible}
  648. onCancel={() => { this.setState({ previewVisible: false }) }}>
  649. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  650. </Modal>
  651. </div>
  652. </FormItem>
  653. </div>:(this.state.auditStatus=='2'||this.state.auditStatus=='1')&&this.state.expert=='2'?
  654. <div className="clearfix">
  655. <div className="authState">顾问认证<span>({getAuthState(this.state.auditStatus)})</span></div>
  656. <FormItem className="half-item" {...formItemLayout} label="顾问类型">
  657. <span>{getAdviserType(theData.consultantType)}</span>
  658. </FormItem>
  659. <div className="clearfix">
  660. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 13 }} label="顾问照片">
  661. <Upload className="demandDetailShow-upload"
  662. listType="picture-card"
  663. fileList={this.state.headPortraitUrl}
  664. onPreview={(file) => {
  665. this.setState({
  666. previewImage: file.url || file.thumbUrl,
  667. previewVisible: true,
  668. });
  669. }} >
  670. </Upload>
  671. <Modal maskClosable={false} footer={null}
  672. visible={this.state.previewVisible}
  673. onCancel={() => { this.setState({ previewVisible: false }) }}>
  674. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  675. </Modal>
  676. </FormItem>
  677. </div>
  678. <div>
  679. <FormItem className="picWidth" labelCol={{ span: 9 }} wrapperCol={{ span: 10 }} label="身份证正面">
  680. <div className="clearfix">
  681. <Upload className="demandDetailShow-upload"
  682. listType="picture-card"
  683. fileList={this.state.positiveIdUrl}
  684. onPreview={(file) => {
  685. this.setState({
  686. previewImage: file.url || file.thumbUrl,
  687. previewVisible: true,
  688. });
  689. }} >
  690. </Upload>
  691. <Modal maskClosable={false} footer={null}
  692. visible={this.state.previewVisible}
  693. onCancel={() => { this.setState({ previewVisible: false }) }}>
  694. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  695. </Modal>
  696. </div>
  697. </FormItem>
  698. <FormItem className="picWidth" labelCol={{ span:9 }} wrapperCol={{ span: 10 }} label="身份证反面">
  699. <div className="clearfix">
  700. <Upload className="demandDetailShow-upload"
  701. listType="picture-card"
  702. fileList={this.state.oppositeIdUrl}
  703. onPreview={(file) => {
  704. this.setState({
  705. previewImage: file.url || file.thumbUrl,
  706. previewVisible: true,
  707. });
  708. }} >
  709. </Upload>
  710. <Modal maskClosable={false} footer={null}
  711. visible={this.state.previewVisible}
  712. onCancel={() => { this.setState({ previewVisible: false }) }}>
  713. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  714. </Modal>
  715. </div>
  716. </FormItem>
  717. </div>
  718. </div>:''}
  719. <div className="clearfix">
  720. <Row style={{ marginBottom: 20 }} >
  721. <Col offset={3} span={4}>
  722. <Button size="large" className="set-submit" type="primary" htmlType="submit">
  723. 保存
  724. </Button>
  725. </Col>
  726. </Row>
  727. </div>
  728. </Spin>
  729. </Form>
  730. <Modal visible={this.state.visible} onOk={this.handleOk} onCancel={this.handleCancel}>
  731. {this.state.authenticationState=='0'&&<p>是否申请专家认证?注意:认证成功后,您的信息将在本平台展示。</p>}
  732. {this.state.authenticationState=='1'&&<p>是否申请顾问认证?注意:认证成功后,您的信息将在本平台展示。</p>}
  733. {!this.state.authentication?<p>是否申请个人认证?</p>:''}
  734. </Modal>
  735. </div>
  736. );
  737. }
  738. });
  739. export default Form.create()(Expert);