| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124 | 
							- import React from 'react';
 
- import { Icon, Modal, message, Spin, Button, Tabs, Input, Select, Form, DatePicker, Cascader, Upload } from 'antd';
 
- import './userList.less';
 
- import ajax from 'jquery/src/ajax/xhr.js';
 
- import $ from 'jquery/src/ajax';
 
- import moment from 'moment';
 
- import { eduLevelList, auditStatusList, certifyStepList } from '../../dataDic.js'
 
- import { beforeUploadFile, getAuditState } from '../../tools.js';
 
- import { areaSelect, getProvince } from '../../NewDicProvinceList';
 
- import { getTechField, techFieldList } from '../../DicTechFieldList';
 
- const OrgShow = Form.create()(React.createClass({
 
-     getInitialState() {
 
-         return {
 
-             loading: false,
 
-             tabKey: "1",
 
-             eduLvlOption: [],
 
-             eduLvlObj: {},
 
-             field: []
 
-         };
 
-     },
 
-     loadData(uid) {
 
-         this.state.data = [];
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "get",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/userCertify/orgDetail",
 
-             data: {
 
-                 uid: uid
 
-             },
 
-             success: function (data) {
 
-                 let thisData = data.data;
 
-                 if (!thisData) {
 
-                     if (data.error && data.error.length) {
 
-                         message.warning(data.error[0].message);
 
-                     };
 
-                     thisData = {};
 
-                 };
 
-                 this.setState({
 
-                     id: thisData.id,
 
-                     licenceProvince: thisData.licenceProvince,
 
-                     licenceCity: thisData.licenceCity,
 
-                     licenceArea: thisData.licenceArea,
 
-                     locationProvince: thisData.locationProvince,
 
-                     locationCity: thisData.locationCity,
 
-                     locationArea: thisData.locationArea,
 
-                     contacts: thisData.contacts,
 
-                     contactMobile: thisData.contactMobile,
 
-                     fixedTel: thisData.fixedTel,
 
-                     qq: thisData.qq,
 
-                     postalAddress: thisData.postalAddress,
 
-                     postcode: thisData.postcode,
 
-                     aftUsername: thisData.aftUsername,
 
-                     unitName: thisData.unitName,
 
-                     identityType: thisData.identityType, //组织性质
 
-                     registeredCapital: thisData.registeredCapital, //注册资金
 
-                     firstContacts: thisData.firstContacts,
 
-                     firstMobile: thisData.firstMobile,
 
-                     secondContacts: thisData.secondContacts,
 
-                     secondMobile: thisData.secondMobile,
 
-                     thirdContacts: thisData.thirdContacts,
 
-                     thirdMobile: thisData.thirdMobile,
 
-                     field: thisData.field ? thisData.field.split(',') : [],
 
-                     legalPerson: thisData.legalPerson,
 
-                     legalPersonIdCard: thisData.legalPersonIdCard,
 
-                     licenceNumber: thisData.licenceNumber,
 
-                     licenceScanningUrl: thisData.licenceScanningUrl,
 
-                     orgCode: thisData.orgCode,
 
-                     orgCodeUrl: thisData.orgCodeUrl,
 
-                     bankAccount: thisData.bankAccount,
 
-                     banks: thisData.banks,
 
-                     bankBranch: thisData.bankBranch,
 
-                     bankCardNumber: thisData.bankCardNumber,
 
-                     validationAmount: thisData.validationAmount, //打款金额
 
-                     paymentDate: thisData.paymentDate,
 
-                     paymentDateFormattedDate: thisData.paymentDateFormattedDate,
 
-                     lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
 
-                     auditStatus: thisData.auditStatus,
 
-                     level: thisData.level,
 
-                     aid: thisData.aid,   //业务员ID
 
-                     mid: thisData.mid  //客户经理ID
 
-                 });
 
-                 this.props.form.resetFields();
 
-             }.bind(this),
 
-         }).always(function () {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-         }.bind(this));
 
-     },
 
-     getAccountManagerList() {
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "get",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/userCertify/accountManager",
 
-             success: function (data) {
 
-                 let theArr = [];
 
-                 if (!data.data) {
 
-                     if (data.error && data.error.length) {
 
-                         message.warning(data.error[0].message);
 
-                     };
 
-                     return;
 
-                 };
 
-                 for (var item in data.data) {
 
-                     theArr.push(
 
-                         <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
 
-                     )
 
-                 };
 
-                 this.setState({
 
-                     accountManagerOption: theArr,
 
-                     accountManagerList: data.data
 
-                 });
 
-             }.bind(this),
 
-         }).always(function () {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-         }.bind(this));
 
-     },
 
-     getTechnicianList() {
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "get",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/userCertify/technician",
 
-             success: function (data) {
 
-                 let theArr = [];
 
-                 if (!data.data) {
 
-                     if (data.error && data.error.length) {
 
-                         message.warning(data.error[0].message);
 
-                     };
 
-                     return;
 
-                 };
 
-                 for (var item in data.data) {
 
-                     theArr.push(
 
-                         <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
 
-                     )
 
-                 };
 
-                 this.setState({
 
-                     technicianOption: theArr,
 
-                     technicianList: data.data
 
-                 });
 
-             }.bind(this),
 
-         }).always(function () {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-         }.bind(this));
 
-     },
 
-     handleSubmit(e) {
 
-         e.preventDefault();
 
-         this.props.form.validateFields((err, values) => {
 
-             if (!err) {
 
-                 this.setState({
 
-                     loading: true
 
-                 });
 
-                 $.ajax({
 
-                     method: "POST",
 
-                     dataType: "json",
 
-                     crossDomain: false,
 
-                     url: globalConfig.context + "/api/admin/userCertify/updateOrgDetail",
 
-                     data: {
 
-                         uid: this.props.uid,
 
-                         id: this.state.id,
 
-                         auditStatus: values.auditStatus,
 
-                         //level: this.state.level,
 
-                         aid: values.aid, //指派业务员ID
 
-                         mid: values.mid, //指派客户经理ID
 
-                     }
 
-                 }).done(function (data) {
 
-                     if (!data.error.length) {
 
-                         message.success('保存成功!');
 
-                     } else {
 
-                         message.warning(data.error[0].message);
 
-                     }
 
-                 }.bind(this)).always(function () {
 
-                     this.setState({
 
-                         loading: false
 
-                     });
 
-                     this.props.handleOk();
 
-                 }.bind(this));
 
-             }
 
-         });
 
-     },
 
-     handleCancel() {
 
-         this.props.closeDesc(false);
 
-     },
 
-     componentWillMount() {
 
-         let _me = this;
 
-         eduLevelList.map(function (item, i) {
 
-             _me.state.eduLvlObj[item.value] = item.key
 
-         });
 
-         this.loadData(this.props.uid);
 
-         this.getAccountManagerList();
 
-         this.getTechnicianList();
 
-     },
 
-     componentWillReceiveProps(nextProps) {
 
-         if (!this.props.visible && nextProps.visible) {
 
-             this.loadData(nextProps.uid);
 
-             this.state.tabKey = "1";
 
-         };
 
-     },
 
-     render() {
 
-         const { getFieldDecorator } = this.props.form;
 
-         const FormItem = Form.Item
 
-         const formItemLayout = {
 
-             labelCol: { span: 6 },
 
-             wrapperCol: { span: 12 },
 
-         };
 
-         return (
 
-             <Form horizontal onSubmit={this.handleSubmit} className="person-form">
 
-                 <Tabs defaultActiveKey="1" activeKey={this.state.tabKey} onChange={(e) => { this.setState({ tabKey: e }); }}>
 
-                     <Tabs.TabPane tab="基本资料" key="1">
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="公司名称" >
 
-                             {getFieldDecorator('unitName')(
 
-                                 <span>{this.state.unitName}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="认证名称" >
 
-                             {getFieldDecorator('aftUsername', {
 
-                                 initialValue: this.state.aftUsername
 
-                             })(
 
-                                 <span>{this.state.aftUsername}</span>
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem className="half-item"
 
-                             {...formItemLayout}
 
-                             label="领域" >
 
-                             {getFieldDecorator('field')(
 
-                                 <span>{getTechField(this.state.field[0], this.state.field[1], this.state.field[2])}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="身份类型" >
 
-                             {getFieldDecorator('identityType')(
 
-                                 <span>{this.state.eduLvlObj[this.state.identityType]}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第一联系人" >
 
-                             {getFieldDecorator('firstContacts')(
 
-                                 <span>{this.state.firstContacts}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第一联系人电话" >
 
-                             {getFieldDecorator('firstMobile')(
 
-                                 <span>{this.state.firstMobile}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第二联系人" >
 
-                             {getFieldDecorator('secondContacts')(
 
-                                 <span>{this.state.secondContacts}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第二联系人电话" >
 
-                             {getFieldDecorator('secondMobile')(
 
-                                 <span>{this.state.secondMobile}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第三联系人" >
 
-                             {getFieldDecorator('thirdContacts')(
 
-                                 <span>{this.state.thirdContacts}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第三联系人电话"
 
-                         >
 
-                             {getFieldDecorator('thirdMobile')(
 
-                                 <span>{this.state.thirdMobile}</span>
 
-                             )}
 
-                         </FormItem>
 
-                     </Tabs.TabPane>
 
-                     <Tabs.TabPane tab="认证信息" key="2">
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="法人" >
 
-                             {getFieldDecorator('legalPerson')(
 
-                                 <span>{this.state.legalPerson}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="法人身份证号" >
 
-                             {getFieldDecorator('legalPersonIdCard')(
 
-                                 <span>{this.state.legalPersonIdCard}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="注册资金" >
 
-                             {getFieldDecorator('registeredCapital')(
 
-                                 <span>{this.state.registeredCapital}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="营业执照编号" >
 
-                             {getFieldDecorator('licenceNumber')(
 
-                                 <span>{this.state.licenceNumber}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="营业执照所在地" >
 
-                             {getFieldDecorator('licenceAddress', {
 
-                                 initialValue: this.state.licenceAddress
 
-                             })(
 
-                                 <span>{getProvince(this.state.licenceProvince, this.state.licenceCity, this.state.licenceArea)}</span>
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             labelCol={{ span: 6 }}
 
-                             wrapperCol={{ span: 18 }}
 
-                             label="营业执照图片" >
 
-                             <div className="idcard-img clearfix">
 
-                                 {this.state.licenceScanningUrl ? <div>
 
-                                     <div className="idcard-imgbox">
 
-                                         <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
 
-                                             onClick={(e) => { window.open(e.target.src) }} />
 
-                                     </div>
 
-                                 </div> : <div>
 
-                                         <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
 
-                                     </div>}
 
-                             </div>
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="组织机构代码" >
 
-                             {getFieldDecorator('orgCode')(
 
-                                 <span>{this.state.orgCode}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             labelCol={{ span: 6 }}
 
-                             wrapperCol={{ span: 18 }}
 
-                             label="组织机构代码证图片" >
 
-                             <div className="idcard-img clearfix">
 
-                                 {this.state.orgCodeUrl ? <div>
 
-                                     <div className="idcard-imgbox">
 
-                                         <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
 
-                                             onClick={(e) => { window.open(e.target.src) }} />
 
-                                     </div>
 
-                                 </div> : <div>
 
-                                         <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
 
-                                     </div>}
 
-                             </div>
 
-                         </FormItem>
 
-                         <FormItem
 
-                             labelCol={{ span: 6 }}
 
-                             wrapperCol={{ span: 18 }}
 
-                             label="上年度纳税报表" >
 
-                             <div className="idcard-img clearfix">
 
-                                 {this.state.lastYearTaxReportUrl ? <div>
 
-                                     <div className="idcard-imgbox">
 
-                                         <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
 
-                                             onClick={(e) => { window.open(e.target.src) }} />
 
-                                     </div>
 
-                                 </div> : <div>
 
-                                         <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
 
-                                     </div>}
 
-                             </div>
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="开户银行" >
 
-                             {getFieldDecorator('banks')(
 
-                                 <span>{this.state.banks}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="开户银行支行" >
 
-                             {getFieldDecorator('bankBranch')(
 
-                                 <span>{this.state.bankBranch}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="银行卡号" >
 
-                             {getFieldDecorator('bankCardNumber')(
 
-                                 <span>{this.state.bankCardNumber}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="开户行所在地" >
 
-                             {getFieldDecorator('locationAddress', {
 
-                                 initialValue: this.state.locationAddress
 
-                             })(
 
-                                 <span>{getProvince(this.state.locationProvince, this.state.locationCity, this.state.locationArea)}</span>
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="用户等级" >
 
-                             {getFieldDecorator('level')(
 
-                                 <span>{"Lv." + (this.state.level || 0)}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="认证状态" >
 
-                             {getFieldDecorator('auditStatus', {
 
-                                 initialValue: this.state.auditStatus
 
-                             })(
 
-                                 <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
 
-                                     onChange={(e) => { this.state.auditStatus = e }}>
 
-                                     {
 
-                                         auditStatusList.map(function (item, i) {
 
-                                             return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
 
-                                         })
 
-                                     }
 
-                                 </Select>
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="业务员" >
 
-                             {getFieldDecorator('aid', {
 
-                                 initialValue: this.state.aid
 
-                             })(
 
-                                 <Select placeholder="选择一个业务员" style={{ width: 200 }}>
 
-                                     {this.state.technicianOption}
 
-                                 </Select>
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="客户经理" >
 
-                             {getFieldDecorator('mid', {
 
-                                 initialValue: this.state.mid
 
-                             })(
 
-                                 <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
 
-                                     {this.state.accountManagerOption}
 
-                                 </Select>
 
-                                 )}
 
-                         </FormItem>
 
-                     </Tabs.TabPane>
 
-                 </Tabs>
 
-                 <FormItem wrapperCol={{ span: 12, offset: 4 }}>
 
-                     <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
 
-                     <Button className="set-submit" type="ghost" onClick={() => { this.props.closeDesc }} >取消</Button>
 
-                 </FormItem>
 
-             </Form >
 
-         );
 
-     }
 
- }));
 
- const OrgCertify = Form.create()(React.createClass({
 
-     getInitialState() {
 
-         return {
 
-             loading: false,
 
-             tabKey: "1",
 
-             saveSign: "save",
 
-             eduLvlOption: [],
 
-             auditStatusOption: []
 
-         };
 
-     },
 
-     loadData(uid) {
 
-         this.state.data = [];
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "post",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/orgDetail",
 
-             data: {
 
-                 uid: uid
 
-             },
 
-             success: function (data) {
 
-                 let thisData = data.data;
 
-                 if (!thisData) {
 
-                     if (data.error && data.error.length) {
 
-                         message.warning(data.error[0].message);
 
-                     };
 
-                     thisData = {};
 
-                 };
 
-                 this.setState({
 
-                     id: thisData.id,
 
-                     licenceAddress: [thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea],
 
-                     locationAddress: [thisData.locationProvince, thisData.locationCity, thisData.locationArea],
 
-                     contacts: thisData.contacts,
 
-                     contactMobile: thisData.contactMobile,
 
-                     fixedTel: thisData.fixedTel,
 
-                     qq: thisData.qq,
 
-                     postalAddress: thisData.postalAddress,
 
-                     postcode: thisData.postcode,
 
-                     aftUsername: thisData.aftUsername,
 
-                     unitName: thisData.unitName,
 
-                     identityType: thisData.identityType, //组织性质
 
-                     field: thisData.field ? thisData.field.split(',') : [],
 
-                     registeredCapital: thisData.registeredCapital, //注册资金
 
-                     firstContacts: thisData.firstContacts,
 
-                     firstMobile: thisData.firstMobile,
 
-                     secondContacts: thisData.secondContacts,
 
-                     secondMobile: thisData.secondMobile,
 
-                     thirdContacts: thisData.thirdContacts,
 
-                     thirdMobile: thisData.thirdMobile,
 
-                     legalPerson: thisData.legalPerson,
 
-                     legalPersonIdCard: thisData.legalPersonIdCard,
 
-                     licenceNumber: thisData.licenceNumber,
 
-                     licenceScanningUrl: thisData.licenceScanningUrl,
 
-                     orgCode: thisData.orgCode,
 
-                     orgCodeUrl: thisData.orgCodeUrl,
 
-                     bankAccount: thisData.bankAccount,
 
-                     banks: thisData.banks,
 
-                     bankBranch: thisData.bankBranch,
 
-                     bankCardNumber: thisData.bankCardNumber,
 
-                     validationAmount: thisData.validationAmount, //打款金额
 
-                     paymentDate: thisData.paymentDate,
 
-                     paymentDateFormattedDate: thisData.paymentDateFormattedDate,
 
-                     lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
 
-                     auditStatus: thisData.auditStatus,
 
-                     level: thisData.level,
 
-                     aid: thisData.aid,   //业务员ID
 
-                     mid: thisData.mid  //客户经理ID
 
-                 });
 
-                 this.props.form.resetFields();
 
-             }.bind(this),
 
-         }).always(function () {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-         }.bind(this));
 
-     },
 
-     handleSubmit(e) {
 
-         if (e) {
 
-             e.preventDefault();
 
-         };
 
-         this.props.form.validateFields((err, values) => {
 
-             if (!err) {
 
-                 this.setState({
 
-                     loading: true
 
-                 });
 
-                 // //金额判断
 
-                 // if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
 
-                 //     message.warning('请输入0-100以内的金额');
 
-                 //     return;
 
-                 // };
 
-                 if ((this.state.auditStatus == "5" && values.level == "0") || (this.state.auditStatus != "5" && values.level != "0")) {
 
-                     message.warning('认证状态和用户等级不匹配!');
 
-                     return;
 
-                 };
 
-                 $.ajax({
 
-                     method: "POST",
 
-                     dataType: "json",
 
-                     crossDomain: false,
 
-                     url: globalConfig.context + "/api/admin/updateOrgDetail",
 
-                     data: {
 
-                         uid: this.props.uid,
 
-                         id: this.state.id,
 
-                         contacts: values.contacts,
 
-                         contactMobile: values.contactMobile,
 
-                         postalAddress: values.postalAddress,
 
-                         postcode: values.postcode,
 
-                         aftUsername: values.aftUsername,
 
-                         unitName: values.unitName,
 
-                         identityType: values.identityType, //组织性质
 
-                         registeredCapital: values.registeredCapital, //注册资金
 
-                         legalPerson: values.legalPerson,
 
-                         legalPersonIdCard: values.legalPersonIdCard,
 
-                         licenceNumber: values.licenceNumber,
 
-                         orgCode: values.orgCode,
 
-                         field: values.field ? values.field.join(',') : undefined,
 
-                         firstContacts: values.firstContacts,
 
-                         firstMobile: values.firstMobile,
 
-                         secondContacts: values.secondContacts,
 
-                         secondMobile: values.secondMobile,
 
-                         thirdContacts: values.thirdContacts,
 
-                         thirdMobile: values.thirdMobile,
 
-                         bankAccount: values.bankAccount,
 
-                         banks: values.banks,
 
-                         bankBranch: values.bankBranch,
 
-                         bankCardNumber: values.bankCardNumber,
 
-                         validationAmount: values.validationAmount, //打款金额
 
-                         paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
 
-                         licenceScanningUrl: this.state.licenceScanningUrl,
 
-                         orgCodeUrl: this.state.orgCodeUrl,
 
-                         lastYearTaxReportUrl: this.state.lastYearTaxReportUrl,
 
-                         //process: this.state.process,
 
-                         licenceArea: values.licenceAddress[2],
 
-                         licenceCity: values.licenceAddress[1],
 
-                         licenceProvince: values.licenceAddress[0],
 
-                         locationArea: values.locationAddress[2],
 
-                         locationCity: values.locationAddress[1],
 
-                         locationProvince: values.locationAddress[0],
 
-                         //auditStatus: this.state.auditStatus,
 
-                         level: values.level,
 
-                         aid: values.aid, //指派业务员ID
 
-                         mid: values.mid, //指派客户经理ID
 
-                         saveSign: this.state.saveSign
 
-                     }
 
-                 }).done(function (data) {
 
-                     if (!data.error.length) {
 
-                         message.success('保存成功!');
 
-                     } else {
 
-                         message.warning(data.error[0].message);
 
-                     }
 
-                 }.bind(this)).always(function () {
 
-                     this.setState({
 
-                         loading: false,
 
-                         saveSign: "save"
 
-                     });
 
-                     this.props.handleOk();
 
-                 }.bind(this));
 
-             }
 
-         });
 
-     },
 
-     handleCancel() {
 
-         this.props.closeDesc(false);
 
-     },
 
-     componentWillMount() {
 
-         let _me = this;
 
-         eduLevelList.map(function (item, i) {
 
-             _me.state.eduLvlOption.push(
 
-                 <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
 
-             );
 
-         });
 
-         this.loadData(this.props.uid);
 
-     },
 
-     componentWillReceiveProps(nextProps) {
 
-         if (!this.props.visible && nextProps.visible) {
 
-             this.loadData(nextProps.uid);
 
-             this.state.tabKey = "1";
 
-         };
 
-     },
 
-     render() {
 
-         const { getFieldDecorator } = this.props.form;
 
-         const FormItem = Form.Item
 
-         const formItemLayout = {
 
-             labelCol: { span: 6 },
 
-             wrapperCol: { span: 12 },
 
-         };
 
-         return (
 
-             <Form horizontal onSubmit={this.handleSubmit} className="person-form">
 
-                 <Tabs defaultActiveKey="1" activeKey={this.state.tabKey} onChange={(e) => { this.setState({ tabKey: e }); }}>
 
-                     <Tabs.TabPane tab="基本资料" key="1">
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="公司名称" >
 
-                             {getFieldDecorator('unitName', {
 
-                                 initialValue: this.state.unitName
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="认证名称" >
 
-                             {getFieldDecorator('aftUsername', {
 
-                                 initialValue: this.state.aftUsername
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="身份类型" >
 
-                             {getFieldDecorator('identityType', {
 
-                                 initialValue: this.state.identityType
 
-                             })(
 
-                                 <Select placeholder="身份类型" style={{ width: 200 }}
 
-                                     onChange={(e) => { this.state.identityType = e }}>
 
-                                     {this.state.eduLvlOption}
 
-                                 </Select>
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem className="half-item"
 
-                             {...formItemLayout}
 
-                             label="领域" >
 
-                             {getFieldDecorator('field', {
 
-                                 initialValue: this.state.field
 
-                             })(
 
-                                 <Cascader placeholder="请选择一个领域" options={techFieldList} />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第一联系人" >
 
-                             {getFieldDecorator('firstContacts', {
 
-                                 initialValue: this.state.firstContacts
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第一联系人电话" >
 
-                             {getFieldDecorator('firstMobile', {
 
-                                 initialValue: this.state.firstMobile
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第二联系人" >
 
-                             {getFieldDecorator('secondContacts', {
 
-                                 initialValue: this.state.secondContacts
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第二联系人电话" >
 
-                             {getFieldDecorator('secondMobile', {
 
-                                 initialValue: this.state.secondMobile
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第三联系人" >
 
-                             {getFieldDecorator('thirdContacts', {
 
-                                 initialValue: this.state.thirdContacts
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="第三联系人电话" >
 
-                             {getFieldDecorator('thirdMobile', {
 
-                                 initialValue: this.state.thirdMobile
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                     </Tabs.TabPane>
 
-                     <Tabs.TabPane tab="认证信息" key="2">
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="法人" >
 
-                             {getFieldDecorator('legalPerson', {
 
-                                 initialValue: this.state.legalPerson
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="法人身份证号" >
 
-                             {getFieldDecorator('legalPersonIdCard', {
 
-                                 initialValue: this.state.legalPersonIdCard
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="注册资金" >
 
-                             {getFieldDecorator('registeredCapital', {
 
-                                 initialValue: this.state.registeredCapital
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="营业执照编号" >
 
-                             {getFieldDecorator('licenceNumber', {
 
-                                 initialValue: this.state.licenceNumber
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="营业执照所在地" >
 
-                             {getFieldDecorator('licenceAddress', {
 
-                                 initialValue: this.state.licenceAddress
 
-                             })(
 
-                                 <Cascader options={areaSelect()} placeholder="请选择地址" />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             labelCol={{ span: 6 }}
 
-                             wrapperCol={{ span: 18 }}
 
-                             label="营业执照图片"  >
 
-                             <div className="idcard-img clearfix">
 
-                                 {this.state.licenceScanningUrl ? <div>
 
-                                     <div className="idcard-imgbox">
 
-                                         <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
 
-                                             onClick={(e) => { window.open(e.target.src) }} />
 
-                                     </div>
 
-                                 </div> : <div>
 
-                                         <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
 
-                                     </div>}
 
-                                 <Upload
 
-                                     name="licence"
 
-                                     action={globalConfig.context + "/api/admin/userCertify/upload"}
 
-                                     data={{
 
-                                         'uid': this.props.uid,
 
-                                         'sign': 'licence'
 
-                                     }}
 
-                                     beforeUpload={beforeUploadFile}
 
-                                     showUploadList={false}
 
-                                     onChange={(info) => {
 
-                                         if (info.file.status !== 'uploading') {
 
-                                             console.log(info.file, info.fileList);
 
-                                         }
 
-                                         if (info.file.status === 'done') {
 
-                                             if (!info.file.response.error.length) {
 
-                                                 message.success(`${info.file.name} 文件上传成功!`);
 
-                                             } else {
 
-                                                 message.warning(info.file.response.error[0].message);
 
-                                                 return;
 
-                                             };
 
-                                             this.state.licenceScanningUrl = info.file.response.data;
 
-                                         } else if (info.file.status === 'error') {
 
-                                             message.error(`${info.file.name} 文件上传失败。`);
 
-                                         }
 
-                                     }} >
 
-                                     <Button><Icon type="upload" /> 上传营业执照 </Button>
 
-                                 </Upload>
 
-                             </div>
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="组织机构代码" >
 
-                             {getFieldDecorator('orgCode', {
 
-                                 initialValue: this.state.orgCode
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             labelCol={{ span: 6 }}
 
-                             wrapperCol={{ span: 18 }}
 
-                             label="组织机构代码证图片" >
 
-                             <div className="idcard-img clearfix">
 
-                                 {this.state.orgCodeUrl ? <div>
 
-                                     <div className="idcard-imgbox">
 
-                                         <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
 
-                                             onClick={(e) => { window.open(e.target.src) }} />
 
-                                     </div>
 
-                                 </div> : <div>
 
-                                         <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
 
-                                     </div>}
 
-                                 <Upload
 
-                                     name="orgCode"
 
-                                     action={globalConfig.context + "/api/admin/userCertify/upload"}
 
-                                     data={{ 'uid': this.props.uid, 'sign': 'orgcode' }}
 
-                                     beforeUpload={beforeUploadFile}
 
-                                     showUploadList={false}
 
-                                     onChange={(info) => {
 
-                                         if (info.file.status !== 'uploading') {
 
-                                             console.log(info.file, info.fileList);
 
-                                         }
 
-                                         if (info.file.status === 'done') {
 
-                                             if (!info.file.response.error.length) {
 
-                                                 message.success(`${info.file.name} 文件上传成功!`);
 
-                                             } else {
 
-                                                 message.warning(info.file.response.error[0].message);
 
-                                                 return;
 
-                                             };
 
-                                             this.state.orgCodeUrl = info.file.response.data;
 
-                                         } else if (info.file.status === 'error') {
 
-                                             message.error(`${info.file.name} 文件上传失败。`);
 
-                                         }
 
-                                     }} >
 
-                                     <Button><Icon type="upload" /> 上传组织机构代码证 </Button>
 
-                                 </Upload>
 
-                             </div>
 
-                         </FormItem>
 
-                         <FormItem
 
-                             labelCol={{ span: 6 }}
 
-                             wrapperCol={{ span: 18 }}
 
-                             label="上年度纳税报表" >
 
-                             <div className="idcard-img clearfix">
 
-                                 {this.state.lastYearTaxReportUrl ? <div>
 
-                                     <div className="idcard-imgbox">
 
-                                         <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
 
-                                             onClick={(e) => { window.open(e.target.src) }} />
 
-                                     </div>
 
-                                 </div> : <div>
 
-                                         <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
 
-                                     </div>}
 
-                                 <Upload
 
-                                     name="ratepay"
 
-                                     action={globalConfig.context + "/api/admin/userCertify/upload"}
 
-                                     data={{ 'uid': this.props.uid, 'sign': 'ratepay' }}
 
-                                     beforeUpload={beforeUploadFile}
 
-                                     showUploadList={false}
 
-                                     onChange={(info) => {
 
-                                         if (info.file.status !== 'uploading') {
 
-                                             console.log(info.file, info.fileList);
 
-                                         }
 
-                                         if (info.file.status === 'done') {
 
-                                             if (!info.file.response.error.length) {
 
-                                                 message.success(`${info.file.name} 文件上传成功!`);
 
-                                             } else {
 
-                                                 message.warning(info.file.response.error[0].message);
 
-                                                 return;
 
-                                             };
 
-                                             this.state.lastYearTaxReportUrl = info.file.response.data;
 
-                                         } else if (info.file.status === 'error') {
 
-                                             message.error(`${info.file.name} 文件上传失败。`);
 
-                                         }
 
-                                     }} >
 
-                                     <Button><Icon type="upload" /> 上传上年度纳税表 </Button>
 
-                                 </Upload>
 
-                             </div>
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="开户银行" >
 
-                             {getFieldDecorator('banks', {
 
-                                 initialValue: this.state.banks
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="开户银行支行" >
 
-                             {getFieldDecorator('bankBranch', {
 
-                                 initialValue: this.state.bankBranch
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="银行卡号" >
 
-                             {getFieldDecorator('bankCardNumber', {
 
-                                 initialValue: this.state.bankCardNumber
 
-                             })(
 
-                                 <Input />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="开户行所在地"  >
 
-                             {getFieldDecorator('locationAddress', {
 
-                                 initialValue: this.state.locationAddress
 
-                             })(
 
-                                 <Cascader options={areaSelect()} placeholder="请选择地址" />
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="用户等级" >
 
-                             {getFieldDecorator('level', {
 
-                                 initialValue: this.state.level
 
-                             })(
 
-                                 <Select placeholder="选择要修改的用户等级" style={{ width: 200 }} >
 
-                                     <Select.Option value="0" >Lv.0</Select.Option>
 
-                                     <Select.Option value="1" >Lv.1</Select.Option>
 
-                                     <Select.Option value="2" >Lv.2</Select.Option>
 
-                                     <Select.Option value="3" >Lv.3</Select.Option>
 
-                                     <Select.Option value="4" >Lv.4</Select.Option>
 
-                                     <Select.Option value="5" >Lv.5</Select.Option>
 
-                                 </Select>
 
-                                 )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="认证状态" >
 
-                             {getFieldDecorator('auditStatus')(
 
-                                 <span>{getAuditState(this.state.auditStatus)}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="业务员" >
 
-                             {getFieldDecorator('aid')(
 
-                                 <span>{this.props.data.adminName}</span>
 
-                             )}
 
-                         </FormItem>
 
-                         <FormItem
 
-                             {...formItemLayout}
 
-                             label="客户经理" >
 
-                             {getFieldDecorator('mid')(
 
-                                 <span>{this.props.data.managerName}</span>
 
-                             )}
 
-                         </FormItem>
 
-                     </Tabs.TabPane>
 
-                 </Tabs>
 
-                 <FormItem wrapperCol={{ span: 12, offset: 4 }}>
 
-                     <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
 
-                     <Button className="set-submit" type="ghost"
 
-                         onClick={() => {
 
-                             this.state.saveSign = "submit";
 
-                             this.handleSubmit();
 
-                         }}>提交审核</Button>
 
-                 </FormItem>
 
-             </Form >
 
-         );
 
-     }
 
- }));
 
- const OrgDesc = React.createClass({
 
-     getInitialState() {
 
-         return {
 
-             visible: false,
 
-             loading: false
 
-         };
 
-     },
 
-     showModal() {
 
-         this.setState({
 
-             visible: true,
 
-         });
 
-     },
 
-     handleCancel(e) {
 
-         this.setState({
 
-             visible: false,
 
-         });
 
-         this.props.closeDesc(false);
 
-     },
 
-     handleOk(e) {
 
-         this.setState({
 
-             visible: false,
 
-         });
 
-         this.props.closeDesc(false, true);
 
-     },
 
-     componentWillReceiveProps(nextProps) {
 
-         this.state.visible = nextProps.showDesc;
 
-     },
 
-     render() {
 
-         if (this.props.data) {
 
-             return (
 
-                 <div className="patent-desc">
 
-                     <Spin spinning={this.state.loading} className='spin-box'>
 
-                         <Modal maskClosable={false} title="用户详情" visible={this.state.visible}
 
-                             onCancel={this.handleCancel}
 
-                             width='600px'
 
-                             footer=''
 
-                             className="admin-desc-content">
 
-                             {window.showAuditStatus ? <OrgShow
 
-                                 uid={this.props.data.id}
 
-                                 data={this.props.data}
 
-                                 closeDesc={this.handleCancel}
 
-                                 visible={this.state.visible}
 
-                                 handleOk={this.handleOk} />
 
-                                 : <OrgCertify
 
-                                     uid={this.props.data.id}
 
-                                     data={this.props.data}
 
-                                     closeDesc={this.handleCancel}
 
-                                     visible={this.state.visible}
 
-                                     handleOk={this.handleOk} />}
 
-                         </Modal>
 
-                     </Spin>
 
-                 </div>
 
-             );
 
-         } else {
 
-             return <div></div>
 
-         }
 
-     },
 
- });
 
- export default OrgDesc;
 
- // <FormItem
 
- //     {...formItemLayout}
 
- //     label="打款金额"
 
- // >
 
- //     {getFieldDecorator('validationAmount', {
 
- //         initialValue: this.state.validationAmount
 
- //     })(
 
- //         <Input />
 
- //         )}
 
- // </FormItem>
 
- //     <FormItem
 
- //         {...formItemLayout}
 
- //         label="打款日期"
 
- //     >
 
- //         {getFieldDecorator('paymentDateFormattedDate', {
 
- //             initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null
 
- //         })(
 
- //             <DatePicker />
 
- //             )}
 
- //     </FormItem>
 
 
  |