123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536 |
- import React from 'react';
- import { Input, Button, Form, Select, Upload, Icon, Spin, message, InputNumber,Modal } from 'antd';
- import './person.less';
- import ajax from 'jquery/src/ajax/xhr.js'
- import $ from 'jquery/src/ajax';
- import { addressInit ,splitUrl} from '../../tools.js';
- function getBase64(img, callback) {
- const reader = new FileReader();
- reader.addEventListener('load', () => callback(reader.result));
- reader.readAsDataURL(img);
- };
- function beforeUpload(file) {
- const isJPG = file.type === 'image/jpeg';
- if (!isJPG) {
- message.error('You can only upload JPG file!');
- }
- const isLt2M = file.size / 1024 / 1024 < 2;
- if (!isLt2M) {
- message.error('Image must smaller than 2MB!');
- }
- return isJPG && isLt2M;
- };
- class Avatar extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- imageUrl: ''
- }
- }
- handleChange(info) {
- if (info.file.status === 'done') {
- // Get this url from response in real world.
- getBase64(info.file.originFileObj, imageUrl => this.setState({ imageUrl }));
- this.props.urlData(info.file.response.data);
- }
- }
- render() {
- const imageUrl = this.state.imageUrl;
- return (
- <Upload
- className="avatar-uploader"
- name="avatar"
- showUploadList={false}
- action={globalConfig.context + "/api/user/avatar/uploadReplace"}
- data={{ 'sign': this.props.name }}
- beforeUpload={beforeUpload}
- onChange={this.handleChange.bind(this)}
- >
- {
- imageUrl ?
- <img src={imageUrl} role="presentation" className="avatar" /> :
- <Icon type="plus" className="avatar-uploader-trigger" />
- }
- </Upload>
- );
- }
- };
- class PicturesWall extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- previewVisible: false,
- propsbool: true,
- 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) {
- if ( nextProps.lifePhotoList && this.state.propsbool) {
- this.state.fileList = nextProps.lifePhotoList;
- this.state.propsbool = false;
- }
- }
- render() {
- const { previewVisible, previewImage, fileList } = this.state;
- const uploadButton = (
- <div>
- <Icon type="plus" />
- <div className="ant-upload-text">Upload</div>
- </div>
- );
- return (
- <div className="clearfix">
- <Upload
- action={globalConfig.context + "/api/user/avatar/upload"}
- listType="picture-card"
- fileList={fileList}
- onPreview={this.handlePreview}
- onChange={this.handleChange.bind(this)}
- >
- {fileList.length >= 9 ? null : uploadButton}
- </Upload>
- <Modal visible={previewVisible} footer={null} onCancel={this.handleCancel}>
- <img alt="example" style={{ width: '100%' }} src={previewImage} />
- </Modal>
- </div>
- );
- }
- };
- const PersonFrom = Form.create()(React.createClass({
- getData() {
- this.props.spinState(true);
- $.ajax({
- method: "get",
- dataType: "json",
- url: globalConfig.context + "/api/user/member",
- success: function (data) {
- if (data.data && data.data.info && data.data.pro) {
- addressInit('cmbProvince', 'cmbCity', 'cmbArea',
- data.data.locationProvince, data.data.locationCity, data.data.locationArea);
- let theArr = splitUrl(data.data.info.publicityPictureUrl, ',', globalConfig.staticHost + '/upload');
- this.setState({
- idttType: data.data.info.identityType,
- unitName: data.data.info.companyName,
- unitNumber: data.data.info.unitSize,
- unitIntro: data.data.info.companyIntroduction,
- unitFrom: data.data.info.homeUnit,
- companyLifePicUrl: theArr,
- qiyezizhi: data.data.pro.qualification,
- turnover: data.data.pro.turnover,
- schoolProp: data.data.pro.collegeAttribute,
- schoolTime: data.data.pro.collegeEstablishTime,
- aca: data.data.pro.academician,
- PhDTutor: data.data.pro.doctoralTutor,
- MSTutor: data.data.pro.masterTutor,
- otherExperts: data.data.pro.otherExpert,
- StateKeyLab: data.data.pro.nationalLab,
- EduKeyLab: data.data.pro.educationLab,
- ComCenter: data.data.pro.enterpriseCenter,
- otherCenter: data.data.pro.otherCenter,
- resTime: data.data.pro.institutionEstablishTime
- });
- }
- }.bind(this),
- }).always(function () {
- this.props.spinState(false);
- }.bind(this));
- },
- getInitialState() {
- return {
- loading: false,
- idttType: '企业',
- companyDis: 'block',
- schoolDis: 'none',
- resDis: 'none',
- aca: 0,
- PhDTutor: 0,
- MSTutor: 0,
- otherExperts: 0,
- StateKeyLab: 0,
- EduKeyLab: 0,
- ComCenter: 0,
- otherCenter: 0
- };
- },
- handleSubmit(e) {
- e.preventDefault();
- this.props.form.validateFields((err, values) => {
- //地址值
- let cmbP = document.getElementById('cmbProvince').value;
- let cmbC = document.getElementById('cmbCity').value;
- let cmbA = document.getElementById('cmbArea').value;
- //
- let leftPicArr = [];
- this.state.companyLifePicObj.map(function (item) {
- leftPicArr.push(item.response.data);
- });
- let lifePhotoUrl = leftPicArr.join(",");
- if (!err) {
- this.props.spinState(true);
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/orgPro",
- data: {
- "info.identityType": values.identityType,
- "info.companyName": values.unitName,
- "info.locationProvince": cmbP,
- "info.locationCity": cmbC,
- "info.locationArea": cmbA,
- "info.unitSize": values.unitNumber,
- "info.companyIntroduction": values.unitIntro,
- "info.homeUnit": values.unitFrom,
- "info.logoUrl": this.state.companyLogoUrl,
- "info.publicityPictureUrl": lifePhotoUrl,
- "pro.qualification": values.qiyezizhi,
- "pro.turnover": values.turnover,
- "pro.collegeAttribute": values.schoolProp,
- "pro.collegeEstablishTime": values.schoolTime,
- "pro.academician": this.state.aca,
- "pro.doctoralTutor": this.state.PhDTutor,
- "pro.masterTutor": this.state.MSTutor,
- "pro.otherExpert": this.state.otherExperts,
- "pro.nationalLab": this.state.StateKeyLab,
- "pro.educationLab": this.state.EduKeyLab,
- "pro.enterpriseCenter": this.state.ComCenter,
- "pro.otherCenter": this.state.otherCenter,
- "pro.institutionEstablishTime": values.resTime
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('保存成功!');
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this)).always(function () {
- this.props.spinState(false);
- }.bind(this));
- }
- });
- },
- idttTypeChange(e) {
- if (e === '企业') {
- this.props.form.setFieldsValue({ 'indentityType': e });
- this.setState({
- companyDis: 'block',
- schoolDis: 'none',
- resDis: 'none'
- });
- } else if (e === '院校') {
- this.props.form.setFieldsValue({ 'indentityType': e });
- this.setState({
- companyDis: 'none',
- schoolDis: 'block',
- resDis: 'none'
- });
- } else if (e === '研究机构') {
- this.props.form.setFieldsValue({ 'indentityType': e });
- this.setState({
- companyDis: 'none',
- schoolDis: 'none',
- resDis: 'block'
- });
- } else {
- this.props.form.setFieldsValue({ 'indentityType': e });
- this.setState({
- companyDis: 'none',
- schoolDis: 'none',
- resDis: 'none'
- });
- }
- },
- downloadPic(type) {
- $.ajax({
- method: "post",
- dataType: "json",
- url: globalConfig.context + "/open/downLoadPicture",
- data: {
- path: type,
- isPrivate: true
- },
- success: function (data) {
- }.bind(this),
- });
- },
- companyLogoUrl(e) {
- this.state.companyLogoUrl = e;
- },
- companyLifePicUrl(e) {
- this.state.companyLifePicObj = e;
- },
- componentDidMount() {
- addressInit('cmbProvince', 'cmbCity', 'cmbArea');
- this.getData();
- },
- render() {
- const FormItem = Form.Item;
- const Option = Select.Option;
- const edulvlArr = ["企业", "院校", "研究机构", "政府部门", "非法人团体"];
- const zizhiArr = ["高新技术型企业", "创新型企业", "双软企业", "小心微利企业", "科技部认定示范企业", "其他"];
- const schoolArr = ["普通本科院校", "高职专科院校", "独立学院", "中央部署院校", "地方所属院校", "211工程院校", "985工程院校"];
- const { getFieldDecorator } = this.props.form;
- const formItemLayout = {
- labelCol: { span: 3 },
- wrapperCol: { span: 12 },
- };
- const _me = this;
- return (
- <Form horizontal onSubmit={this.handleSubmit} className="person-form">
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 8 }}
- label="身份类型"
- >
- {getFieldDecorator('identityType', {
- initialValue: this.state.idttType
- })(
- <Select className="acc-edu-lvl" onChange={this.idttTypeChange}>
- {
- edulvlArr.map(function (item, i) {
- return <Option key={i} value={item} >{item}</Option>
- })
- }
- </Select>
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="单位名称"
- >
- {getFieldDecorator('unitName', {
- initialValue: this.state.unitName
- })(
- <Input />
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="所在地"
- >
- {getFieldDecorator('province')(
- <div>
- <select id="cmbProvince" name="cmbProvince"></select>
- <select id="cmbCity" name="cmbCity"></select>
- <select id="cmbArea" name="cmbArea"></select>
- </div>
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="单位规模"
- >
- {getFieldDecorator('unitNumber', {
- initialValue: this.state.unitNumber
- })(
- <InputNumber />
- )}
- <span>人</span>
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 20 }}
- label="单位简介"
- >
- {getFieldDecorator('unitIntro', {
- initialValue: this.state.unitIntro
- })(
- <Input type="textarea"
- placeholder="全面介绍自己,让商友更深入了解您,内容长度不超过1000个字。"
- rows={6} />
- )}
- <p>还可输入{
- (() => {
- if (_me.props.form.getFieldValue('intro') && _me.props.form.getFieldValue('intro').length) {
- return 1000 - _me.props.form.getFieldValue('intro').length;
- } else {
- return 1000;
- }
- })()
- }字/1000</p>
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="归属单位"
- >
- {getFieldDecorator('unitFrom', {
- initialValue: this.state.unitFrom
- })(
- <Input placeholder="非法人单位填写。" />
- )}
- </FormItem>
- <FormItem style={{ 'display': this.state.companyDis }}
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 8 }}
- label="企业资质"
- >
- {getFieldDecorator('qiyezizhi', {
- initialValue: this.state.qiyezizhi
- })(
- <Select className="acc-edu-lvl">
- {
- zizhiArr.map(function (item, i) {
- return <Option key={i} value={item} >{item}</Option>
- })
- }
- </Select>
- )}
- </FormItem>
- <FormItem style={{ 'display': this.state.companyDis }}
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 6 }}
- label="年营业额"
- >
- {getFieldDecorator('turnover', {
- initialValue: this.state.turnover
- })(
- <InputNumber />
- )}
- <span>万元</span>
- </FormItem>
- <FormItem style={{ 'display': this.state.schoolDis }}
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 8 }}
- label="院校属性"
- >
- {getFieldDecorator('schoolProp', {
- initialValue: this.state.schoolProp
- })(
- <Select className="acc-edu-lvl">
- {
- schoolArr.map(function (item, i) {
- return <Option key={i} value={item} >{item}</Option>
- })
- }
- </Select>
- )}
- </FormItem>
- <FormItem style={{ 'display': this.state.schoolDis }}
- {...formItemLayout}
- label="创办时间"
- >
- {getFieldDecorator('schoolTime', {
- initialValue: this.state.schoolTime
- })(
- <InputNumber />
- )}
- <span>年</span>
- </FormItem>
- <FormItem style={{ 'display': this.state.schoolDis }}
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 21, offset: 3 }}
- label=""
- >
- <div className="school-props clearfix">
- <div><span>院士:</span><InputNumber value={this.state.aca} onChange={function (e) { this.setState({ aca: e }) }.bind(this)} />人</div>
- <div><span>博士生导师:</span><InputNumber value={this.state.PhDTutor} onChange={function (e) { this.setState({ PhDTutor: e }) }.bind(this)} />人</div>
- <div><span>硕士生导师:</span><InputNumber value={this.state.MSTutor} onChange={function (e) { this.setState({ MSTutor: e }) }.bind(this)} />人</div>
- <div><span>其他专家:</span><InputNumber value={this.state.otherExperts} onChange={function (e) { this.setState({ otherExperts: e }) }.bind(this)} />人</div>
- <div><span>国家级重点实验室:</span><InputNumber value={this.state.StateKeyLab} onChange={function (e) { this.setState({ StateKeyLab: e }) }.bind(this)} />所</div>
- <div><span>教育部重点实验室:</span><InputNumber value={this.state.EduKeyLab} onChange={function (e) { this.setState({ EduKeyLab: e }) }.bind(this)} />所</div>
- <div><span>企业共建研究中心:</span><InputNumber value={this.state.ComCenter} onChange={function (e) { this.setState({ ComCenter: e }) }.bind(this)} />所</div>
- <div><span>其他研究中心:</span><InputNumber value={this.state.otherCenter} onChange={function (e) { this.setState({ otherCenter: e }) }.bind(this)} />所</div>
- </div>
- </FormItem>
- <FormItem style={{ 'display': this.state.resDis }}
- {...formItemLayout}
- label="创办时间"
- >
- {getFieldDecorator('resTime', {
- initialValue: this.state.resTime
- })(
- <InputNumber />
- )}
- <span>年</span>
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="LOGO"
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 20 }}
- >
- {getFieldDecorator('avatar')(
- <Avatar name="companyLogo" urlData={this.companyLogoUrl} />
- )}
- </FormItem>
- <div className="set-explain">
- <p>上传的照片图片格式应为jpg格式,大小在2M以内</p>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 21 }}
- label="宣传图片"
- >
- {getFieldDecorator('companyLifePic')(
- <PicturesWall fileList={this.companyLifePicUrl} lifePhotoList={this.state.companyLifePicUrl} />
- )}
- </FormItem>
- <FormItem wrapperCol={{ span: 12, offset: 3 }}>
- <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
- </FormItem>
- </Form >
- );
- },
- }));
- const Person = React.createClass({
- getInitialState() {
- return {
- loading: false
- };
- },
- spinChange(e) {
- this.setState({
- loading: e
- });
- },
- render() {
- return (
- <Spin spinning={this.state.loading} className='spin-box'>
- <div className="set-person">
- <div className="acc-detail">
- <p className="acc-title">单位资料</p>
- <PersonFrom spinState={this.spinChange} />
- </div>
- </div>
- </Spin>
- )
- }
- });
- export default Person;
|