liting2017 6 years ago
parent
commit
e0862e25ff

+ 12 - 0
README.md

@@ -0,0 +1,12 @@
+<!-- 项目生产环境打包 -->
+    请注释index.html中定义的全局变量 
+    更改版本号
+    npm run dllpro
+    npm run pro
+
+<!-- 本地开发 -->
+    请释放index.html中定义的全局变量 
+    运行 
+        npm run build
+        npm run dev
+        loaclhost:8080

+ 487 - 0
js/component/account/set/newAccount/account.jsx

@@ -0,0 +1,487 @@
+/* 
+	@author:李霆
+	@update:2018/05/29
+	@descript:复制粘贴,拿起来就是干!!
+*/
+
+import React from 'react';
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+import { Row, Col, Form, Button, Spin, message, Modal, Input } from 'antd';
+import './account.less';
+const FormItem = Form.Item;
+
+class Account extends React.Component {
+	constructor(props) {
+		super(props);
+		this.state = {
+			loading: false,
+			visible: false,
+			editState: false,
+			name: 'liting',
+			followTime: '2010/09/18',
+			contactMobile: '18320747565'
+		};
+	}
+	loadData() {
+		this.setState({
+			loading: true
+		});
+		$.ajax({
+			method: 'post',
+			dataType: 'json',
+			crossDomain: false,
+			url: globalConfig.context + '/api/admin/customer/shuju',
+			data: {},
+			success: function(data) {
+				if (data.error.length || data.data == '') {
+					if (data.error && data.error.length) {
+						message.warning(data.error[0].message);
+					}
+				} else {
+					this.setState({
+						id: data.data.id,
+						name: data.data.name,
+						photo: data.data.photo,
+						email: data.data.email,
+						nickname: data.data.nickname,
+						accountData: data.data
+					});
+				}
+			}.bind(this)
+		}).always(
+			function() {
+				this.setState({
+					loading: false
+				});
+			}.bind(this)
+		);
+	}
+	//修改密码
+	passFun() {
+		this.setState({
+			visible: true,
+			password: '',
+			repeatPass: ''
+		});
+	}
+	//企业认证
+	companyFun() {}
+	//个人认证
+	personFun() {}
+	//修改密码
+	passSubmit() {
+		if (!this.state.name) {
+			message.warning('请填写昵称!');
+			return;
+		}
+		if (!this.state.password) {
+			message.warning('请填写新密码!');
+			return;
+		}
+		if (this.state.password !== this.state.repeatPass) {
+			message.warning('两次输入的密码不一致!');
+		}
+		this.setState({
+			loading: true
+		});
+		$.ajax({
+			method: 'POST',
+			dataType: 'json',
+			crossDomain: false,
+			url: globalConfig.context + '/api/user/mobile',
+			data: {
+				mobile: this.state.mobile,
+				mobileCode: this.state.mcode,
+				password: this.state.password,
+				name: this.state.name
+			}
+		}).done(
+			function(data) {
+				if (!data.error.length) {
+					this.setState({
+						visible: false
+					});
+					message.success('修改成功!');
+					this.loadData();
+				} else {
+					message.warning(data.error[0].message);
+				}
+			}.bind(this)
+		);
+	}
+	handleOk() {
+		this.passSubmit();
+	}
+	handleCancel() {
+		this.setState({
+			visible: false
+		});
+	}
+	//单个修改
+	btnFun(item) {
+		switch (item) {
+			case 1:
+				this.setState({ editName: true });
+				break;
+			case 2:
+				this.setState({ editPhoto: true });
+				break;
+			case 3:
+				this.setState({ editEmail: true });
+				break;
+			case 4:
+				this.setState({ editNickname: true });
+				break;
+        }
+        this.enterFun(item);
+	}
+	//保存单个修改
+	saveFun(item) {
+		$.ajax({
+			method: 'POST',
+			dataType: 'json',
+			crossDomain: false,
+			url: globalConfig.context + '/api/user/mobile',
+			data: {
+				id: this.state.id,
+				name: this.state.name,
+				photo: this.state.photo,
+				email: this.state.email,
+				nickname: this.state.nickname
+			}
+		}).done(
+			function(data) {
+				if (!data.error.length) {
+					this.setState({
+						visible: false
+					});
+					message.success('修改成功!');
+					switch (item) {
+						case 1:
+							this.setState({ editName: false });
+							break;
+						case 2:
+							this.setState({ editPhoto: false });
+							break;
+						case 3:
+							this.setState({ editEmail: false });
+							break;
+						case 4:
+							this.setState({ editNickname: false });
+							break;
+					}
+					this.loadData();
+				} else {
+					message.warning(data.error[0].message);
+				}
+			}.bind(this)
+		);
+    }
+    //按下键盘回车键时保存
+	enterFun(item) {
+        if(item){
+            document.onkeydown=function(e){    //对整个页面文档监听回车键 
+                var keyNum=window.event ? e.keyCode :e.which;
+                if(keyNum==13){
+                   this.saveFun(item);
+                }
+            }.bind(this)
+        }
+	}
+	render() {
+		const formItemLayout = {
+			labelCol: { span: 8 },
+			wrapperCol: { span: 10 }
+		};
+		const formItemLayoutBtn = {
+			labelCol: { span: 8 },
+			wrapperCol: { span: 6 }
+		};
+		const accountData = this.state.account || [];
+		return (
+			<div className="account-wrap">
+				<div className="clearfix">
+					<Spin spinning={this.state.loading}>
+						<Row>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="注册账号">
+									<span>{accountData.account}</span>
+									<Button
+										size="default"
+										onClick={this.passFun.bind(this)}
+										type="primary"
+										className="Authentication"
+									>
+										修改密码
+									</Button>
+								</FormItem>
+							</Col>
+						</Row>
+						<Row>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="注册名称">
+									{this.state.editName ? (
+										<Input
+											value={this.state.name}
+											onBlur={(e) => {
+												this.saveFun(1);
+											}}
+											placeholder="请填写注册名称"
+											onChange={(e) => {
+												this.setState({ name: e.target.value });
+											}}
+										/>
+									) : (
+										<span>{this.state.name}</span>
+									)}
+									{this.state.editName ? (
+										''
+									) : (
+										<Button
+											className="Authentication"
+											onClick={(e) => {
+												this.btnFun(1);
+											}}
+											icon="edit"
+										/>
+									)}
+								</FormItem>
+							</Col>
+						</Row>
+						<Row>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="注册手机号">
+									{this.state.editPhoto ? (
+										<Input
+											value={this.state.photo}
+											onBlur={(e) => {
+												this.saveFun(2);
+											}}
+											placeholder="请填写注册手机号码"
+											onChange={(e) => {
+												this.setState({ photo: e.target.value });
+											}}
+										/>
+									) : (
+										<span>{this.state.photo}</span>
+									)}
+									{this.state.editPhoto ? (
+										''
+									) : (
+										<Button
+											className="Authentication"
+											onClick={(e) => {
+												this.btnFun(2);
+											}}
+											icon="edit"
+										/>
+									)}
+								</FormItem>
+							</Col>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="注册邮箱">
+									{this.state.editEmail ? (
+										<Input
+											value={this.state.email}
+											onBlur={(e) => {
+												this.saveFun(3);
+											}}
+											placeholder="请填写注册邮箱"
+											onChange={(e) => {
+												this.setState({ email: e.target.value });
+											}}
+										/>
+									) : (
+										<span>{this.state.email}</span>
+									)}
+									{this.state.editEmail ? (
+										''
+									) : (
+										<Button
+											className="Authentication"
+											onClick={(e) => {
+												this.btnFun(3);
+											}}
+											icon="edit"
+										/>
+									)}
+								</FormItem>
+							</Col>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="账号昵称">
+									{this.state.editNickname ? (
+										<Input
+											value={this.state.nickname}
+											onBlur={(e) => {
+												this.saveFun(4);
+											}}
+											placeholder="请填写账号昵称"
+											onChange={(e) => {
+												this.setState({ nickname: e.target.value });
+											}}
+										/>
+									) : (
+										<span>{this.state.nickname}</span>
+									)}
+									{this.state.editNickname ? (
+										''
+									) : (
+										<Button
+											className="Authentication"
+											onClick={(e) => {
+												this.btnFun(4);
+											}}
+											icon="edit"
+										/>
+									)}
+								</FormItem>
+							</Col>
+						</Row>
+						<Row>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="账号类型">
+									<span>{this.state.contacts}</span>
+								</FormItem>
+							</Col>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="账号状态">
+									<span>{this.state.contacts}</span>
+								</FormItem>
+							</Col>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="注册时间">
+									<span>{this.state.contacts}</span>
+								</FormItem>
+							</Col>
+						</Row>
+						<Row>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="企业实名认证">
+									<span>{accountData.account}</span>
+									<Button
+										size="default"
+										onClick={this.companyFun.bind(this)}
+										type="primary"
+										className="Authentication"
+									>
+										立即企业认证
+									</Button>
+								</FormItem>
+							</Col>
+							<Col span={16}>
+								<span className="danger">实行企业实名认证后,您将享受到技淘网提供的全方位的科技咨询服务</span>
+							</Col>
+						</Row>
+						<Row>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="个人实名认证">
+									<span>{accountData.account}</span>
+									<Button
+										size="default"
+										onClick={this.companyFun.bind(this)}
+										type="primary"
+										className="Authentication"
+									>
+										立即个人认证
+									</Button>
+								</FormItem>
+							</Col>
+							<Col span={16}>
+								<span className="danger">实行个人实名认证后,您将享受技淘网提供的全方位的知识产权运营服务</span>
+							</Col>
+						</Row>
+						<Row>
+							<Col span={8}>
+								<FormItem className="half-mid" {...formItemLayout} label="科技专家认证">
+									<span>{accountData.account}</span>
+									<Button
+										size="default"
+										onClick={this.companyFun.bind(this)}
+										type="primary"
+										className="Authentication"
+									>
+										立即申请专家
+									</Button>
+								</FormItem>
+							</Col>
+							<Col span={16}>
+								<span className="danger">实行科技专家认证后,您将成为技淘网的科技服务专家,为其他用户提供科技咨询服务</span>
+							</Col>
+						</Row>
+					</Spin>
+				</div>
+				<Modal
+					title="修改密码"
+					width="600px"
+					visible={this.state.visible}
+					onOk={this.handleOk.bind(this)}
+					onCancel={this.handleCancel.bind(this)}
+				>
+					<div>
+						<Form layout="horizontal" id="demand-form" onSubmit={this.passSubmit}>
+							<Spin spinning={this.state.loading}>
+								<div className="clearfix">
+									<FormItem
+										labelCol={{ span: 8 }}
+										wrapperCol={{ span: 8 }}
+										className="half-mid"
+										label="注册账号"
+									>
+										<span>{this.state.followTime}</span>
+									</FormItem>
+									<FormItem
+										labelCol={{ span: 8 }}
+										wrapperCol={{ span: 8 }}
+										className="half-mid"
+										label="注册名称"
+									>
+										<Input
+											value={this.state.name}
+											type="text"
+											onChange={(e) => {
+												this.setState({ name: e.target.value });
+											}}
+										/>
+									</FormItem>
+									<FormItem
+										labelCol={{ span: 8 }}
+										wrapperCol={{ span: 8 }}
+										className="half-mid"
+										label="新密码"
+									>
+										<Input
+											value={this.state.password}
+											type="password"
+											placeholder="请输入新密码"
+											onChange={(e) => {
+												this.setState({ password: e.target.value });
+											}}
+										/>
+									</FormItem>
+									<FormItem
+										labelCol={{ span: 8 }}
+										wrapperCol={{ span: 8 }}
+										className="half-mid"
+										label="新密码确认"
+									>
+										<Input
+											value={this.state.repeatPass}
+											type="password"
+											placeholder="请再次输入新密码"
+											onChange={(e) => {
+												this.setState({ repeatPass: e.target.value });
+											}}
+										/>
+									</FormItem>
+								</div>
+							</Spin>
+						</Form>
+					</div>
+				</Modal>
+			</div>
+		);
+	}
+}
+
+export default Account;

+ 18 - 0
js/component/account/set/newAccount/account.less

@@ -0,0 +1,18 @@
+.account-wrap{
+    padding:30px 20px 150px;
+    background: #ffffff;
+    .half-mid{
+        margin-bottom: 4px!important;
+    }
+    .danger{
+        color:#ff4d4f;
+        margin-left: 10px;
+        font-size: 14px
+    }
+    .Authentication{
+        float: right;
+    }
+}
+.ant-modal-body  .half-mid{
+    margin-bottom: 4px!important;
+}

+ 39 - 0
js/component/account/set/newAccount/contacts.jsx

@@ -0,0 +1,39 @@
+/* 
+	@author:李霆
+	@update:2018/05/29
+	@descript:复制粘贴,拿起来就是干!!
+*/
+
+import React from 'react';
+import './contacts.less';
+import{ Row ,Col} from 'antd';
+
+class Contancts extends React.Component{
+    constructor(props){
+        super(props);
+        this.state={
+            loading:false
+        }
+    }
+    render(){
+        return (
+            <div className="contact-wrap">
+                <Row>
+                    <Col span={4} offset={1}>
+                        <h4>联系人</h4>
+                    </Col> 
+                   <Col span={6} offset={8}>
+                        <Button>添加常用联系人</Button>
+                   </Col>
+                </Row>
+                <Row>
+                    <Card>
+                        
+                    </Card>
+                </Row>
+            </div>
+        )
+    }
+}
+
+export default Contancts;

+ 4 - 0
js/component/account/set/newAccount/contacts.less

@@ -0,0 +1,4 @@
+.contact-wrap{
+    padding:10px;
+    background-color:#ffffff; 
+}

+ 611 - 0
js/component/account/set/newAccount/personal.jsx

@@ -0,0 +1,611 @@
+/* 
+	@author:李霆
+	@update:2018/05/29
+	@descript:复制粘贴,拿起来就是干!!
+*/
+
+import React from 'react';
+import {
+	Radio,
+	Icon,
+	Button,
+	AutoComplete,
+	Cascader,
+	layout,
+	Input,
+	Select,
+	Tabs,
+	Spin,
+	Popconfirm,
+	Popover,
+	Table,
+	Switch,
+	message,
+	DatePicker,
+	Modal,
+	Upload,
+	Form,
+	Row,
+	Col,
+	TimePicker
+} from 'antd';
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+import moment from 'moment';
+import './unit.less';
+import { citySelect, provinceList, areaSelect } from '@/NewDicProvinceList';
+import {
+	socialAttribute,
+	industry,
+	newFollow,
+	auditStatusL,
+	lvl,
+	currentMember,
+	cityArr,
+	statuslist,
+	customerStatus,
+	intentionalService,
+	sex
+} from '@/dataDic.js';
+import {
+	getCompanyIntention,
+	splitUrl,
+	getIndustry,
+	getStatuslist,
+	getAuditStatus,
+	getContactType,
+	getSocialAttribute,
+	getfllowSituation,
+	beforeUploadFile,
+	getWhether,
+	getcityArr,
+	getcustomerStatue,
+	getfllowSituationOn,
+	getCertification,
+	getcustomerTyp,
+	getLvl,
+	getCurrentMember,
+	getprovince
+} from '@/tools.js';
+const FormItem = Form.Item;
+const monthFormat = 'YYYY/MM';
+//图片组件
+const PicturesWall = React.createClass({
+	getInitialState() {
+		return {
+			previewVisible: false,
+			previewImage: '',
+			fileList: []
+		};
+	},
+	handleCancel() {
+		this.setState({
+			previewVisible: false
+		});
+	},
+	handlePreview(file) {
+		this.setState({
+			previewImage: file.url || file.thumbUrl,
+			previewVisible: true
+		});
+	},
+	handleChange(info) {
+		let fileList = info.fileList;
+		this.setState({
+			fileList
+		});
+		this.props.fileList(fileList);
+	},
+	componentWillReceiveProps(nextProps) {
+		this.state.fileList = nextProps.pictureUrl;
+	},
+	render() {
+		const { previewVisible, previewImage, fileList } = this.state;
+		const uploadButton = (
+			<div>
+				<Icon type="plus" />
+				<div className="ant-upload-text">点击上传</div>
+			</div>
+		);
+		return (
+			<div style={{ display: 'inline-block' }}>
+				<Upload
+					action={globalConfig.context + '/api/admin/customer/uploadCustomerImg'}
+					data={{ sign: '' }}
+					listType="picture-card"
+					fileList={fileList}
+					onPreview={this.handlePreview}
+					onChange={this.handleChange}
+				>
+					{fileList.length >= 1 ? null : uploadButton}
+				</Upload>
+				<Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
+					<img alt="example" style={{ width: '100%' }} src={previewImage} />
+				</Modal>
+			</div>
+		);
+	}
+});
+
+const Personal = React.createClass({
+	getInitialState() {
+		return {
+			loading: false,
+			orgCodeUrl: [],
+			companyLogoUrl: [],
+			headPortraitUrl: [],
+			positiveIdUrl: [],
+			oppositeIdUrl: []
+		};
+	},
+	loadInformation(record) {
+		this.setState({
+			loading: true
+		});
+		$.ajax({
+			method: 'get',
+			dataType: 'json',
+			crossDomain: false,
+			url: globalConfig.context + '/api/admin/customer/findPersonalCustomerDetail',
+			data: {
+				uid: record
+			},
+			success: function(data) {
+				let thisData = data.data;
+				if (!thisData) {
+					if (data.error && data.error.length) {
+						message.warning(data.error[0].message);
+					}
+					thisData = {};
+				}
+				let ProvinceCityArr = [];
+				let ProvinceS = thisData.province; //getprovince
+				let citys = thisData.city;
+				let Areas = thisData.area;
+				ProvinceCityArr.push(ProvinceS, citys, Areas);
+				let month = thisData.dateOfBirthYear
+					? thisData.dateOfBirthYear + '/' + thisData.dateOfBirthMonth
+					: undefined;
+				this.setState({
+					InformationId: thisData.id,
+					InformationUid: thisData.uid,
+					identifyName: thisData.identifyName,
+					listed: thisData.listed,
+					highTechZone: thisData.highTechZone,
+					headPortraitUrl: thisData.headPortraitUrl
+						? splitUrl(thisData.headPortraitUrl, ',', globalConfig.avatarHost + '/upload')
+						: [],
+					positiveIdUrl: thisData.positiveIdUrl
+						? splitUrl(thisData.positiveIdUrl, ',', globalConfig.avatarHost + '/upload')
+						: [],
+					oppositeIdUrl: thisData.oppositeIdUrl
+						? splitUrl(thisData.oppositeIdUrl, ',', globalConfig.avatarHost + '/upload')
+						: [],
+					dataInformation: thisData,
+					idNumber: thisData.idNumber,
+					contacts: thisData.contacts,
+					contactMobile: thisData.contactMobile,
+					ProvinceCity: ProvinceCityArr[0] != null ? ProvinceCityArr : undefined,
+					industry: thisData.industry ? String(thisData.industry) : undefined,
+					societyTag: thisData.societyTag || undefined,
+					sex: thisData.sex,
+					yearMonth: month,
+					postalAddress: thisData.postalAddress,
+					fixedTel: thisData.fixedTel,
+					consultationPrice: thisData.consultationPrice,
+					email: thisData.email,
+					qq: thisData.qq,
+					introduction: thisData.introduction,
+					expert: thisData.expert,
+					celebrity: thisData.celebrity,
+					consultant: thisData.consultant,
+					international: thisData.international,
+					investment: thisData.investment,
+					professionalTitle: thisData.professionalTitle,
+					workUnit: thisData.workUnit,
+					education: thisData.education,
+					graduateSchool: thisData.graduateSchool,
+					majorCategory: thisData.majorCategory,
+					qualification: thisData.qualification,
+					businessAudit: thisData.businessAudit,
+					auditStatus: thisData.auditStatus ? String(thisData.auditStatus) : undefined
+				});
+			}.bind(this)
+		}).always(
+			function() {
+				this.setState({
+					loading: false
+				});
+			}.bind(this)
+		);
+	},
+	//图片
+	getOrgCodeUrl(e) {
+		this.setState({
+			orgCodeUrl: e
+		});
+	},
+	getCompanyLogoUrl(e) {
+		this.setState({
+			companyLogoUrl: e
+		});
+	},
+	//基本信息提交
+	newSubmit(e) {
+        e.preventDefault();
+        if(!this.state.identifyName){
+            message.warning("请填写姓名!")
+            return;
+        }
+		if (!this.state.industry) {
+			message.warning('请选择行业!');
+			return false;
+		}
+		if (!this.state.societyTag) {
+			message.warning('请选择社会性质!');
+			return false;
+		}
+		if (!this.state.ProvinceCity[1]) {
+			message.warning('请选择地区!');
+			return false;
+        }
+        let exPhoto = /^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(18[0,5-9]))\\d{8}$/;
+        if(this.state.photo){
+            if(!exPhoto.test(this.state.photo)){
+                message.warning('请填写正确的手机号码!')
+                return;
+            }
+        }else{
+            message.warning("请填写手机号码!")
+            return;
+        }
+		
+
+		this.state.data = [];
+		this.setState({
+			selectedRowKeys: []
+		});
+
+		let theorgCodeUrl = [];
+		if (this.state.headPortraitUrl.length) {
+			let picArr = [];
+			this.state.headPortraitUrl.map(function(item) {
+				if (item.response && item.response.data && item.response.data.length) {
+					picArr.push(item.response.data);
+				}
+			});
+			theorgCodeUrl = picArr.join(',');
+		}
+		let thecompanyLogoUrl = [];
+		if (this.state.positiveIdUrl.length) {
+			let picArr = [];
+			this.state.positiveIdUrl.map(function(item) {
+				if (item.response && item.response.data && item.response.data.length) {
+					picArr.push(item.response.data);
+				}
+			});
+			thecompanyLogoUrl = picArr.join(',');
+		}
+		let thecompanyLogoUrls = [];
+		if (this.state.oppositeIdUrl.length) {
+			let picArr = [];
+			this.state.oppositeIdUrl.map(function(item) {
+				if (item.response && item.response.data && item.response.data.length) {
+					picArr.push(item.response.data);
+				}
+			});
+			thecompanyLogoUrls = picArr.join(',');
+		}
+
+		let years = [];
+		let yearMonth = this.state.yearMonth != undefined ? new Date(this.state.yearMonth).toLocaleDateString() : '';
+		years = yearMonth.split('/');
+		this.setState({
+			loading: true
+		});
+		$.ajax({
+			method: 'post',
+			dataType: 'json',
+			url: globalConfig.context + '/api/admin/customer/updatePersonalCustomer',
+			data: {
+				id: this.state.InformationId,
+				uid: this.state.InformationUid,
+				societyTag: this.state.societyTag,
+				identifyName: this.state.identifyName,
+				industry: this.state.industry,
+				dateOfBirthYear: years[0], //出生年
+				dateOfBirthMonth: years[1], //出生月
+				province: this.state.ProvinceCity[0], //省-
+				city: this.state.ProvinceCity[1], //市
+				area: this.state.ProvinceCity[2], //区
+				sex: this.state.sex,
+				expert: this.state.expert,
+				celebrity: this.state.celebrity,
+				consultant: this.state.consultant,
+				international: this.state.international,
+				fixedTel: this.state.fixedTel,
+				consultationPrice: this.state.consultationPrice ? this.state.consultationPrice : '',
+				qq: this.state.qq,
+				contacts: this.state.contacts,
+				contactMobile: this.state.contactMobile,
+				idNumber: this.state.idNumber,
+				email: this.state.email,
+				isMember: this.state.isMember,
+				postalAddress: this.state.postalAddress,
+				introduction: this.state.introduction,
+				positiveIdUrl: thecompanyLogoUrl.length != 0 ? thecompanyLogoUrl : '',
+				oppositeIdUrl: thecompanyLogoUrls.length != 0 ? thecompanyLogoUrls : '',
+				headPortraitUrl: theorgCodeUrl.length != 0 ? theorgCodeUrl : '',
+				investment: this.state.investment,
+				professionalTitle: this.state.professionalTitle,
+				workUnit: this.state.workUnit,
+				education: this.state.education,
+				graduateSchool: this.state.graduateSchool,
+				majorCategory: this.state.majorCategory,
+				qualification: this.state.qualification,
+				businessAudit: this.state.businessAudit,
+				auditStatus: this.state.auditStatus
+			}
+		}).done(
+			function(data) {
+				this.setState({
+					loading: false
+				});
+				if (!data.error.length) {
+					message.success('保存成功!');
+					this.loadInformation();
+				} else {
+					message.warning(data.error[0].message);
+				}
+			}.bind(this)
+		);
+	},
+	getHeadPortraitUrl(e) {
+		this.setState({ headPortraitUrl: e });
+	},
+	getPositiveIdUrl(e) {
+		this.setState({ positiveIdUrl: e });
+	},
+	getOppositeIdUrl(e) {
+		this.setState({ oppositeIdUrl: e });
+	},
+	componentWillMount() {
+		this.loadInformation();
+	},
+	componentWillReceiveProps(nextProps) {},
+	render() {
+		const { RangePicker, MonthPicker } = DatePicker;
+		const formItemLayout = {
+			labelCol: {
+				span: 6
+			},
+			wrapperCol: {
+				span: 14
+			}
+		};
+		return (
+			<div className="unit-wrap">
+				<Form layout="horizontal" onSubmit={this.newSubmit} id="demand-form">
+					<Spin spinning={this.state.loading}>
+						<Row style={{ marginBottom: 20 }}>
+							<Col offset={2} span={4}>
+								<h4>个人资料</h4>
+							</Col>
+						</Row>
+						<div className="clearfix">
+							<FormItem className="half-item" {...formItemLayout} label="姓名">
+								<Input
+									style={{ width: '90%' }}
+									placeholder="输入姓名"
+									value={this.state.identifyName}
+									onChange={(e) => {
+										this.setState({ identifyName: e.target.value });
+									}}
+								/>
+								<span className="color-red"> * </span>
+							</FormItem>
+							<FormItem className="half-item" {...formItemLayout} label="性别">
+								<Radio.Group
+									value={this.state.sex}
+									onChange={(e) => {
+										this.setState({ sex: e.target.value });
+									}}
+								>
+									<Radio value={'男'}>男</Radio>
+									<Radio value={'女'}>女</Radio>
+								</Radio.Group>
+							</FormItem>
+							<FormItem className="half-item" {...formItemLayout} label="行业">
+								<Select
+									placeholder="选择行业"
+									value={this.state.industry}
+									style={{ width: '90%' }}
+									onChange={(e) => {
+										this.setState({ industry: e });
+									}}
+								>
+									{industry.map(function(item) {
+										return <Select.Option key={item.value}>{item.key}</Select.Option>;
+									})}
+								</Select>
+								<span className="color-red"> * </span>
+							</FormItem>
+							<FormItem className="half-item" {...formItemLayout} label="社会属性">
+								<Select
+									placeholder="客户社会属性"
+									value={this.state.societyTag}
+									style={{ width: '90%' }}
+									onChange={(e) => {
+										this.setState({ societyTag: e });
+									}}
+								>
+									{socialAttribute.map(function(item) {
+										return <Select.Option key={item.value}>{item.key}</Select.Option>;
+									})}
+								</Select>
+								<span className="color-red"> * </span>
+							</FormItem>
+							<FormItem className="half-item" {...formItemLayout} label="出生日期">
+								{!this.state.yearMonth ? (
+									<MonthPicker
+										placeholder="选择出生年月"
+										value={this.state.yearMonth}
+										onChange={(time) => {
+											this.setState({ yearMonth: time });
+										}}
+									/>
+								) : (
+									<MonthPicker
+										value={moment(this.state.yearMonth, monthFormat)}
+										format={monthFormat}
+										onChange={(time) => {
+											this.setState({ yearMonth: time });
+										}}
+									/>
+								)}
+							</FormItem>
+							<FormItem className="half-item" {...formItemLayout} label="身份证号码">
+								<Input
+									placeholder="身份证号码"
+									value={this.state.idNumber}
+									onChange={(e) => {
+										this.setState({ idNumber: e.target.value });
+									}}
+								/>
+							</FormItem>
+                        </div>
+                       
+                        <div className="clearfix">
+                            <FormItem className="half-item" {...formItemLayout} label="省-市-区">
+                                <Cascader
+                                    options={areaSelect()}
+                                    value={this.state.ProvinceCity}
+                                    placeholder="选择城市"
+                                    style={{ width: '90%' }}
+                                    onChange={(e, pre) => {
+                                        this.setState({ ProvinceCity: e });
+                                    }}
+                                />
+                                <span className="color-red"> * </span>
+                            </FormItem>
+                            <FormItem className="half-item" {...formItemLayout} label="通信地址">
+                                <Input
+                                    placeholder="客户通信地址"
+                                    value={this.state.postalAddress}
+                                    onChange={(e, pre) => {
+                                        this.setState({ postalAddress: e.target.value });
+                                    }}
+                                />
+                            </FormItem>
+                            <FormItem className="half-item" {...formItemLayout} label="手机号码">
+                                <Input
+                                    style={{width:'90%'}}
+                                    placeholder="手机号码"
+                                    value={this.state.photo}
+                                    onChange={(e) => {
+                                        this.setState({ photo: e.target.value });
+                                    }}
+                                />
+                                <span className="color-red"> * </span>
+                            </FormItem>
+                            <FormItem className="half-item" {...formItemLayout} label="就业单位">
+                                <Input
+                                    placeholder="传真"
+                                    value={this.state.Fax}
+                                    onChange={(e) => {
+                                        this.setState({ Fax: e.target.value });
+                                    }}
+                                />
+                            </FormItem>
+                            <FormItem className="half-item" {...formItemLayout} label="固定电话">
+                                <Input
+                                    placeholder="客户固定电话"
+                                    value={this.state.fixedTel}
+                                    onChange={(e) => {
+                                        this.setState({ fixedTel: e.target.value });
+                                    }}
+                                />
+                            </FormItem>
+                            <FormItem className="half-item" {...formItemLayout} label="QQ">
+                                <Input
+                                    placeholder="QQ"
+                                    value={this.state.qq}
+                                    onChange={(e) => {
+                                        this.setState({ qq: e.target.value });
+                                    }}
+                                />
+                            </FormItem>
+                            <FormItem className="half-item" {...formItemLayout} label="电子邮箱">
+                                <Input
+                                    placeholder="客户电子邮箱"
+                                    value={this.state.email}
+                                    onChange={(e) => {
+                                        this.setState({ email: e.target.value });
+                                    }}
+                                />
+                            </FormItem>
+                        </div>
+                        <div className="clearfix">
+                            <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="专家简介">
+                                <Input
+                                    type="textarea"
+                                    rows={4}
+                                    value={this.state.introduction}
+                                    onChange={(e, pre) => {
+                                        this.setState({ introduction: e.target.value });
+                                    }}
+                                />
+                            </FormItem>
+                        </div>
+                        <div className="clearfix pictures">
+                            <FormItem
+                                className="picWidth"
+                                labelCol={{ span: 10 }}
+                                wrapperCol={{ span: 10 }}
+                                label="身份证正面"
+                            >
+                                <PicturesWall
+                                    fileList={this.getPositiveIdUrl}
+                                    pictureUrl={this.state.positiveIdUrl}
+                                />
+                                <p>建议:图片要清晰。</p>
+                            </FormItem>
+                            <FormItem
+                                className="picWidth"
+                                labelCol={{ span: 10 }}
+                                wrapperCol={{ span: 10 }}
+                                label="身份证反面"
+                            >
+                                <PicturesWall
+                                    fileList={this.getOppositeIdUrl}
+                                    pictureUrl={this.state.oppositeIdUrl}
+                                />
+                                <p>建议:图片要清晰。</p>
+                            </FormItem>
+                            <FormItem
+                                className="picWidth"
+                                labelCol={{ span: 10 }}
+                                wrapperCol={{ span: 10 }}
+                                label="客户照片"
+                            >
+                                <PicturesWall
+                                    fileList={this.getHeadPortraitUrl}
+                                    pictureUrl={this.state.headPortraitUrl}
+                                />
+                                <p>建议:图片要清晰。</p>
+                            </FormItem>
+                        </div>
+                        <Row style={{ marginBottom: 20 }}>
+                            <Col offset={3} span={4}>
+                                <Button size="large" className="set-submit" type="primary" htmlType="submit">
+                                    保存
+                                </Button>
+                            </Col>
+                        </Row>
+					</Spin>
+				</Form>
+			</div>
+		);
+	}
+});
+export default Personal;

+ 655 - 0
js/component/account/set/newAccount/unit.jsx

@@ -0,0 +1,655 @@
+/* 
+	@author:李霆
+	@update:2018/05/29
+	@descript:复制粘贴,拿起来就是干!!
+*/
+
+import React from 'react';
+import {
+	Radio,
+	Icon,
+	Button,
+	AutoComplete,
+	Cascader,
+	layout,
+	Input,
+	Select,
+	Tabs,
+	Spin,
+	Popconfirm,
+	Popover,
+	Table,
+	Switch,
+	message,
+	DatePicker,
+	Modal,
+	Upload,
+	Form,
+	Row,
+	Col,
+	TimePicker
+} from 'antd';
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+import moment from 'moment';
+import './unit.less';
+import { citySelect, provinceList, areaSelect } from '@/NewDicProvinceList';
+import {
+	socialAttribute,
+	industry,
+	newFollow,
+	auditStatusL,
+	lvl,
+	currentMember,
+	cityArr,
+	statuslist,
+	customerStatus,
+	intentionalService,
+	sex
+} from '@/dataDic.js';
+import {
+	getCompanyIntention,
+	splitUrl,
+	getIndustry,
+	getStatuslist,
+	getAuditStatus,
+	getContactType,
+	getSocialAttribute,
+	getfllowSituation,
+	beforeUploadFile,
+	getWhether,
+	getcityArr,
+	getcustomerStatue,
+	getfllowSituationOn,
+	getCertification,
+	getcustomerTyp,
+	getLvl,
+	getCurrentMember,
+	getprovince
+} from '@/tools.js';
+const FormItem = Form.Item;
+//图片组件
+const PicturesWall = React.createClass({
+	getInitialState() {
+		return {
+			previewVisible: false,
+			previewImage: '',
+			fileList: []
+		};
+	},
+	handleCancel() {
+		this.setState({
+			previewVisible: false
+		});
+	},
+	handlePreview(file) {
+		this.setState({
+			previewImage: file.url || file.thumbUrl,
+			previewVisible: true
+		});
+	},
+	handleChange(info) {
+		let fileList = info.fileList;
+		this.setState({
+			fileList
+		});
+		this.props.fileList(fileList);
+	},
+	componentWillReceiveProps(nextProps) {
+		this.state.fileList = nextProps.pictureUrl;
+	},
+	render() {
+		const { previewVisible, previewImage, fileList } = this.state;
+		const uploadButton = (
+			<div>
+				<Icon type="plus" />
+				<div className="ant-upload-text">点击上传</div>
+			</div>
+		);
+		return (
+			<div style={{ display: 'inline-block' }}>
+				<Upload
+					action={globalConfig.context + '/api/admin/customer/uploadCustomerImg'}
+					data={{ sign: '' }}
+					listType="picture-card"
+					fileList={fileList}
+					onPreview={this.handlePreview}
+					onChange={this.handleChange}
+				>
+					{fileList.length >= 1 ? null : uploadButton}
+				</Upload>
+				<Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
+					<img alt="example" style={{ width: '100%' }} src={previewImage} />
+				</Modal>
+			</div>
+		);
+	}
+});
+
+const Unit = React.createClass({
+	getInitialState() {
+		return {
+			loading: false,
+			orgCodeUrl: [],
+			companyLogoUrl: []
+		};
+	},
+	loadInformation(record) {
+		this.setState({
+			loading:true
+
+		})
+		$.ajax({
+			method: 'get',
+			dataType: 'json',
+			url: globalConfig.context + '/api/admin/customer/findOrganizationCustomerDetail',
+			data: {
+				uid: record
+			},
+			success: function(data) {
+				let thisData = data.data;
+				if (!thisData) {
+					if (data.error && data.error.length) {
+						message.warning(data.error[0].message);
+					}
+					thisData = {};
+				}
+				let ProvinceCityArr = [];
+				let ProvinceS = thisData.locationProvince; //getprovince
+				let citys = thisData.locationCity;
+				let Areas = thisData.locationArea;
+				ProvinceCityArr.push(ProvinceS, citys, Areas);
+				this.setState({
+					InformationId: thisData.id,
+					InformationUid: thisData.uid,
+					identifyName: thisData.identifyName,
+					listed: thisData.listed,
+					highTechZone: thisData.highTechZone,
+					orgCodeUrl: thisData.orgCodeUrl
+						? splitUrl(thisData.orgCodeUrl, ',', globalConfig.avatarHost + '/upload')
+						: [],
+					companyLogoUrl: thisData.companyLogoUrl
+						? splitUrl(thisData.companyLogoUrl, ',', globalConfig.avatarHost + '/upload')
+						: [],
+					dataInformation: thisData,
+					ProvinceCity: ProvinceCityArr[0] != null ? ProvinceCityArr : undefined,
+					contacts: thisData.contacts,
+					contactMobile: thisData.contactMobile,
+					industry: String(thisData.industry) == 'null' ? undefined : String(thisData.industry),
+					international: thisData.international,
+					societyTag: thisData.societyTag || undefined,
+					introduction: thisData.introduction,
+					postalAddress: thisData.postalAddress,
+					contactsFixedTel: thisData.contactsFixedTel,
+					contactsFax: thisData.contactsFax,
+					registeredCapital: thisData.registeredCapital,
+					enterpriseScale: thisData.enterpriseScale,
+					legalPerson: thisData.legalPerson,
+					legalPersonIdCard: thisData.legalPersonIdCard,
+					legalPersonTel: thisData.legalPersonTel,
+					legalPersonEmail: thisData.legalPersonEmail,
+					businessScope: thisData.businessScope,
+					orgCode: thisData.orgCode,
+					investment: thisData.investment,
+					auditStatus: thisData.auditStatus ? String(thisData.auditStatus) : undefined,
+					businessAudit: thisData.businessAudit,
+					listed: thisData.listed,
+					highTechZone: thisData.highTechZone
+				});
+			}.bind(this)
+		}).always(
+			function() {
+				this.setState({
+					loading: false
+				});
+			}.bind(this)
+		);
+	},
+	//图片
+	getOrgCodeUrl(e) {
+		this.setState({
+			orgCodeUrl: e
+		});
+	},
+	getCompanyLogoUrl(e) {
+		this.setState({
+			companyLogoUrl: e
+		});
+	},
+	//基本信息提交
+	newSubmit(e) {
+		e.preventDefault();
+		if(!this.state.identifyName){
+			message.warning('请填写单位名称!');
+			return;
+		}
+		if (!this.state.industry) {
+			message.warning('请选择行业!');
+			return false;
+		}
+		if (!this.state.societyTag) {
+			message.warning('请选择社会性质!');
+			return false;
+		}
+		if (!this.state.ProvinceCity[1]) {
+			message.warning('请选择地区!');
+			return false;
+		}
+		if (isNaN(this.state.registeredCapital)) {
+			message.warning('注册资本只能输入数字!');
+			return false;
+		}
+		if (isNaN(this.state.enterpriseScale)) {
+			message.warning('单位规模只能输入数字!');
+			return false;
+		}
+		this.setState({
+			selectedRowKeys: []
+		});
+
+		let theorgCodeUrl = [];
+		if (this.state.orgCodeUrl.length) {
+			let picArr = [];
+			this.state.orgCodeUrl.map(function(item) {
+				if (item.response && item.response.data && item.response.data.length) {
+					picArr.push(item.response.data);
+				}
+			});
+			theorgCodeUrl = picArr.join(',');
+		}
+		let thecompanyLogoUrl = [];
+		if (this.state.companyLogoUrl.length) {
+			let picArr = [];
+			this.state.companyLogoUrl.map(function(item) {
+				if (item.response && item.response.data && item.response.data.length) {
+					picArr.push(item.response.data);
+				}
+			});
+			thecompanyLogoUrl = picArr.join(',');
+		}
+
+		this.setState({
+			loading: true
+		});
+		$.ajax({
+			method: 'post',
+			dataType: 'json',
+			url: globalConfig.context + '/api/admin/customer/updateOrganizationCustomer',
+			data: {
+				id: this.state.InformationId,
+				uid: this.state.InformationUid,
+				societyTag: this.state.societyTag,
+				identifyName: this.state.identifyName, //单位名称
+				introduction: this.state.introduction,
+				unitName: this.state.unitName,
+				industry: this.state.industry,
+				locationProvince: this.state.ProvinceCity[0], //省-
+				locationCity: this.state.ProvinceCity[1], //市
+				locationArea: this.state.ProvinceCity[2], //区
+				postalAddress: this.state.postalAddress,
+				contactsFixedTel: this.state.contactsFixedTel,
+				contactsFax: this.state.contactsFax,
+				registeredCapital: this.state.registeredCapital ? this.state.registeredCapital : 0,
+				enterpriseScale: this.state.enterpriseScale ? this.state.enterpriseScale : 0,
+				legalPerson: this.state.legalPerson,
+				legalPersonIdCard: this.state.legalPersonIdCard,
+				legalPersonTel: this.state.legalPersonTel,
+				legalPersonEmail: this.state.legalPersonEmail,
+				highTechZone: this.state.highTechZone,
+				listed: this.state.listed,
+				contacts: this.state.contacts,
+				contactMobile: this.state.contactMobile,
+				international: this.state.international,
+				orgCode: this.state.orgCode,
+				businessScope: this.state.businessScope,
+				introduction: this.state.introduction,
+				companyLogoUrl: thecompanyLogoUrl != 0 ? thecompanyLogoUrl : '',
+				orgCodeUrl: theorgCodeUrl != 0 ? theorgCodeUrl : '',
+				businessAudit: this.state.businessAudit,
+				auditStatus: this.state.auditStatus
+			}
+		}).done(
+			function(data) {
+				this.setState({
+					loading: false
+				});
+				if (!data.error.length) {
+					message.success('保存成功!');
+					this.loadInformation()
+				} else {
+					message.warning(data.error[0].message);
+				}
+			}.bind(this)
+		);
+	},
+	componentWillMount() {
+		this.loadInformation();
+	},
+	componentWillReceiveProps(nextProps) {
+		
+	},
+	render() {
+		return (
+			<div className="unit-wrap">
+				<Form layout="horizontal" onSubmit={this.newSubmit} id="demand-form">
+					<Spin spinning={this.state.loading}>
+						<Row style={{ marginBottom: 20 }}>
+							<Col offset={2} span={4}>
+								<h4>单位资料</h4>
+							</Col>
+						</Row>
+						<div className="clearfix" style={{ paddingLeft: '60px' }}>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="单位名称"
+							>
+								<Input
+								    style={{width:'90%'}}
+									value={this.state.identifyName}
+									onChange={(e) => {
+										this.setState({ identifyName: e.target.value });
+									}}
+									placeholder="请输入单位名称"
+								/>
+								<span className="color-red"> * </span>
+							</FormItem>
+						</div>
+						<div className="clearfix" style={{ paddingLeft: '60px' }}>
+							<FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label="行业">
+								<Select
+									placeholder="选择行业"
+									value={this.state.industry}
+									style={{width:'90%'}}
+									onChange={(e) => {
+										this.setState({ industry: e });
+									}}
+								>
+									{industry.map(function(item) {
+										return <Select.Option key={item.value}>{item.key}</Select.Option>;
+									})}
+								</Select>
+								<span className="color-red"> * </span>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="社会属性"
+							>
+								<Select
+									placeholder="客户社会属性(必填项)"
+									value={this.state.societyTag}
+									style={{width:'90%'}}
+									onChange={(e) => {
+										this.setState({ societyTag: e });
+									}}
+								>
+									{socialAttribute.map(function(item) {
+										return <Select.Option key={item.value}>{item.key}</Select.Option>;
+									})}
+								</Select>
+								<span className="color-red"> * </span>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="省-市-区"
+							>
+								<Cascader
+									options={areaSelect()}
+									value={this.state.ProvinceCity}
+									placeholder="选择城市"
+									style={{width:'90%'}}
+									onChange={(e, pre) => {
+										this.setState({ ProvinceCity: e });
+									}}
+								/>
+								<span className="color-red"> * </span>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="通信地址"
+							>
+								<Input
+									placeholder="客户通信地址"
+									value={this.state.postalAddress}
+									onChange={(e) => {
+										this.setState({ postalAddress: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="固定电话"
+							>
+								<Input
+									placeholder="客户固定电话"
+									value={this.state.contactsFixedTel}
+									onChange={(e) => {
+										this.setState({ contactsFixedTel: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="客户传真"
+							>
+								<Input
+									placeholder="客户传真"
+									value={this.state.contactsFax}
+									onChange={(e) => {
+										this.setState({ contactsFax: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="注册资本"
+							>
+								<Input
+									placeholder="注册资本"
+									value={this.state.registeredCapital}
+									maxLength="6"
+									onChange={(e) => {
+										this.setState({ registeredCapital: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="单位规模"
+							>
+								<Input
+									placeholder="单位规模"
+									value={this.state.enterpriseScale}
+									maxLength="1"
+									onChange={(e) => {
+										this.setState({ enterpriseScale: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="法人名称"
+							>
+								<Input
+									placeholder="法人名称"
+									value={this.state.legalPerson}
+									onChange={(e) => {
+										this.setState({ legalPerson: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="法人身份证号码"
+							>
+								<Input
+									placeholder="法人身份证号码"
+									value={this.state.legalPersonIdCard}
+									onChange={(e) => {
+										this.setState({ legalPersonIdCard: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="法人电话"
+							>
+								<Input
+									placeholder="法人电话"
+									value={this.state.legalPersonTel}
+									onChange={(e) => {
+										this.setState({ legalPersonTel: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="法人电子邮箱"
+							>
+								<Input
+									placeholder="法人电子邮箱"
+									value={this.state.legalPersonEmail}
+									onChange={(e) => {
+										this.setState({ legalPersonEmail: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem
+								className="half-item"
+								labelCol={{ span: 4 }}
+								wrapperCol={{ span: 18 }}
+								label="机构代码"
+							>
+								<Input
+									placeholder="社会同意机构代码"
+									value={this.state.orgCode}
+									onChange={(e) => {
+										this.setState({ orgCode: e.target.value });
+									}}
+								/>
+							</FormItem>
+							<FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label="高新">
+								<Radio.Group
+									value={this.state.highTechZone}
+									onChange={(e) => {
+										this.setState({ highTechZone: e.target.value });
+									}}
+								>
+									<Radio value={0}>是</Radio>
+									<Radio value={1}>否 </Radio>
+								</Radio.Group>
+							</FormItem>
+							<FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label="上市">
+								<Radio.Group
+									value={this.state.listed}
+									onChange={(e) => {
+										this.setState({ listed: e.target.value });
+									}}
+								>
+									<Radio value={0}>是</Radio>
+									<Radio value={1}>否 </Radio>
+								</Radio.Group>
+							</FormItem>
+
+							<div className="clearfix pictures">
+								<FormItem
+									className="half-item"
+									labelCol={{ span: 4 }}
+									wrapperCol={{ span: 18 }}
+									style={{ marginTop: 15 }}
+									label="机构证(PIC)"
+								>
+									<PicturesWall
+										pictureSign="PIC"
+										fileList={this.getOrgCodeUrl}
+										pictureUrl={this.state.orgCodeUrl}
+									/>
+									<p>图片建议:图片要清晰。</p>
+								</FormItem>
+								<FormItem
+									className="half-item"
+									labelCol={{ span: 4 }}
+									wrapperCol={{ span: 18 }}
+									label="单位logo"
+								>
+									<PicturesWall
+										pictureSign="logo"
+										fileList={this.getCompanyLogoUrl}
+										pictureUrl={this.state.companyLogoUrl}
+									/>
+									<p>图片建议:图片要清晰。</p>
+								</FormItem>
+							</div>
+							<div className="clearfix">
+								<FormItem
+									className="half-item"
+									labelCol={{ span: 4 }}
+									wrapperCol={{ span: 18 }}
+									label="业务范围"
+								>
+									<Input
+										type="textarea"
+										rows={4}
+										value={this.state.businessScope}
+										placeholder="请输入业务范围"
+										onChange={(e) => {
+											this.setState({ businessScope: e.target.value });
+										}}
+									/>
+								</FormItem>
+								<FormItem
+									className="half-item"
+									labelCol={{ span: 4 }}
+									wrapperCol={{ span: 18 }}
+									label="单位简介"
+								>
+									<Input
+										type="textarea"
+										rows={4}
+										value={this.state.introduction}
+										placeholder="请输入单位简介"
+										onChange={(e) => {
+											this.setState({ introduction: e.target.value });
+										}}
+									/>
+								</FormItem>
+							</div>
+							<Row style={{ marginBottom: 20 ,marginTop:10}}>
+								<Col offset={2} span={4}>
+									<Button size="large" className="set-submit" type="primary" htmlType="submit">
+										保存
+									</Button>
+								</Col>
+                       		 </Row>
+							
+						</div>
+					</Spin>
+				</Form>
+			</div>
+		);
+	}
+});
+export default Unit;

+ 29 - 0
js/component/account/set/newAccount/unit.less

@@ -0,0 +1,29 @@
+.unit-wrap{
+    padding:10px;
+    background-color: #ffffff;
+    .half-item{
+        width: 50%;
+        display: inline-block;
+        margin-bottom: 10px;
+    }
+    #demand-form{
+        padding-top: 20px;
+        .subBtn{
+            width: 200px;
+            margin: 40px auto;
+            .set-submit{
+                margin-right: 60px
+            }
+        }
+    }
+    .color-red{
+        color:#f5222d;
+        margin-left: 5px
+        
+    }
+    .picWidth{
+        width: 33.33%;
+        display: inline-block;
+    }
+   
+}