liting2017 6 éve%!(EXTRA string=óta)
szülő
commit
f1ef15115c
34 módosított fájl, 5 hozzáadás és 4542 törlés
  1. 4 4
      js/component/account/index/content.jsx
  2. 0 221
      js/component/account/set/ablt.jsx
  3. 0 39
      js/component/account/set/ablt.less
  4. 0 316
      js/component/account/set/base.jsx
  5. 0 126
      js/component/account/set/base.less
  6. 0 151
      js/component/account/set/changeMobile.jsx
  7. 0 55
      js/component/account/set/changeModal.less
  8. 0 89
      js/component/account/set/changePassword.jsx
  9. 0 607
      js/component/account/set/company.jsx
  10. 0 37
      js/component/account/set/content.jsx
  11. 0 277
      js/component/account/set/edu.jsx
  12. 0 53
      js/component/account/set/edu.less
  13. 0 31
      js/component/account/set/eduPfsSelect.jsx
  14. 0 306
      js/component/account/set/group.jsx
  15. 0 802
      js/component/account/set/hrSituation.jsx
  16. 0 53
      js/component/account/set/hrSituation.less
  17. 0 121
      js/component/account/set/leftMenu.jsx
  18. 0 52
      js/component/account/set/leftTabgroup.jsx
  19. 0 386
      js/component/account/set/person.jsx
  20. 0 73
      js/component/account/set/person.less
  21. 0 406
      js/component/account/set/pfs.jsx
  22. 0 69
      js/component/account/set/pfs.less
  23. 0 188
      js/component/account/set/tech.jsx
  24. 0 59
      js/component/account/set/tech.less
  25. 0 19
      js/component/account/set/techSelect.jsx
  26. 0 0
      js/component/account/setAccount/account.jsx
  27. 0 0
      js/component/account/setAccount/account.less
  28. 0 0
      js/component/account/setAccount/contacts.jsx
  29. 0 0
      js/component/account/setAccount/contacts.less
  30. 0 0
      js/component/account/setAccount/personal.jsx
  31. 0 0
      js/component/account/setAccount/unit.jsx
  32. 0 0
      js/component/account/setAccount/unit.less
  33. 0 1
      js/component/login/forgetPw.jsx
  34. 1 1
      webpack.config.js

+ 4 - 4
js/component/account/index/content.jsx

@@ -1,9 +1,9 @@
 //新开发账户管理
 import React from 'react';
-import Account from '@/account/set/newAccount/account';
-import Unit from '@/account/set/newAccount/unit';
-import Personal from '@/account/set/newAccount/personal';
-import Contacts from '@/account/set/newAccount/contacts';
+import Account from '@/account/setAccount/account';
+import Unit from '@/account/setAccount/unit';
+import Personal from '@/account/setAccount/personal';
+import Contacts from '@/account/setAccount/contacts';
 //会员中心
 import Normal from '@/account/index/normal';
 import Collection from '@/account/index/collection';

+ 0 - 221
js/component/account/set/ablt.jsx

@@ -1,221 +0,0 @@
-import React from 'react';
-import './ablt.less';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-
-import { Tag, Input, Tooltip, Button, Spin, message } from 'antd';
-
-class EditableTagGroup extends React.Component {
-    constructor(props) {
-        super(props);
-        this.state = {
-            tags: ['我的标签:', '标签1', '标签2'],
-            inputVisible: false,
-            inputValue: '',
-            propsBool: true
-        }
-    }
-
-    handleClose(removedTag) {
-        const tags = this.state.tags.filter(tag => tag !== removedTag);
-        this.props.tagsArr(tags);
-        this.setState({ tags });
-    }
-
-    showInput() {
-        this.setState({ inputVisible: true }, () => this.input.focus());
-    }
-
-    handleInputChange(e) {
-        this.setState({ inputValue: e.target.value });
-    }
-
-    handleInputConfirm() {
-        const state = this.state;
-        const inputValue = state.inputValue;
-        let tags = state.tags;
-        if (inputValue && tags.indexOf(inputValue) === -1 && inputValue.replace(/(^\s*)|(\s*$)/g, "").length != 0) {
-            tags = [...tags, inputValue.replace(/(^\s*)|(\s*$)/g, "")];
-        }
-        this.props.tagsArr(tags);
-        this.setState({
-            tags,
-            inputVisible: false,
-            inputValue: '',
-        });
-    }
-    componentWillReceiveProps(nextProps) {
-        if (nextProps.abltArr && this.state.propsBool) {
-            nextProps.abltArr.unshift("我的标签:");
-            this.state.tags = nextProps.abltArr;
-            this.state.propsBool = false;
-        };
-    }
-    render() {
-        const { tags, inputVisible, inputValue } = this.state;
-        return (
-            <div className="ablt-tips">
-                {tags.map((tag, index) => {
-                    const isLongTag = tag.length > 11;
-                    const tagElem = (
-                        <Tag key={tag} closable={index !== 0} afterClose={() => this.handleClose(tag)}>
-                            {isLongTag ? `${tag.slice(0, 11)}...` : tag}
-                        </Tag>
-                    );
-                    return isLongTag ? <Tooltip title={tag}>{tagElem}</Tooltip> : tagElem;
-                })}
-                {inputVisible && (
-                    <Input
-                        ref={input => this.input = input}
-                        type="text"
-                        style={{ width: 78 }}
-                        value={inputValue}
-                        onChange={this.handleInputChange.bind(this)}
-                        onBlur={this.handleInputConfirm.bind(this)}
-                        onPressEnter={this.handleInputConfirm.bind(this)}
-                    />
-                )}
-                {!inputVisible && <Button className="addtips" type="dashed" disabled={tags.length > 10 ? true : false} onClick={this.showInput.bind(this)}>+ 新标签</Button>}
-            </div>
-        );
-    }
-};
-
-const Base = React.createClass({
-    getInitialState() {
-        return {
-            loading: false,
-            tags: []
-        };
-    },
-    loadData() {
-        this.setState({
-            loading: true
-        });
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/api/user/ability",
-            success: function (data) {
-                if (data.data) {
-                    this.setState({
-                        id: data.data.id || null,
-                        abltArr: data.data.abilityLabel ? data.data.abilityLabel.split(",") : [],
-                        intellectRight: data.data.intellectRight,
-                        scienceAchievement: data.data.scienceAchievement,
-                        researchInnovation: data.data.researchInnovation,
-                        personnel: data.data.personnel
-                    });
-                };
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    componentWillMount() {
-        this.loadData();
-    },
-    getTagsArr(e) {
-        this.state.tags = e.slice(1);
-    },
-    submit() {
-        let theTags = this.state.tags.join(",");
-        this.setState({
-            loading: true
-        })
-        $.ajax({
-            method: "POST",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/user/userAbility",
-            data: {
-                'id': this.state.id,
-                'abilityLabel': theTags,
-                "intellectRight": this.state.intellectRight,
-                "scienceAchievement": this.state.scienceAchievement,
-                "researchInnovation": this.state.researchInnovation,
-                "personnel": this.state.personnel
-            }
-        }).done(function (data) {
-            if (!data.error.length) {
-                message.success('保存成功!');
-                this.loadData();
-            } else {
-                message.warning(data.error[0].message);
-            }
-        }.bind(this)).always(function () {
-            this.setState({
-                loading: false
-            })
-        }.bind(this));
-    },
-    render() {
-        return (
-            <Spin spinning={this.state.loading} className='spin-box'>
-                <div className="set-ablt">
-                    <div className="acc-detail">
-                        <p className="acc-title">能力标签</p>
-                        <p className="tips-title">最多可设置10个标签。请用简洁明确的关键词来展示你的职业能力。</p>
-                        <EditableTagGroup abltArr={this.state.abltArr} tagsArr={this.getTagsArr} />
-                    </div>
-                    {userData.type == "1" ? <div className="acc-detail clearfix">
-                        <p className="acc-title">能力标签</p>
-                        <div className="acc-area">
-                            <p>知识产权对企业竞争力的作用 (限400字) </p>
-                            <Input type="textarea" rows={6}
-                                value={this.state.intellectRight}
-                                onChange={(e) => {
-                                    if (e.target.value.length > 400) {
-                                        message.warning("长度超过400字!");
-                                        return;
-                                    };
-                                    this.setState({ intellectRight: e.target.value });
-                                }} />
-                        </div>
-                        <div className="acc-area">
-                            <p>科技成果转化情况 (限400字) </p>
-                            <Input type="textarea" rows={6}
-                                value={this.state.scienceAchievement}
-                                onChange={(e) => {
-                                    if (e.target.value.length > 400) {
-                                        message.warning("长度超过400字!");
-                                        return;
-                                    };
-                                    this.setState({ scienceAchievement: e.target.value })
-                                }} />
-                        </div>
-                        <div className="acc-area">
-                            <p>研究开发与技术创新组织管理情况 (限400字) </p>
-                            <Input type="textarea" rows={6}
-                                value={this.state.researchInnovation}
-                                onChange={(e) => {
-                                    if (e.target.value.length > 400) {
-                                        message.warning("长度超过400字!");
-                                        return;
-                                    };
-                                    this.setState({ researchInnovation: e.target.value })
-                                }} />
-                        </div>
-                        <div className="acc-area">
-                            <p>管理与科技人员情况 (限400字) </p>
-                            <Input type="textarea" rows={6}
-                                value={this.state.personnel}
-                                onChange={(e) => {
-                                    if (e.target.value.length > 400) {
-                                        message.warning("长度超过400字!");
-                                        return;
-                                    };
-                                    this.setState({ personnel: e.target.value })
-                                }} />
-                        </div>
-                    </div> : <div></div>}
-                    <Button className="set-submit" type="primary" onClick={this.submit}>保存</Button>
-                </div>
-            </Spin>
-        )
-    }
-});
-
-export default Base;

+ 0 - 39
js/component/account/set/ablt.less

@@ -1,39 +0,0 @@
-.set-ablt {
-    background: #fff;
-    margin-bottom: 48px;
-    padding: 20px;
-    .acc-title {
-        color: #333;
-        font-size: 16px;
-        margin-bottom: 10px;
-        span {
-            font-size: 12px;
-            color: #999;
-            margin-left: 10px;
-        }
-    }
-    .tips-title {
-        margin-bottom: 10px;
-    }
-    .ablt-tips {
-        div:first-child {
-            border: none;
-            background: #fff;
-            padding: 0;
-        }
-        margin: 20px 0;
-    }
-    .set-submit {
-        width: 120px;
-        border-radius: 4px;
-    }
-    .acc-area {
-        width: 40%;
-        float: left;
-        margin-bottom: 20px;
-        margin-right: 20px;
-        .ant-input {
-            margin-top: 10px;
-        }
-    }
-}

+ 0 - 316
js/component/account/set/base.jsx

@@ -1,316 +0,0 @@
-import React from 'react';
-import { Input, Button, Form, Radio, Upload, Icon, DatePicker, Spin, message } from 'antd';
-import moment from 'moment';
-import './base.less';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-
-import ChangePw from './changePassword.jsx';
-import ChangeMobile from './changeMobile.jsx';
-
-const FormItem = Form.Item;
-const RadioGroup = Radio.Group;
-const { MonthPicker, RangePicker } = DatePicker
-
-import weixin from '../../../../image/weixin-w.png';
-import qq from '../../../../image/qq-w.png';
-import weibo from '../../../../image/weibo-w.png';
-import card1 from '../../../../image/idcard1.jpg';
-import card2 from '../../../../image/idcard2.jpg';
-
-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={this.props.name}
-                showUploadList={false}
-                action={globalConfig.context + "/api/user/identity/upload"}
-                data={{ 'sign': this.props.name }}
-                beforeUpload={beforeUpload}
-                onChange={this.handleChange.bind(this)}
-            >
-                {
-                    imageUrl ?
-                        <img src={imageUrl} role="presentation" id={this.props.name} /> :
-                        <Icon type="plus" className="avatar-uploader-trigger" />
-                }
-            </Upload>
-        );
-    }
-};
-
-
-
-const BaseFrom = Form.create()(React.createClass({
-    getData() {
-        this.props.spinState(true);
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/api/user/base",
-            success: function (data) {
-                if (data.data) {
-                    let d = new Date()
-                    if (data.data.dateOfBirthMonth && data.data.dateOfBirthYear) {
-                        d.setMonth(data.data.dateOfBirthMonth - 1);
-                        d.setYear(parseInt(data.data.dateOfBirthYear));
-                    };
-                    this.setState({
-                        id: data.data.id || null,
-                        username: data.data.username,
-                        sex: data.data.sex,
-                        birth: d,
-                        idnumber: data.data.idNumber,
-                        //oppositeIdUrl: data.data.oppositeIdUrl,
-                        //positiveIdUrl: data.data.positiveIdUrl,
-                        auditStatus: data.data.auditStatus
-                    })
-                };
-            }.bind(this),
-        }).done(function (data) {
-            if (data.error.length) {
-                message.warning(data.error[0].message);
-            }
-        }.bind(this)).always(function () {
-            this.props.spinState(false);
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-        };
-    },
-    componentDidMount() {
-        this.getData();
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/userIndentity",
-                    data: {
-                        "id": this.state.id,
-                        "username": values.username,
-                        "sex": values.sex,
-                        "dateOfBirthYear": values.birth ? values.birth._d.getFullYear() : undefined,
-                        "dateOfBirthMonth": values.birth ? values.birth._d.getMonth() + 1 : undefined,
-                        "idNumber": values.idcardnum,
-                        //"positiveIdUrl": this.state.positiveIdUrl,
-                        //"oppositeIdUrl": this.state.positiveIdUrl
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.getData();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    checkIdcardnum(rule, value, callback) {
-        if (!/(^\d{15}$)|(^\d{17}(\d|X)$)/.test(value)) {
-            callback('请输入正确的身份证号!');
-        } else {
-            callback();
-        }
-    },
-    urlData1(e) {
-        this.state.oppositeIdUrl = e;
-    },
-    urlData2(e) {
-        this.state.positiveIdUrl = e;
-    },
-    render() {
-        const { getFieldDecorator } = this.props.form;
-        const formItemLayout = {
-            labelCol: { span: 4 },
-            wrapperCol: { span: 12 },
-        };
-        return (
-            <Form horizontal onSubmit={this.handleSubmit} className="base-form">
-                <FormItem
-                    {...formItemLayout}
-                    label="姓名"
-                >
-                    {getFieldDecorator('username', {
-                        initialValue: this.state.username || null
-                    })(
-                        this.state.auditStatus == 5 ? <span>{this.state.username}</span> : <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="性别"
-                >
-                    {getFieldDecorator('sex', {
-                        initialValue: this.state.sex || null
-                    })(
-                        <RadioGroup>
-                            <Radio value="男">男</Radio>
-                            <Radio value="女">女</Radio>
-                        </RadioGroup>
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="出生日期"
-                >
-                    {getFieldDecorator('birth', {
-                        initialValue: !this.state.birth ? null : moment(this.state.birth, 'YYYY/MM')
-                    })(
-                        <MonthPicker />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="身份证号"
-                >
-                    {getFieldDecorator('idcardnum', {
-                        initialValue: this.state.idnumber || null
-                    })(
-                        this.state.auditStatus == 5 ? <span>{this.state.idnumber}</span> : <Input />
-                        )}
-                </FormItem>
-                <FormItem wrapperCol={{ span: 12, offset: 4 }}>
-                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
-                </FormItem>
-            </Form >
-        );
-    },
-}));
-
-const Base = 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-base">
-                    <div className="acc-detail">
-                        <p className="acc-title">您登录的账号</p>
-                        <p>阿凡提号: <span>{userData.number || undefined}</span></p>
-                        <p>登录手机号: <span>{userData.mobile || undefined}</span></p>
-                        <p>认证状态: <span>{userData.lvl == '1' ? <span>已认证</span> : <span>未认证 <a href={globalConfig.context + '/user/certify'}> 马上认证</a></span>}</span></p>
-                        <div className="clearfix">
-                            <ChangeMobile />
-                            <ChangePw />
-                        </div>
-                    </div>
-                    <div className="acc-bind" style={{ 'display': 'none' }}>
-                        <p className="acc-title">绑定账号 <span>绑定后,可使用第三方账号直接登录阿凡提网</span></p>
-                        <p>
-                            <Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button>
-                            <Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button>
-                            <Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button>
-                        </p>
-                    </div>
-                    <div className="acc-info">
-                        <p className="acc-title">身份信息 <span>提供正确的身份信息,有助于进行身份验证,提升信用形象</span></p>
-                        <BaseFrom spinState={this.spinChange} />
-                    </div>
-                </div>
-            </Spin>
-        )
-    }
-});
-
-export default Base;
-
-
-// <FormItem wrapperCol={{ span: 21, offset: 4 }}>
-//     <p>请上传清晰的个人身份证正反面原件照片/扫描件 (不能截图、图片内容要求完整 ),</p>
-//     <p>要求2M 以下的jpg、jpeg、gif、png格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
-// </FormItem>
-//     <FormItem
-//         {...formItemLayout}
-//         label="身份证正面"
-//     >
-//         {getFieldDecorator('oppositeIdUrl')(
-//             <Avatar name="oppositeIdUrl" urlData={this.urlData1} />
-//         )}
-//         <p>{
-//             this.state.oppositeIdUrl !== "" && this.state.oppositeIdUrl !== undefined && this.state.oppositeIdUrl !== null ?
-//                 <span><Icon style={{ 'color': '#79b5ff', 'fontSize': '14px', 'margin': '0 6px' }} type="check-circle" />已上传</span> :
-//                 <span><Icon style={{ 'color': '#fa0', 'fontSize': '14px', 'margin': '0 6px' }} type="exclamation-circle" /><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</span>
-//         }
-//         </p>
-//     </FormItem>
-//     <FormItem
-//         {...formItemLayout}
-//         label="身份证反面"
-//     >
-//         {getFieldDecorator('positiveIdUrl')(
-//             <Avatar name="positiveIdUrl" urlData={this.urlData2} />
-//         )}
-//         <p>{
-//             this.state.positiveIdUrl !== "" && this.state.positiveIdUrl !== undefined && this.state.positiveIdUrl !== null ?
-//                 <span><Icon style={{ 'color': '#79b5ff', 'fontSize': '14px', 'margin': '0 6px' }} type="check-circle" />已上传</span> :
-//                 <span><Icon style={{ 'color': '#fa0', 'fontSize': '14px', 'margin': '0 6px' }} type="exclamation-circle" /><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</span>
-//         }
-//         </p>
-//     </FormItem>
-//     <FormItem wrapperCol={{ span: 21, offset: 4 }}>
-//         <p className="acc-title">示例</p>
-//         <div className="idcard-img clearfix">
-//             <div>
-//                 <div className="idcard-imgbox">
-//                     <img src={card1} alt="" />
-//                 </div>
-//             </div>
-//             <div>
-//                 <div className="idcard-imgbox">
-//                     <img src={card2} alt="" />
-//                 </div>
-//             </div>
-//         </div>
-//     </FormItem>

+ 0 - 126
js/component/account/set/base.less

@@ -1,126 +0,0 @@
-.set-base {
-    .acc-title {
-        color: #333;
-        font-size: 16px;
-        margin-bottom: 10px;
-        span {
-            font-size: 12px;
-            color: #999;
-            margin-left: 10px;
-        }
-    }
-    .acc-detail {
-        background: #fff;
-        padding: 20px;
-        border-bottom: 1px solid #d8d8d8;
-        p {
-            line-height: 24px;
-            span {
-                color: #333;
-            }
-        }
-        div {
-            margin-top: 16px;
-            button {
-                margin-right: 20px;
-                border-radius: 4px;
-            }
-        }
-    }
-    .acc-bind {
-        background: #fff;
-        padding: 20px;
-        margin-bottom: 20px;
-        p {
-            button {
-                border: none;
-                border-radius: 4px;
-                margin-right: 20px;
-                img {
-                    height: 20px;
-                    vertical-align: middle;
-                }
-                span {
-                    color: #fff;
-                }
-            }
-            .relateweixin {
-                background: #12d41e;
-            }
-            .relateqq {
-                background: #3073c1;
-            }
-            .relateweibo {
-                background: #cf331d;
-            }
-        }
-    }
-    .acc-info {
-        background: #fff;
-        padding: 20px;
-        .base-form {
-            width: 580px;
-            .ant-form-item {
-                p {
-                    color: #333;
-                }
-                .ant-form-item-label {
-                    text-align: left;
-                }
-                .set-submit {
-                    width: 120px;
-                    border-radius: 4px;
-                }
-                .idcard-img {
-                    >div {
-                        float: left;
-                        padding: 20px;
-                        border: 1px solid #c9c9c9;
-                        margin-right: 20px;
-                        >.idcard-imgbox {
-                            width: 142px;
-                            height: 90px;
-                            padding-top: 90px;
-                            position: relative;
-                            img {
-                                width: 142px;
-                                height: 90px;
-                                position: absolute;
-                                top: 0;
-                                left: 0;
-                                border: 1px solid #c9c9c9;
-                                border-radius: 6px;
-                            }
-                        }
-                    }
-                }
-            }
-            .avatar-uploader,
-            .avatar-uploader-trigger,
-            .avatar {
-                width: 150px;
-                height: 150px;
-            }
-            .avatar-uploader {
-                display: block;
-                padding:1px;
-                border: 1px dashed #d9d9d9;
-                border-radius: 6px;
-                cursor: pointer;
-                position: relative;
-                img {
-                    position: absolute;
-                    top: -1px;
-                    left: -1px;
-                    height: 150px;
-                }
-            }
-            .avatar-uploader-trigger {
-                display: table-cell;
-                vertical-align: middle;
-                font-size: 28px;
-                color: #999;
-            }
-        }
-    }
-}

+ 0 - 151
js/component/account/set/changeMobile.jsx

@@ -1,151 +0,0 @@
-import React from 'react';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-import { Modal, Button, Icon, Input, message } from 'antd';
-import './changeModal.less';
-
-const ChangePw = React.createClass({
-    getInitialState() {
-        return {
-            visible: false,
-            getCodeButton: false,
-            checkMobile: false,
-            vsCodeSrc: globalConfig.context + '/open/getVCode',
-            mCodeText: '获取验证码'
-        };
-    },
-    showModal() {
-        this.setState({
-            visible: true,
-        });
-    },
-    handleOk() {
-        if (!this.state.checkMobile) {
-            message.warning('请输入正确的手机号码!');
-        } else if (this.state.checkMobile) {
-            $.ajax({
-                method: "POST",
-                dataType: "json",
-                crossDomain: false,
-                url: globalConfig.context + "/api/user/mobile",
-                data: {
-                    "mobile": this.state.mobile,
-                    "mobileCode": this.state.mcode
-                }
-            }).done(function (data) {
-                if (!data.error.length) {
-                    this.setState({
-                        visible: false,
-                    });
-                    message.success('修改成功!3秒后跳转到登录页面,请重新登录!');
-                    setInterval(function () {
-                        $.ajax({
-                            method: "get",
-                            dataType: "json",
-                            url: globalConfig.context + "/login",
-                        }).done(function (data) {
-                            window.location.href = globalConfig.context + "/user/login.html"
-                        });
-                        clearInterval(interval);
-                    }, 3000);
-                } else {
-                    message.warning(data.error[0].message);
-                };
-            }.bind(this));
-        };
-    },
-    handleCancel(e) {
-        this.setState({
-            visible: false,
-        });
-    },
-    reloadVCode() {
-        this.setState({
-            vsCodeSrc: globalConfig.context + '/open/getVCode?t=' + Math.random()
-        });
-    },
-    newMobileChange(e) {
-        this.state.mobile = e.target.value;
-        if (/^1[34578]\d{9}$/.test(this.state.mobile)) {
-            this.state.checkMobile = true
-        }
-    },
-    mcodeChange(e) {
-        this.state.mcode = e.target.value;
-    },
-    getMCode() {
-        if (!this.state.checkMobile) {
-            message.warning('请输入正确的手机号码!');
-        } else if (this.state.checkMobile) {
-            $.ajax({
-                method: "get",
-                dataType: "json",
-                url: globalConfig.context + "/open/getMCode",
-                data: {
-                    "mobile": this.state.mobile,
-                    "verificationCode": this.state.Vcode
-                },
-                success: function (data) {
-                    let _me = this;
-                    if (data.error && data.error.length) {
-                        message.warning(data.error[0].message);
-                        this.reloadVCode();
-                    } else {
-                        message.success('验证码发送成功!');
-                        this.setState({
-                            getCodeButton: true
-                        });
-                        let interval = setInterval(function () {
-                            _me.setState({
-                                getCodeButton: false
-                            });
-                            clearInterval(interval);
-                        }, 60000);
-                    };
-                    let i = 59;
-                    let countDown = setInterval(function () {
-                        _me.setState({
-                            mCodeText: '剩余' + i + '秒'
-                        });
-                        i--;
-                        if (i == 0) {
-                            clearInterval(countDown);
-                            _me.setState({
-                                mCodeText: '获取验证码'
-                            });
-                        };
-                    }, 1000);
-                    this.reloadVCode();
-                }.bind(this),
-            });
-        }
-    },
-    render() {
-        return (
-            <div style={{ 'float': 'left', 'marginTop': '0' }}>
-                <Button type="ghost" onClick={this.showModal}>更换手机</Button>
-                <Modal maskClosable={false} className="change-modal" title="更换手机号码" visible={this.state.visible}
-                    onOk={this.handleOk} onCancel={this.handleCancel}
-                    width={360}
-                    footer={[
-                        <Button key="submit" type="primary" size="large" loading={this.state.loading} onClick={this.handleOk}>确认</Button>,
-                        <Button key="back" type="ghost" size="large" onClick={this.handleCancel}>取消</Button>
-                    ]}
-                >
-                    <div><span>新手机号码:</span><Input onChange={this.newMobileChange} /></div>
-                    <div>
-                        <span>图形验证码:</span>
-                        <Input className="mixwidth" onChange={(e) => { this.state.Vcode = e.target.value; }} />
-                        <span className="getVcode">
-                            <img id="VCode" src={this.state.vsCodeSrc} alt="点击刷新验证码" onClick={this.reloadVCode} />
-                        </span>
-                    </div>
-                    <div><span>手机验证码:</span><Input className="mixwidth" onChange={this.mcodeChange} />
-                        <Button style={{width:'92px'}} onClick={this.getMCode} disabled={this.state.getCodeButton}>{this.state.mCodeText}</Button></div>
-                </Modal>
-            </div>
-        );
-    },
-});
-
-export default ChangePw;

+ 0 - 55
js/component/account/set/changeModal.less

@@ -1,55 +0,0 @@
-.change-modal {
-    .ant-modal-close {
-        span {
-            color: #fff;
-        }
-    }
-    .ant-modal-header {
-        //background: #000;
-        //color: #fff;
-        font-size: 18px;
-    }
-    .ant-modal-body {
-        padding: 20px;
-        padding-bottom: 10px;
-        >div {
-            margin-bottom: 10px;
-            >span {
-                text-align: right;
-                padding-right: 6px;
-                display: inline-block;
-                width: 25%;
-            }
-            input {
-                width: 70%;
-            }
-            .mixwidth {
-                width: 38%;
-                margin-right: 10px;
-            }
-        }
-        .modal-intro {
-            text-align: center;
-            i {
-                font-size: 15px;
-                color: #79b5ff;
-                margin-right: 6px;
-            }
-        }
-        .getVcode {
-            height: 28px;
-            width: 92px;
-            padding-top: 28px;
-            position: relative;
-            overflow: hidden;
-            vertical-align: top;
-            img {
-                position: absolute;
-                top: 0;
-                left: 0;
-                width: 100%;
-                height: 28px;
-            }
-        }
-    }
-}

+ 0 - 89
js/component/account/set/changePassword.jsx

@@ -1,89 +0,0 @@
-import React from 'react';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-import { Modal, Button, Icon, Input, message } from 'antd';
-import './changeModal.less';
-
-const ChangePw = React.createClass({
-    getInitialState() {
-        return { visible: false };
-    },
-    showModal() {
-        this.setState({
-            visible: true,
-        });
-    },
-    logOut() {
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/login",
-        }).done(function (data) {
-            window.location.href = globalConfig.context + "/user/login.html"
-        });
-    },
-    handleOk() {
-        if (this.state.newPw.length < 6 || this.state.newPw.length > 20) {
-            message.warning('请使用长度为6-20位的密码!');
-        } else if (this.state.confirmPw !== this.state.newPw) {
-            message.warning('两次密码输入不相同!');
-        } else if (this.state.confirmPw === this.state.newPw) {
-            $.ajax({
-                method: "POST",
-                dataType: "json",
-                crossDomain: false,
-                url: globalConfig.context + "/api/user/pwd",
-                data: {
-                    "password": this.state.oldPw,
-                    "newPassword": this.state.newPw
-                }
-            }).done(function (data) {
-                if (!data.error.length) {
-                    message.success('修改成功!');
-                    this.setState({
-                        visible: false,
-                    });
-                    this.logOut();
-                } else {
-                    message.warning(data.error[0].message);
-                }
-            }.bind(this));
-        };
-    },
-    handleCancel(e) {
-        this.setState({
-            visible: false,
-        });
-    },
-    oldPwChange(e) {
-        this.state.oldPw = e.target.value;
-    },
-    newPwChange(e) {
-        this.state.newPw = e.target.value;
-    },
-    confirmPwChange(e) {
-        this.state.confirmPw = e.target.value;
-    },
-    render() {
-        return (
-            <div style={{ 'float': 'left', 'marginTop': '0' }}>
-                <Button type="primary" onClick={this.showModal}>修改密码</Button>
-                <Modal maskClosable={false} className="change-modal" title="设置新密码" visible={this.state.visible}
-                    onOk={this.handleOk} onCancel={this.handleCancel}
-                    width={360}
-                    footer={[
-                        <Button key="submit" type="primary" size="large" loading={this.state.loading} onClick={this.handleOk}>确认</Button>,
-                        <Button key="back" type="ghost" size="large" onClick={this.handleCancel}>取消</Button>
-                    ]}
-                >
-                    <p className="modal-intro"><Icon type="info-circle" />密码长度为6-20个字符,区分大小写</p>
-                    <p><span>原密码:</span><Input type="password" onChange={this.oldPwChange} /></p>
-                    <p><span>新密码:</span><Input type="password" onChange={this.newPwChange} /></p>
-                    <p><span>确认密码:</span><Input type="password" onChange={this.confirmPwChange} /></p>
-                </Modal>
-            </div>
-        );
-    },
-});
-
-export default ChangePw;

+ 0 - 607
js/component/account/set/company.jsx

@@ -1,607 +0,0 @@
-import React from 'react';
-import { Input, Button, Form, Select, Upload, Icon, Spin, message, InputNumber, Modal, Cascader } from 'antd';
-import './person.less';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-
-import { areaSelect } from '../../NewDicProvinceList';
-import { splitUrl, getBase64, beforeUpload } from '../../tools.js';
-import { eduLevelList, zizhiArr, schoolArr ,mechanism} from '../../dataDic.js';
-
-class Avatar extends React.Component {
-    constructor(props) {
-        super(props);
-        this.state = {
-            imageUrl: '',
-            propsbool: true,
-        }
-    }
-    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);
-        }
-    }
-    componentWillReceiveProps(nextProps) {
-        if (nextProps.logoUrl && this.state.propsbool) {
-            this.state.imageUrl = globalConfig.avatarHost + "/upload" + nextProps.logoUrl;
-            this.state.propsbool = false;
-        }
-    }
-    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.bind(this)}
-                    onChange={this.handleChange.bind(this)}
-                >
-                    {fileList.length >= 9 ? null : uploadButton}
-                </Upload>
-                <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel.bind(this)}>
-                    <img alt="" 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) {
-                    let theArr = splitUrl(data.data.info.publicityPictureUrl, ',', globalConfig.avatarHost + '/upload');
-                    let comp=data.data.info.companyType;
-                    let pantt;
-                    switch(comp){
-							case 0:
-								pantt='待定';
-								break;
-							case 1:
-								pantt='投资机构';			
-								break;							
-					};
-                    this.setState({
-                        iid: data.data.info.id,
-                        pid: data.data.pro.id,
-                        province: [data.data.info.locationProvince, data.data.info.locationCity, data.data.info.locationArea],
-                        idttType: data.data.info.identityType,
-                        companyt: pantt,
-                        unitName: data.data.info.companyName,
-                        unitNumber: data.data.info.unitSize,
-                        unitIntro: data.data.info.companyIntroduction,
-                        unitFrom: data.data.info.homeUnit,
-                        logoUrl: data.data.info.logoUrl,
-                        publicityPictureUrl: data.data.info.publicityPictureUrl,
-                        companyLifePicList: 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
-                    });
-                    this.idttTypeChange(data.data.info.identityType);
-                };
-            }.bind(this),
-        }).always(function () {
-            this.props.spinState(false);
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-            loading: false,
-            idttType: '企业',
-            companyt:'待定',
-            companyDis: 'block',
-            schoolDis: 'none',
-            resDis: 'none',
-            companyLifePicObj: [],
-            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 lifePhotoUrl = this.state.publicityPictureUrl;
-            if (this.state.companyLifePicObj.length) {
-                let leftPicArr = [];
-                this.state.companyLifePicObj.map(function (item) {
-                    if ( item.response && item.response.data && item.response.data.length ){
-                        leftPicArr.push(item.response.data);
-                    }
-                });
-                lifePhotoUrl = leftPicArr.join(",");
-            };
-            if (!err) {
-                this.props.spinState(true);
-                let ktt=values.companyType;
-                let sktt;
-                switch(ktt){
-					case '待定':
-						sktt='0';
-						break;
-					case '投资机构':
-						sktt='1';			
-						break;							
-				};
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/orgPro",
-                    data: {
-                        "iid": this.state.iid,
-                        "pid": this.state.pid,
-                        "identityType": values.identityType,
-                        "companyType":sktt,
-                        "companyName": values.unitName,
-                        "locationProvince": values.province[0],
-                        "locationCity": values.province[1],
-                        "locationArea": values.province[2],
-                        "unitSize": values.unitNumber,
-                        "companyIntroduction": values.unitIntro,
-                        "homeUnit": values.unitFrom,
-                        "logoUrl": this.state.companyLogoUrl,
-                        "publicityPictureUrl": lifePhotoUrl,
-                        "qualification": values.qiyezizhi,
-                        "turnover": values.turnover,
-                        "collegeAttribute": values.schoolProp,
-                        "collegeEstablishTime": values.schoolTime,
-                        "academician": values.aca,
-                        "doctoralTutor": values.PhDTutor,
-                        "masterTutor": values.MSTutor,
-                        "otherExpert": values.otherExperts,
-                        "nationalLab": values.StateKeyLab,
-                        "educationLab": values.EduKeyLab,
-                        "enterpriseCenter": values.ComCenter,
-                        "otherCenter": values.otherCenter,
-                        "institutionEstablishTime": values.resTime
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.getData();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    idttTypeChange(e) {
-        if (e === '企业') {
-            this.setState({
-                companyDis: 'block',
-                schoolDis: 'none',
-                companys:'block',
-                resDis: 'none'
-            });
-        } else if (e === '院校') {
-            this.setState({
-                companyDis: 'none',
-                schoolDis: 'block',
-                companys:'none',
-                resDis: 'none'
-            });
-        } else if (e === '研究机构') {
-            this.setState({
-                companyDis: 'none',
-                schoolDis: 'none',
-                companys:'none',
-                resDis: 'block'
-            });
-        } else {
-            this.setState({
-                companyDis: 'none',
-                schoolDis: 'none',
-                companys:'none',
-                resDis: 'none'
-            });
-        }
-    },
-    downloadPic(type) {
-        window.open(globalConfig.context + "/open/downLoadPicture?path=" + type)
-    },
-    companyLogoUrl(e) {
-        this.state.companyLogoUrl = e;
-    },
-    companyLifePicUrl(e) {
-        this.state.companyLifePicObj = e;
-    },
-    componentWillMount() {
-        this.getData();
-    },
-    render() {
-        const FormItem = Form.Item;
-        const Option = Select.Option;
-        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}>
-                            {
-                                eduLevelList.map(function (item) {
-                                    return <Option key={item.key} >{item.key}</Option>
-                                })
-                            }
-                        </Select>
-                        )}
-                </FormItem>
-                 <FormItem style={{ 'display': this.state.companys}}
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 8 }}
-                    label="企业类型"
-                >
-                    {getFieldDecorator('companyType', {
-                        initialValue: this.state.companyt
-                    })(
-                        <Select className="acc-edu-lvl">
-                            {
-                                mechanism.map(function (item) {
-                                    return <Option key={item.key} >{item.key}</Option>
-                                })
-                            }
-                        </Select>
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="单位名称"
-                >
-                    {getFieldDecorator('unitName', {
-                        initialValue: this.state.unitName
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="所在地"
-                >
-                    {getFieldDecorator('province', {
-                        initialValue: this.state.province || []
-                    })(
-                        <Cascader options={areaSelect()} placeholder="请选择所在地" />
-                        )}
-                </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('unitIntro') && _me.props.form.getFieldValue('unitIntro').length) {
-                                return 1000 - _me.props.form.getFieldValue('unitIntro').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.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 || 0
-                    })(
-                        <InputNumber />
-                        )}
-                    <span>年</span>
-                </FormItem>
-                <div className="school-props clearfix" style={{ 'display': this.state.schoolDis }}>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="院士"
-                    >
-                        {getFieldDecorator('aca', {
-                            initialValue: this.state.aca || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>人</span>
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="博士生导师"
-                    >
-                        {getFieldDecorator('PhDTutor', {
-                            initialValue: this.state.PhDTutor || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>人</span>
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="硕士生导师"
-                    >
-                        {getFieldDecorator('MSTutor', {
-                            initialValue: this.state.MSTutor || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>人</span>
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="其他专家"
-                    >
-                        {getFieldDecorator('otherExperts', {
-                            initialValue: this.state.otherExperts || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>人</span>
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="国家级重点实验室"
-                    >
-                        {getFieldDecorator('StateKeyLab', {
-                            initialValue: this.state.StateKeyLab || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>所</span>
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="教育部重点实验室"
-                    >
-                        {getFieldDecorator('EduKeyLab', {
-                            initialValue: this.state.EduKeyLab || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>所</span>
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="企业共建研究中心"
-                    >
-                        {getFieldDecorator('ComCenter', {
-                            initialValue: this.state.ComCenter || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>所</span>
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 10 }}
-                        wrapperCol={{ span: 12 }}
-                        label="其他研究中心"
-                    >
-                        {getFieldDecorator('otherCenter', {
-                            initialValue: this.state.otherCenter || 0
-                        })(
-                            <InputNumber />
-                            )}
-                        <span>所</span>
-                    </FormItem>
-                </div>
-                <FormItem style={{ 'display': this.state.resDis }}
-                    {...formItemLayout}
-                    label="创办时间"
-                >
-                    {getFieldDecorator('resTime', {
-                        initialValue: this.state.resTime || 0
-                    })(
-                        <InputNumber />
-                        )}
-                    <span>年</span>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="LOGO"
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 20 }}
-                >
-                    {getFieldDecorator('avatar')(
-                        <Avatar name="companyLogo" urlData={this.companyLogoUrl} logoUrl={this.state.logoUrl} />
-                    )}
-                </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.companyLifePicList} />
-                    )}
-                </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;

+ 0 - 37
js/component/account/set/content.jsx

@@ -1,37 +0,0 @@
-import React from 'react';
-import '../content.less';
-import GroupLeftTab from './leftTabgroup.jsx';
-
-import Base from './base.jsx';
-import Group from './group.jsx';
-import Person from './person.jsx';
-import Company from './company.jsx';
-import Edu from './edu.jsx';
-import Tech from './tech.jsx';
-import Pfs from './pfs.jsx';
-import Ablt from './ablt.jsx';
-import HrSituation from './hrSituation.jsx';
-//新开发账户管理
-import Account from './newAccount/account';
-import Unit from './newAccount/unit';
-import Personal from './newAccount/personal';
-import Contacts from './newAccount/contacts';
-import {hashHistory,Route,Router,IndexRedirect} from 'react-router';
-import {Layout} from 'antd';
-
-const { Content } = Layout
-
-export default class ContentRouter extends React.Component {
-  render() {
-    return (
-      <Content className="acc-content" id="content">
-        <Router history={hashHistory}>
-            <Route path="/account" component={Account} />
-            <Route path="/unit" component={Unit} />
-            <Route path="/personal" component={Personal} />
-            <Route path="/contacts" component={Contacts} />
-        </Router>
-      </Content>
-    )
-  }
-}

+ 0 - 277
js/component/account/set/edu.jsx

@@ -1,277 +0,0 @@
-import React from 'react';
-import { Input, Button, Form, Select, Upload, Icon, Spin, message, Cascader } from 'antd';
-import './edu.less';
-import { edulvlArr } from '../../dataDic.js';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-
-import { techFieldList } from '../../DicTechFieldList';
-import { getBase64, beforeUpload } from '../../tools'
-import YearSelect from '../../yearSelect.jsx';
-
-const FormItem = Form.Item;
-const Option = Select.Option;
-
-
-class Avatar extends React.Component {
-    constructor(props) {
-        super(props);
-        this.state = {
-            imageUrl: '',
-            propsbool: true,
-        }
-    }
-    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);
-        }
-    }
-    componentWillReceiveProps (nextProps) {
-        if (nextProps.picUrl && this.state.propsbool) {
-            this.state.imageUrl = globalConfig.context + "/open/downLoadPicture?path=" + nextProps.picUrl;
-            this.state.propsbool = false;
-        }
-    }
-    render () {
-        const imageUrl = this.state.imageUrl;
-        return (
-            <Upload
-                className="avatar-uploader"
-                name="avatar"
-                showUploadList={false}
-                action={globalConfig.context + "/api/user/identity/upload"}
-                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>
-        );
-    }
-};
-
-const EduFrom = Form.create()(React.createClass({
-    getData () {
-        this.props.spinState(true);
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/api/user/educate",
-            success: function (data) {
-                if (data.error && data.error.length) {
-                    message.warning(data.error[0].message);
-                } else {
-                    if (data.data) {
-                        this.setState({
-                            id: data.data.id,
-                            edulvl: data.data.education,
-                            eduPfs: data.data.majorCategory ? data.data.majorCategory.split(',') : [],
-                            schoolname: data.data.graduateSchool,
-                            graduationTimeYear: data.data.graduationTimeYear,
-                            edunum: data.data.diplomaCode,
-                            degreenum: data.data.degreeCode,
-                            xueliPicUrl: data.data.diplomaUrl,
-                            xueweiPicUrl: data.data.degreeDiplomaUrl
-                        });
-                    };
-                };
-            }.bind(this),
-        }).always(function () {
-            this.props.spinState(false);
-        }.bind(this));
-    },
-    getInitialState () {
-        return {
-            loading: false,
-            xueweiPicUrl: '',
-            xueliPicUrl: '',
-            eduPfs: []
-        };
-    },
-    componentDidMount () {
-        this.getData();
-    },
-    handleSubmit (e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/userEdu",
-                    data: {
-                        "id": this.state.id,
-                        "education": values.edulvl,
-                        "majorCategory": values.eduPfs.join(','),
-                        "graduateSchool": values.schoolname,
-                        "graduationTimeYear": this.state.graduationTimeYear,
-                        "diplomaUrl": this.state.xueliPicUrl,
-                        "diplomaCode": values.edunum,
-                        "degreeDiplomaUrl": this.state.xueweiPicUrl,
-                        "degreeCode": values.degreenum
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.getData();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    downloadPic (type) {
-        window.open(globalConfig.context + "/open/downLoadPicture?path=" + type)
-    },
-    handleyear (e) {
-        this.state.graduationTimeYear = e;
-    },
-    xueliPicUrl (e) {
-        this.state.xueliPicUrl = e;
-    },
-    xueweiPicUrl (e) {
-        this.state.xueweiPicUrl = e;
-    },
-    render () {
-        const { getFieldDecorator } = this.props.form;
-        const formItemLayout = {
-            labelCol: { span: 4 },
-            wrapperCol: { span: 12 },
-        };
-        const _me = this;
-        return (
-            <Form horizontal onSubmit={this.handleSubmit} className="edu-form">
-                <FormItem
-                    labelCol={{ span: 4 }}
-                    wrapperCol={{ span: 6 }}
-                    label="学历"
-                >
-                    {getFieldDecorator('edulvl', {
-                        initialValue: this.state.edulvl || null
-                    })(
-                        <Select className="acc-edu-lvl">
-                            {
-                                edulvlArr.map(function (item, i) {
-                                    return <Option key={i} value={item} >{item}</Option>
-                                })
-                            }
-                        </Select>
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="专业领域"
-                >
-                    {getFieldDecorator('eduPfs', {
-                        initialValue: this.state.eduPfs || []
-                    })(
-                        <Cascader placeholder="请选择专业领域" options={techFieldList} style={{ width: 300 }} />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="毕业学校"
-                >
-                    {getFieldDecorator('schoolname', {
-                        initialValue: this.state.schoolname || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    labelCol={{ span: 4 }}
-                    wrapperCol={{ span: 4 }}
-                    label="毕业时间"
-                >
-                    {getFieldDecorator('graduationTimeYear')(
-                        <YearSelect defValue={this.state.graduationTimeYear || null} handleyear={this.handleyear} />
-                    )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="学历证书"
-                >
-                    {getFieldDecorator('xueliPic')(
-                        <Avatar name="xueliPic" urlData={this.xueliPicUrl} picUrl={this.state.xueliPicUrl} />
-                    )}
-                    <p>{this.state.xueliPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.xueliPicUrl)}>下载证书</Button> : ""}</p>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="学历证书编号"
-                >
-                    {getFieldDecorator('edunum', {
-                        initialValue: this.state.edunum || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="学位证书"
-                    hasFeedback
-                >
-                    {getFieldDecorator('xueweiPic')(
-                        <Avatar name="xueweiPic" urlData={this.xueweiPicUrl} picUrl={this.state.xueweiPicUrl} />
-                    )}
-                    <p>{this.state.xueweiPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.xueweiPicUrl)}>下载证书</Button> : ""}</p>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="学位证书编号"
-                >
-                    {getFieldDecorator('degreenum', {
-                        initialValue: this.state.degreenum || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <div className="set-explain">
-                    <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
-                </div>
-                <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-edu">
-                    <div className="acc-detail">
-                        <p className="acc-title">最高学历</p>
-                        <EduFrom spinState={this.spinChange} />
-                    </div>
-                </div>
-            </Spin>
-        )
-    }
-});
-
-export default Person;

+ 0 - 53
js/component/account/set/edu.less

@@ -1,53 +0,0 @@
-.set-edu {
-    background: #fff;
-    padding: 20px;
-    .acc-title {
-        color: #333;
-        font-size: 16px;
-        margin-bottom: 10px;
-        span {
-            font-size: 12px;
-            color: #999;
-            margin-left: 10px;
-        }
-    }
-    .edu-form {
-        width: 600px;
-        .set-explain {
-            margin-left: 12.5%;
-            margin-bottom: 20px;
-        }
-        .set-submit {
-            width: 120px;
-            border-radius: 4px;
-        }
-        .ant-form-item-label {
-            text-align: left;
-        }
-    }
-    .avatar-uploader,
-    .avatar-uploader-trigger,
-    .avatar {
-        width: 150px;
-        height: 150px;
-    }
-    .avatar-uploader {
-        display: block;
-        border: 1px dashed #d9d9d9;
-        border-radius: 6px;
-        cursor: pointer;
-        position: relative;
-        img {
-            position: absolute;
-            top: -1px;
-            left: -1px;
-            height: 150px;
-        }
-    }
-    .avatar-uploader-trigger {
-        display: table-cell;
-        vertical-align: middle;
-        font-size: 28px;
-        color: #999;
-    }
-}

+ 0 - 31
js/component/account/set/eduPfsSelect.jsx

@@ -1,31 +0,0 @@
-import React from 'react';
-import { Cascader } from 'antd';
-import { eduPfsList } from '../../DicPfsList.js';
-
-const eduPfsSelect = React.createClass({
-    getInitialState() {
-        return {
-            value: [],
-            propsbool: true
-        }
-    },
-    onChange(v, s) {
-        this.setState({
-            value: v
-        })
-        this.props.Professional(v[0], v[1]);
-    },
-    componentWillReceiveProps(nextProps) {
-        if (nextProps.defValue && this.state.propsbool) {
-            this.state.value = nextProps.defValue;
-            this.state.propsbool = false;
-        };
-    },
-    render() {
-        return (
-            <Cascader value={this.state.value} options={eduPfsList} onChange={this.onChange} />
-        )
-    }
-});
-
-export default eduPfsSelect;

+ 0 - 306
js/component/account/set/group.jsx

@@ -1,306 +0,0 @@
-import React from 'react';
-import { Input, Button, Form, Icon, Spin, message } from 'antd';
-import './base.less';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-import ChangePw from './changePassword.jsx';
-
-const FormItem = Form.Item;
-
-import weixin from '../../../../image/weixin-w.png';
-import qq from '../../../../image/qq-w.png';
-import weibo from '../../../../image/weibo-w.png';
-
-
-const BaseFrom = Form.create()(React.createClass({
-    getData() {
-        this.props.spinState(true);
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/api/user/base",
-            success: function (data) {
-                if (data.data) {
-                    this.setState({
-                        id:data.data.id,
-                        fixedTel: data.data.fixedTel,
-                        firstContacts: data.data.firstContacts,
-                        firstMobile: data.data.firstMobile,
-                        secondContacts: data.data.secondContacts,
-                        secondMobile: data.data.secondMobile,
-                        thirdContacts: data.data.thirdContacts,
-                        thirdMobile: data.data.thirdMobile,
-                        qq: data.data.qq,
-                        address: data.data.postalAddress,
-                        postcode: data.data.postcode,
-                        legalPerson: data.data.legalPerson,
-                        email: data.data.email,
-                    });
-                };
-            }.bind(this),
-        }).done(function (data) {
-            if (data.error.length) {
-                message.warning(data.error[0].message);
-            }
-        }.bind(this)).always(function () {
-            this.props.spinState(false);
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-        };
-    },
-    componentWillMount() {
-        this.getData();
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/orgIdentity",
-                    data: {
-                        "id":this.state.id,
-                        "firstContacts": values.firstContacts,
-                        "firstMobile": values.firstMobile,
-                        "secondContacts": values.secondContacts,
-                        "secondMobile": values.secondMobile,
-                        "thirdContacts": values.thirdContacts,
-                        "thirdMobile": values.thirdMobile,
-                        "email": values.email,
-                        "fixedTel": values.telephone,
-                        "qq": values.qq,
-                        "postalAddress": values.address,
-                        "postcode": values.postcode,
-                        "moblie": values.moblie,
-                        "legalPerson": values.legalPerson
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.getData();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    checkidNum(rule, value, callback) {
-        const form = this.props.form;
-        if (value && value !== form.getFieldValue('password')) {
-            callback('Two passwords that you enter is inconsistent!');
-        } else {
-            callback();
-        }
-    },
-    checkUpload(file) {
-        const isJPG = file.type === 'image/jpeg';
-        if (!isJPG) {
-            callback('You can only upload JPG file!');
-        }
-        const isLt2M = file.size / 1024 / 1024 < 2;
-        if (!isLt2M) {
-            callback('Image must smaller than 2MB!');
-        }
-        return isJPG && isLt2M;
-    },
-    checkPhone(rule, value, callback) {
-        const form = this.props.form;
-        if (value && value.length !== 0 && !(/^1[34578]\d{9}$/.test(value))) {
-            callback('请输入正确的手机号码!');
-        } else {
-            callback();
-        }
-    },
-    render() {
-
-        const { getFieldDecorator } = this.props.form;
-        const formItemLayout = {
-            labelCol: { span: 4 },
-            wrapperCol: { span: 12 },
-        };
-        return (
-            <Form horizontal onSubmit={this.handleSubmit} className="base-form">
-                <FormItem
-                    {...formItemLayout}
-                    label='第一联系人'
-                >
-                    {getFieldDecorator('firstContacts', {
-                        initialValue: this.state.firstContacts,
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="手机号码"
-                >
-                    {getFieldDecorator('firstMobile', {
-                        initialValue: this.state.firstMobile,
-                        rules: [
-                            {
-                                validator: this.checkPhone
-                            }],
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label='第二联系人'
-                >
-                    {getFieldDecorator('secondContacts', {
-                        initialValue: this.state.secondContacts,
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="手机号码"
-                >
-                    {getFieldDecorator('secondMobile', {
-                        initialValue: this.state.secondMobile,
-                        rules: [
-                            {
-                                validator: this.checkPhone
-                            }],
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label='第三联系人'
-                >
-                    {getFieldDecorator('thirdContacts', {
-                        initialValue: this.state.thirdContacts,
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="手机号码"
-                >
-                    {getFieldDecorator('thirdMobile', {
-                        initialValue: this.state.thirdMobile,
-                        rules: [
-                            {
-                                validator: this.checkPhone
-                            }],
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="电子邮箱"
-                >
-                    {getFieldDecorator('email', {
-                        initialValue: this.state.email,
-                        rules: [{
-                            type: 'email', message: '请输入正确的邮箱地址!',
-                        }],
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="固定电话"
-                >
-                    {getFieldDecorator('telephone', {
-                        initialValue: this.state.fixedTel
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="QQ"
-                >
-                    {getFieldDecorator('qq', {
-                        initialValue: this.state.qq
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="通讯地址"
-                >
-                    {getFieldDecorator('address', {
-                        initialValue: this.state.address
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem wrapperCol={{ span: 12, offset: 4 }}>
-                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
-                </FormItem>
-            </Form >
-        );
-    },
-}));
-
-// <FormItem
-//     {...formItemLayout}
-//     label="法人"
-// >
-//     {getFieldDecorator('legalPerson', {
-//         initialValue: this.state.legalPerson
-//     })(
-//         <Input />
-//         )}
-// </FormItem>
-
-const Base = 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-base">
-                    <div className="acc-detail">
-                        <p className="acc-title">您登录的账号</p>
-                        <p>阿凡提号: <span>{userData.number}</span></p>
-                        <p>认证状态: <span>{userData.lvl == '1' ? <span>已认证</span> : <span>未认证 <a href={globalConfig.context + '/user/groupCertify'}> 马上认证</a></span>}</span></p>
-                        <div className="clearfix">
-                            <ChangePw />
-                        </div>
-                    </div>
-                    <div className="acc-bind" style={{ 'display': 'none' }}>
-                        <p className="acc-title">绑定账号 <span>绑定后,可使用第三方账号直接登录阿凡提网</span></p>
-                        <p>
-                            <Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button>
-                            <Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button>
-                            <Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button>
-                        </p>
-                    </div>
-                    <div className="acc-info">
-                        <p className="acc-title">请确认您的联系信息</p>
-                        <BaseFrom spinState={this.spinChange} />
-                    </div>
-                </div>
-            </Spin>
-        )
-    }
-});
-
-export default Base;

+ 0 - 802
js/component/account/set/hrSituation.jsx

@@ -1,802 +0,0 @@
-import React from 'react';
-import { Input, InputNumber, Button, Form, Icon, Spin, message, Table, Modal, Upload, Select } from 'antd';
-import { beforeUploadFile, newDownloadFile } from '../../tools.js';
-import './hrSituation.less'
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-
-
-const HrSituationDescFrom = Form.create()(React.createClass({
-    getInitialState() {
-        return {
-            loading: false,
-            yearOption: []
-        };
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            if (values.firmTotal < values.firmInService + values.firmPartTime + values.firmTemporary) {
-                message.warning("总体情况的在职人员数、兼职人员数、临时聘用人员数相加小于等于企业职工总数!");
-                return;
-            };
-            if (values.firmTotal < values.techTotal) {
-                message.warning("科技人员数小于等于企业职工总数!");
-                return;
-            };
-            if (values.firmInService < values.techInService || values.firmPartTime < values.techPartTime || values.firmTemporary < values.techTemporary ||
-                values.firmForeign < values.techForeign || values.firmAbroad < values.techAbroad || values.firmCore < values.techCore) {
-                message.warning("科技人员各项人数小于等于企业职工各项人数!");
-                return;
-            };
-            if (values.firmTotal < values.doctor + values.master + values.undergraduate + values.college) {
-                message.warning("全体人员结构中学历一栏人数总和小于等于职工人数!");
-                return;
-            };
-            if (values.firmTotal < values.belowThirty + values.thirtyoneToThirtyfour + values.fortyoneToFifty + values.aboveFifty) {
-                message.warning("全体人员结构中年龄一栏人数总和小于等于职工人数!");
-                return;
-            };
-            if (!this.state.year && !this.props.data.year) {
-                message.warning("请选择一个年份!")
-                return;
-            };
-            if (!err) {
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/SaveHumanResource",
-                    data: {
-                        id: this.props.data.id,
-                        year: this.state.year || this.props.data.year,
-                        aboveFifty: values.aboveFifty,
-                        belowThirty: values.belowThirty,
-                        college: values.college,
-                        doctor: values.doctor,
-                        firmAbroad: values.firmAbroad,
-                        firmCore: values.firmCore,
-                        firmForeign: values.firmForeign,
-                        firmInService: values.firmInService,
-                        firmPartTime: values.firmPartTime,
-                        firmTemporary: values.firmTemporary,
-                        firmTotal: values.firmTotal,
-                        fortyoneToFifty: values.fortyoneToFifty,
-                        intermediateTitle: values.intermediateTitle,
-                        juniorTitle: values.juniorTitle,
-                        master: values.master,
-                        seniorMechanic: values.seniorMechanic,
-                        seniorTitle: values.seniorTitle,
-                        techAbroad: values.techAbroad,
-                        techCore: values.techCore,
-                        techForeign: values.techForeign,
-                        techInService: values.techInService,
-                        techPartTime: values.techPartTime,
-                        techTemporary: values.techTemporary,
-                        techTotal: values.techTotal,
-                        thirtyoneToThirtyfour: values.thirtyoneToThirtyfour,
-                        undergraduate: values.undergraduate,
-                        rosterUrl: this.state.rosterUrl,
-                        socialSecurityUrl: this.state.socialSecurityUrl,
-                        newEmployment: values.newEmployment,
-                        graduateNumber: values.graduateNumber
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.props.clickOk();
-                        this.props.form.resetFields();
-                    } else {
-                        message.warning(data.error[0].message);
-                    };
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    componentWillMount() {
-        let d = new Date();
-        let _me = this;
-        d = d.getFullYear();
-        for (let i = d; i > d - 20; i--) {
-            _me.state.yearOption.push(
-                <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
-            )
-        };
-    },
-    componentWillReceiveProps(nextProps) {
-        if (!this.props.visible && nextProps.visible) {
-            this.props.form.resetFields();
-            this.state.fileList_roster = [];
-            this.state.fileList_social_security = [];
-            this.state.rosterUrl = undefined;
-            this.state.socialSecurityUrl = undefined;
-        };
-    },
-    render() {
-        const { getFieldDecorator } = this.props.form;
-        const formItemLayout = {
-            labelCol: { span: 8 },
-            wrapperCol: { span: 16 },
-        };
-        const FormItem = Form.Item;
-        const theData = this.props.data;
-        return (
-            <Form onSubmit={this.handleSubmit} className="hrSituation-form">
-                <div className="clearfix">
-                    <div className="activityCost-title"><span>年份: </span>
-                        {
-                            this.props.data.year ? <span>{this.props.data.year}</span> :
-                                <Select placeholder="请选择年份" style={{ width: 200 }}
-                                    onSelect={(e, n) => { this.state.year = e }}>
-                                    {this.state.yearOption}
-                                </Select>
-                        }
-                    </div>
-                </div>
-                <p className="hrSituation-title">总体情况</p>
-                <div className="clearfix">
-                    <span className="hrSituation-span">总数(人)</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="企业职工"
-                    >
-                        {getFieldDecorator('firmTotal', {
-                            initialValue: this.props.data.firmTotal || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="科技人员"
-                    >
-                        {getFieldDecorator('techTotal', {
-                            initialValue: this.props.data.techTotal || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item" style={{ width: '50%' }}>
-                        <span>其中科技人员占比
-                        {(() => {
-                                if (!this.props.form.getFieldValue('techTotal') || !this.props.form.getFieldValue('firmTotal')) {
-                                    return 0
-                                }
-                                return (this.props.form.getFieldValue('techTotal') / this.props.form.getFieldValue('firmTotal') * 100).toFixed(2)
-                            })()}
-                            %</span>
-                    </FormItem>
-                    <span className="hrSituation-span">在职人员(人)</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="企业职工"
-                    >
-                        {getFieldDecorator('firmInService', {
-                            initialValue: this.props.data.firmInService || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="科技人员"
-                    >
-                        {getFieldDecorator('techInService', {
-                            initialValue: this.props.data.techInService || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <span className="hrSituation-span">兼职人员(人)</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="企业职工"
-                    >
-                        {getFieldDecorator('firmPartTime', {
-                            initialValue: this.props.data.firmPartTime || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="科技人员"
-                    >
-                        {getFieldDecorator('techPartTime', {
-                            initialValue: this.props.data.techPartTime || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <span className="hrSituation-span">临时聘用人员(人)</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="企业职工"
-                    >
-                        {getFieldDecorator('firmTemporary', {
-                            initialValue: this.props.data.firmTemporary || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="科技人员"
-                    >
-                        {getFieldDecorator('techTemporary', {
-                            initialValue: this.props.data.techTemporary || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <span className="hrSituation-span">外籍人员(人)</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="企业职工"
-                    >
-                        {getFieldDecorator('firmForeign', {
-                            initialValue: this.props.data.firmForeign || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="科技人员"
-                    >
-                        {getFieldDecorator('techForeign', {
-                            initialValue: this.props.data.techForeign || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <span className="hrSituation-span">留学归国人员(人)</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="企业职工"
-                    >
-                        {getFieldDecorator('firmAbroad', {
-                            initialValue: this.props.data.firmAbroad || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="科技人员"
-                    >
-                        {getFieldDecorator('techAbroad', {
-                            initialValue: this.props.data.techAbroad || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <span className="hrSituation-span">干人计划人员(人)</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="企业职工"
-                    >
-                        {getFieldDecorator('firmCore', {
-                            initialValue: this.props.data.firmCore || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="科技人员"
-                    >
-                        {getFieldDecorator('techCore', {
-                            initialValue: this.props.data.techCore || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                </div>
-                <p className="hrSituation-title">全体人员结构</p>
-                <div className="clearfix">
-                    <span className="hrSituation-span">学历人数</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="博士"
-                    >
-                        {getFieldDecorator('doctor', {
-                            initialValue: this.props.data.doctor || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="硕士"
-                    >
-                        {getFieldDecorator('master', {
-                            initialValue: this.props.data.master || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="本科"
-                    >
-                        {getFieldDecorator('undergraduate', {
-                            initialValue: this.props.data.undergraduate || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="大专及以下"
-                    >
-                        {getFieldDecorator('college', {
-                            initialValue: this.props.data.college || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                </div>
-                <div className="clearfix">
-                    <span className="hrSituation-span">职称人数</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="高级职称"
-                    >
-                        {getFieldDecorator('seniorTitle', {
-                            initialValue: this.props.data.seniorTitle || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="中级职称"
-                    >
-                        {getFieldDecorator('intermediateTitle', {
-                            initialValue: this.props.data.intermediateTitle || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="初级职称"
-                    >
-                        {getFieldDecorator('juniorTitle', {
-                            initialValue: this.props.data.juniorTitle || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="高级技工"
-                    >
-                        {getFieldDecorator('seniorMechanic', {
-                            initialValue: this.props.data.seniorMechanic || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                </div>
-                <div className="clearfix">
-                    <span className="hrSituation-span">年龄人数</span>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="30及以下"
-                    >
-                        {getFieldDecorator('belowThirty', {
-                            initialValue: this.props.data.belowThirty || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="31-40"
-                    >
-                        {getFieldDecorator('thirtyoneToThirtyfour', {
-                            initialValue: this.props.data.thirtyoneToThirtyfour || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="41-50"
-                    >
-                        {getFieldDecorator('fortyoneToFifty', {
-                            initialValue: this.props.data.fortyoneToFifty || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="51及以上"
-                    >
-                        {getFieldDecorator('aboveFifty', {
-                            initialValue: this.props.data.aboveFifty || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                </div>
-                <p className="hrSituation-title">每年新增员工数</p>
-                <div className="clearfix">
-                    <FormItem
-                        labelCol={{ span: 16 }}
-                        wrapperCol={{ span: 8 }}
-                        label="新增就业人数"
-                    >
-                        {getFieldDecorator('newEmployment', {
-                            initialValue: this.props.data.newEmployment || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                    <FormItem
-                        labelCol={{ span: 16 }}
-                        wrapperCol={{ span: 8 }}
-                        label="高校应届毕业生人数"
-                    >
-                        {getFieldDecorator('graduateNumber', {
-                            initialValue: this.props.data.graduateNumber || 0
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
-                </div>
-                <div className="hrSituation-roster">
-                    <Upload
-                        name="ratepay"
-                        action={globalConfig.context + "/api/user/cognizance/uploadRoster"}
-                        data={{ sign: 'roster', year: this.state.year || theData.year }}
-                        beforeUpload={beforeUploadFile}
-                        fileList={this.state.fileList_roster}
-                        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.rosterUrl = info.file.response.data;
-                            } else if (info.file.status === 'error') {
-                                message.error(`${info.file.name} 文件上传失败。`);
-                            };
-                            this.setState({ fileList_roster: info.fileList.slice(-1) });
-                        }}
-                    >
-                        <Button><Icon type="upload" /> 上传花名册 </Button>
-                    </Upload>
-                    <p style={{ marginTop: '10px' }}>{theData.rosterUrl ? <a onClick={newDownloadFile.bind(null, theData.id, 'roster', '/api/user/cognizance/downloadHumanResource')}>{theData.rosterDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
-                </div>
-                <div className="hrSituation-roster">
-                    <Upload
-                        name="ratepay"
-                        action={globalConfig.context + "/api/user/cognizance/uploadSocialSecurity"}
-                        data={{ 'sign': 'social_security', year: this.state.year || theData.year }}
-                        beforeUpload={beforeUploadFile}
-                        fileList={this.state.fileList_social_security}
-                        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.socialSecurityUrl = info.file.response.data;
-                            } else if (info.file.status === 'error') {
-                                message.error(`${info.file.name} 文件上传失败。`);
-                            };
-                            this.setState({ fileList_social_security: info.fileList.slice(-1) });
-                        }}
-                    >
-                        <Button><Icon type="upload" /> 上传社保情况 </Button>
-                    </Upload>
-                    <p style={{ marginTop: '10px' }}>{theData.socialSecurityUrl ? <a onClick={newDownloadFile.bind(null, theData.id, 'social_security', '/api/user/cognizance/downloadHumanResource')}>{theData.socialSecurityDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
-                </div>
-                <div>
-                    <span style={{ color: "red" }}>提示</span>
-                    <p>1、总体情况的在职人员数、兼职人员数、临时聘用人员数相加小于等于企业职工总数。</p>
-                    <p>2、科技人员数小于等于企业职工总数。</p>
-                    <p>3、科技人员各项人数小于等于企业职工各项人数。</p>
-                    <p>4、全体人员结构中学历一栏人数总和小于等于职工人数。</p>
-                    <p>5、全体人员结构中年龄一栏人数总和小于等于职工人数。</p>
-                    <Button style={{ marginTop: "20px" }} className="set-submit" type="primary" htmlType="submit">保存</Button>
-                </div>
-            </Form >
-        );
-    },
-}));
-
-const HrSituationDesc = React.createClass({
-    getInitialState() {
-        return {
-            visible: false,
-            loading: false
-        };
-    },
-    componentWillReceiveProps(nextProps) {
-        this.state.visible = nextProps.showDesc
-    },
-    showModal() {
-        this.setState({
-            visible: true,
-        });
-    },
-    handleOk() {
-        this.setState({
-            visible: false,
-        });
-        this.props.closeDesc(false, true);
-    },
-    handleCancel(e) {
-        this.setState({
-            visible: false,
-        });
-        this.props.closeDesc(false);
-    },
-    spinChange(e) {
-        this.setState({
-            loading: e
-        });
-    },
-    render() {
-        return (
-            <div className="patent-addNew">
-                <Spin spinning={this.state.loading} className='spin-box'>
-                    <Modal maskClosable={false} title="人力资源状况" visible={this.state.visible}
-                        onOk={this.handleOk} onCancel={this.handleCancel}
-                        width='1200px'
-                        footer='' >
-                        <HrSituationDescFrom data={this.props.data}
-                            visible={this.state.visible}
-                            spinState={this.spinChange}
-                            closeModal={this.handleCancel}
-                            clickOk={this.handleOk} />
-                    </Modal>
-                </Spin>
-            </div>
-        );
-    },
-});
-
-const HrSituation = React.createClass({
-    loadData(pageNo) {
-        this.state.data = [];
-        this.setState({
-            loading: true
-        });
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/user/humanResource",
-            data: {
-                pageNo: pageNo || 1,
-                pageSize: this.state.pagination.pageSize
-            }
-        }).done((data) => {
-            if (!data.data) {
-                if (data.error && data.error.length) {
-                    message.warning(data.error[0].message);
-                    this.state.ButtonDisabled = true;
-                }
-                return;
-            };
-            for (let i = 0; i < data.data.list.length; i++) {
-                let thisdata = data.data.list[i];
-                this.state.data.push({
-                    key: i,
-                    id: thisdata.id,
-                    uid: thisdata.uid,
-                    year: thisdata.year,
-                    aboveFifty: thisdata.aboveFifty,
-                    belowThirty: thisdata.belowThirty,
-                    college: thisdata.college,
-                    doctor: thisdata.doctor,
-                    firmAbroad: thisdata.firmAbroad,
-                    firmCore: thisdata.firmCore,
-                    firmForeign: thisdata.firmForeign,
-                    firmInService: thisdata.firmInService,
-                    firmPartTime: thisdata.firmPartTime,
-                    firmTemporary: thisdata.firmTemporary,
-                    firmTotal: thisdata.firmTotal,
-                    fortyoneToFifty: thisdata.fortyoneToFifty,
-                    intermediateTitle: thisdata.intermediateTitle,
-                    juniorTitle: thisdata.juniorTitle,
-                    master: thisdata.master,
-                    seniorMechanic: thisdata.seniorMechanic,
-                    seniorTitle: thisdata.seniorTitle,
-                    techAbroad: thisdata.techAbroad,
-                    techCore: thisdata.techCore,
-                    techForeign: thisdata.techForeign,
-                    techInService: thisdata.techInService,
-                    techPartTime: thisdata.techPartTime,
-                    techTemporary: thisdata.techTemporary,
-                    techTotal: thisdata.techTotal,
-                    thirtyoneToThirtyfour: thisdata.thirtyoneToThirtyfour,
-                    undergraduate: thisdata.undergraduate,
-
-                    rosterUrl: thisdata.rosterUrl,
-                    rosterDownloadFileName: thisdata.rosterDownloadFileName,
-                    socialSecurityUrl: thisdata.socialSecurityUrl,
-                    socialSecurityDownloadFileName: thisdata.socialSecurityDownloadFileName,
-
-                    attachment: [thisdata.id, thisdata.rosterDownloadFileName, thisdata.socialSecurityDownloadFileName],
-                    newEmployment: thisdata.newEmployment,
-                    graduateNumber: thisdata.graduateNumber
-                });
-            };
-            this.state.pagination.current = data.data.pageNo;
-            this.state.pagination.total = data.data.totalCount;
-            this.setState({
-                dataSource: this.state.data,
-                pagination: this.state.pagination
-            });
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-            selectedRowKeys: [],
-            selectedRows: [],
-            loading: false,
-            pagination: {
-                defaultCurrent: 1,
-                defaultPageSize: 10,
-                showQuickJumper: true,
-                pageSize: 10,
-                onChange: function (page) {
-                    this.loadData(page);
-                }.bind(this),
-                showTotal: function (total) {
-                    return '共' + total + '条数据';
-                }
-            },
-            columns: [
-                {
-                    title: '年份',
-                    dataIndex: 'year',
-                    key: 'year'
-                }, {
-                    title: '总人数',
-                    dataIndex: 'firmTotal',
-                    key: 'firmTotal'
-                }, {
-                    title: '科技人员',
-                    dataIndex: 'techTotal',
-                    key: 'techTotal'
-                }, {
-                    title: '博士人数',
-                    dataIndex: 'doctor',
-                    key: 'doctor',
-                }, {
-                    title: '高级职称人数',
-                    dataIndex: 'seniorTitle',
-                    key: 'seniorTitle',
-                }, {
-                    title: '30岁以下人数',
-                    dataIndex: 'belowThirty',
-                    key: 'belowThirty',
-                }, {
-                    title: '相关附件',
-                    dataIndex: 'attachment',
-                    key: 'attachment',
-                    render: (text) => {
-                        return <div>
-                            <a style={{ marginRight: '10px' }} onClick={newDownloadFile.bind(null, text[0], 'roster', '/api/user/cognizance/downloadHumanResource')}> {text[1]} </a>
-                            <a onClick={newDownloadFile.bind(null, text[0], 'social_security', '/api/user/cognizance/downloadHumanResource')}> {text[2]} </a>
-                        </div>
-                    }
-                }
-            ],
-            dataSource: []
-        };
-    },
-    componentWillMount() {
-        this.loadData();
-    },
-    tableRowClick(record, index) {
-        this.state.RowData = record;
-        this.setState({
-            showDesc: true
-        });
-    },
-    delectRow() {
-        let deletedIds = [];
-        for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
-            let rowItem = this.state.selectedRows[idx];
-            if (rowItem.id) {
-                deletedIds.push(rowItem.id)
-            }
-        }
-        this.setState({
-            selectedRowKeys: [],
-            loading: deletedIds.length > 0
-        });
-        $.ajax({
-            method: "POST",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/user/deleteHumanResource",
-            data: {
-                ids: deletedIds
-            }
-        }).done(function (data) {
-            if (!data.error.length) {
-                message.success('删除成功!');
-                this.setState({
-                    loading: false,
-                });
-            } else {
-                message.warning(data.error[0].message);
-            };
-            this.loadData();
-        }.bind(this));
-    },
-    closeDesc(e, s) {
-        this.state.showDesc = e;
-        if (s) {
-            this.loadData();
-        };
-    },
-    render() {
-        const rowSelection = {
-            selectedRowKeys: this.state.selectedRowKeys,
-            onChange: (selectedRowKeys, selectedRows) => {
-                this.setState({
-                    selectedRows: selectedRows,
-                    selectedRowKeys: selectedRowKeys
-                });
-            }
-        };
-        const hasSelected = this.state.selectedRowKeys.length > 0;
-        return (
-            <div className="user-content" >
-                <div className="content-title">
-                    <span>人力资源状况</span>
-                </div>
-                <div className="user-search">
-                    <p>
-                        <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
-                            disabled={this.state.ButtonDisabled}
-                            onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
-                        <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
-                            disabled={!hasSelected}
-                            onClick={this.delectRow}>删除<Icon type="minus" /></Button>
-                    </p>
-                </div>
-                <div className="patent-table">
-                    <Spin spinning={this.state.loading}>
-                        <Table columns={this.state.columns}
-                            dataSource={this.state.dataSource}
-                            pagination={this.state.pagination}
-                            rowSelection={rowSelection}
-                            onRowClick={this.tableRowClick} />
-                    </Spin>
-                </div>
-                <HrSituationDesc data={this.state.RowData}
-                    showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
-            </div >
-        );
-    }
-});
-
-export default HrSituation;

+ 0 - 53
js/component/account/set/hrSituation.less

@@ -1,53 +0,0 @@
-.hrSituation-form {
-    width: 100%;
-    .activityCost-title {
-        font-size: 16px;
-    }
-    .ant-form-item {
-        float: left;
-        .ant-input-number {
-            width: 80%;
-        }
-    }
-    .half-item {
-        width: 19%;
-    }
-    .hrSituation-title {
-        font-size: 16px;
-    }
-    .hrSituation-span {
-        float: left;
-        line-height: 32px;
-        width: 126px;
-        text-align: right;
-    }
-    .hrSituation-roster {
-        margin-top: 10px;
-        margin-bottom: 20px;
-        width: 400px;
-    }
-}
-
-.user-content {
-    background: #fff;
-    padding: 20px;
-    .content-title {
-        font-size: 16px;
-        color: #333;
-    }
-    .user-search {
-        margin: 20px 0;
-        input {
-            width: 200px;
-        }
-        >* {
-            margin-right: 20px;
-        }
-        p {
-            margin-top: 20px;
-            button {
-                margin-right: 20px;
-            }
-        }
-    }
-}

+ 0 - 121
js/component/account/set/leftMenu.jsx

@@ -1,121 +0,0 @@
-import React from 'react';
-import { Menu, Icon } from 'antd';
-import '../leftTab.less';
-const SubMenu = Menu.SubMenu;
-const MenuItemGroup = Menu.ItemGroup;
-import { Link } from 'react-router';
-import ajax from 'jquery/src/ajax/xhr.js';
-import $ from 'jquery/src/ajax';
-import { menu } from '@/account/menu';
-import logo from 'img/acc-logo.png';
-
-const LeftTab = React.createClass({
-	getInitialState() {
-		return {
-			openKeys: [ 'sub1' ],
-			current: 'account'
-		};
-	},
-	loadData() {
-		$.ajax({
-			method: 'post',
-			dataType: 'json',
-			url: globalConfig.context + '/api/admin/customer/left',
-			data: {}
-		}).done(
-			function(data) {
-				if (!data.data.error.length) {
-					this.setState({
-						state: data.data.aa
-					});
-				} else {
-					message.warning(data.error[0].message);
-				}
-			}.bind(this)
-		);
-	},
-	menuClick(e) {
-		this.setState({
-			current: e.key
-        });
-        window.location.hash=e.key;
-	},
-	componentWillMount() {
-		this.loadData();
-		if (window.location.hash) {
-            let current = window.location.hash.substr(2);
-            this.setState({
-                current
-            })
-        }
-	},
-	render() {
-        console.log(this.state.current)
-		return (
-			<div>
-				<div className="acc-index">
-						<img src={logo} alt="" />
-                        <span>
-					    	<a href={globalConfig.context + '/user/account/index.html'}>会员中心首页</a>
-					    </span>
-				</div>
-				<Menu
-					onClick={this.menuClick}
-					defaultOpenKeys={this.state.openKeys}
-					selectedKeys={[ this.state.current ]}
-                    mode="inline"
-                    theme='light'
-					className="account-left"
-				>
-					{menu.map((subMenu) => {
-						if (subMenu.children && subMenu.children.length) {
-							return (
-								<SubMenu
-									key={subMenu.url}
-									title={
-										<span>
-											<Icon type={subMenu.icon} />
-											<span>{subMenu.name}</span>
-										</span>
-									}
-								>
-									{subMenu.children.map((menu) => (
-										<Menu.Item key={menu.url}>
-											{menu.name}
-										</Menu.Item>
-									))}
-								</SubMenu>
-							);
-						}
-						return (
-							<Menu.Item key={subMenu.url}>
-								<Link to={`/${subMenu.url}`}>
-									<Icon type={subMenu.icon} />
-									<span className="nav-text">{subMenu.name}</span>
-								</Link>
-							</Menu.Item>
-						);
-					})}
-				</Menu>
-			</div>
-		);
-	}
-});
-
-export default LeftTab;
-
-// <Menu.Item key="base">
-//     基本信息
-// </Menu.Item>
-// <Menu.Item key="person">
-//     个人资料
-// </Menu.Item>
-// <Menu.Item key="edu">
-//     教育信息
-// </Menu.Item>
-// <Menu.Item key="pfs">
-//     职业信息
-// </Menu.Item>
-// <Menu.Item key="ablt">
-//     能力标签
-// </Menu.Item>

+ 0 - 52
js/component/account/set/leftTabgroup.jsx

@@ -1,52 +0,0 @@
-import React from 'react';
-import { Menu, Icon } from 'antd';
-import '../leftTab.less';
-const SubMenu = Menu.SubMenu;
-const MenuItemGroup = Menu.ItemGroup;
-
-
-const LeftTab = React.createClass({
-    getInitialState() {
-        return {
-            current: 'group',
-        };
-    },
-    handleClick(e) {
-        this.props.handlekey(e.key);
-        this.setState({
-            current: e.key,
-        });
-    },
-    componentWillMount(){
-        if ( window.location.hash ) {
-            this.state.current = window.location.hash.substr(1);
-        };
-    },
-    render() {
-        return (
-            <Menu onClick={this.handleClick}
-                selectedKeys={[this.state.current]}
-                mode="vertical"
-                className="account-left"
-                >
-                <Menu.Item key="group">
-                    基本信息
-                </Menu.Item>
-                <Menu.Item key="company">
-                    单位资料
-                </Menu.Item>
-                <Menu.Item key="tech">
-                    技术能力
-                </Menu.Item>
-                <Menu.Item key="ablt">
-                    能力标签
-                </Menu.Item>
-                <Menu.Item key="hrSituation">
-                    人力状况
-                </Menu.Item>
-            </Menu>
-        );
-    },
-});
-
-export default LeftTab;

+ 0 - 386
js/component/account/set/person.jsx

@@ -1,386 +0,0 @@
-import React from 'react';
-import { Cascader, Input, Button, Form, Select, Radio, Upload, Icon, Spin, message, Modal } from 'antd';
-import './person.less';
-import { splitUrl, getBase64, beforeUpload } from '../../tools.js';
-import { areaSelect } from '../../NewDicProvinceList';
-import ajax from 'jquery/src/ajax/xhr.js';
-import $ from 'jquery/src/ajax';
-
-const FormItem = Form.Item;
-const Option = Select.Option;
-const RadioGroup = Radio.Group;
-
-class Avatar extends React.Component {
-    constructor(props) {
-        super(props);
-        this.state = {
-            imageUrl: '',
-            propsbool: true,
-        }
-    }
-    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);
-        }
-    }
-    componentWillReceiveProps(nextProps) {
-        if (nextProps.picUrl && this.state.propsbool) {
-            this.state.imageUrl = globalConfig.avatarHost + "/upload" + nextProps.picUrl;
-            this.state.propsbool = false;
-        }
-    }
-    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.length && 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.bind(this)}
-                    onChange={this.handleChange.bind(this)}
-                >
-                    {fileList.length >= 9 ? null : uploadButton}
-                </Upload>
-                <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel.bind(this)}>
-                    <img alt="" 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) {
-                    let theArr = splitUrl(data.data.lifePhotoUrl, ',', globalConfig.avatarHost + '/upload');
-                    this.setState({
-                        id: data.data.id,
-                        nickname: data.data.nickname,
-                        theAddress: [data.data.residenceProvince, data.data.residenceCity, data.data.residenceArea],
-                        intro: data.data.personalProfile,
-                        email: data.data.email,
-                        fixTelArea: data.data.fixedTelArea,
-                        fixTel: data.data.fixedTel,
-                        fixTelExtension: data.data.fixedTelExtension,
-                        qq: data.data.qq,
-                        personPortraitUrl: data.data.personPortraitUrl,
-                        address: data.data.postalAddress,
-                        postcode: data.data.postcode,
-                        lifePhotoList: theArr
-                    });
-                }
-            }.bind(this),
-        }).always(function () {
-            this.props.spinState(false);
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-            loading: false,
-            livePicUrlArr: [],
-            lifePhotoList: []
-        };
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            //lifePhotoUrl
-            let livePicArr = [];
-            this.state.lifePhotoList.map(function (item) {
-                if ( item.response && item.response.data && item.response.data.length ){
-                    livePicArr.push(item.response.data);
-                }
-            });
-            let lifePhotoUrl = livePicArr.join(",");
-            if (!err) {
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/userInfo",
-                    data: {
-                        "id": this.state.id,
-                        "nickname": values.nickname,
-                        "residenceProvince": values.theAddress[0],
-                        "residenceCity": values.theAddress[1],
-                        "residenceArea": values.theAddress[2],
-                        "personPortraitUrl": this.state.avatarUrlData,
-                        "lifePhotoUrl": lifePhotoUrl,
-                        "personalProfile": values.intro,
-                        "email": values.email,
-                        "fixedTelArea": this.state.fixTelArea,
-                        "fixedTel": this.state.fixTel,
-                        "fixedTelExtension": this.state.fixTelExtension,
-                        "qq": values.qq,
-                        "postalAddress": values.address,
-                        "postcode": values.postcode
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.getData();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    avatarUrl(e) {
-        this.state.avatarUrlData = e;
-    },
-    livePicFileList(e) {
-        this.state.lifePhotoList = e;
-    },
-    componentWillMount() {
-        this.getData();
-    },
-    fixTelAreaChange(e) {
-        this.setState({
-            fixTelArea: e.target.value
-        });
-    },
-    fixTelChange(e) {
-        this.setState({
-            fixTel: e.target.value
-        });
-    },
-    fixTelExtensionChange(e) {
-        this.setState({
-            fixTelExtension: e.target.value
-        });
-    },
-    render() {
-        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
-                    {...formItemLayout}
-                    label="社区昵称"
-                >
-                    {getFieldDecorator('nickname', {
-                        initialValue: this.state.nickname || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="居住地"
-                >
-                    {getFieldDecorator('theAddress', {
-                        initialValue: this.state.theAddress || []
-                    })(
-                        <Cascader options={areaSelect()} />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="个人头像"
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 21 }}
-                >
-                    {getFieldDecorator('avatar')(
-                        <Avatar urlData={this.avatarUrl} name='personPortrait' picUrl={this.state.personPortraitUrl} />
-                    )}
-                </FormItem>
-                <div className="set-explain">
-                    <p>请上传清晰的个人身份证正反面原件照片/扫描件 (不能截图、图片内容要求完整 ),</p>
-                    <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
-                </div>
-                <FormItem
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 21 }}
-                    label="生活照"
-                >
-                    {getFieldDecorator('livePic')(
-                        <PicturesWall fileList={this.livePicFileList} lifePhotoList={this.state.lifePhotoList} />
-                    )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 20 }}
-                    label="个人简介"
-                >
-                    {getFieldDecorator('intro', {
-                        initialValue: this.state.intro || null
-                    })(
-                        <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="电子邮箱"
-                    hasFeedback
-                >
-                    {getFieldDecorator('email', {
-                        rules: [{
-                            type: 'email', message: '请输入正确的邮箱地址!',
-                        }],
-                        initialValue: this.state.email || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="固定电话"
-                >
-                    {getFieldDecorator('telephone')(
-                        <p>
-                            <Input value={this.state.fixTelArea} id="fixTelArea" onChange={this.fixTelAreaChange} /> - <Input value={this.state.fixTel} id="fixTel" onChange={this.fixTelChange} /> - <Input value={this.state.fixTelExtension} id="fixTelExtension" onChange={this.fixTelExtensionChange} />
-                        </p>
-                    )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="QQ"
-                >
-                    {getFieldDecorator('qq', {
-                        initialValue: this.state.qq || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="通讯地址"
-                >
-                    {getFieldDecorator('address', {
-                        initialValue: this.state.address || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="邮编"
-                >
-                    {getFieldDecorator('postcode', {
-                        initialValue: this.state.postcode || null
-                    })(
-                        <Input />
-                        )}
-                </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;

+ 0 - 73
js/component/account/set/person.less

@@ -1,73 +0,0 @@
-.set-person {
-    background: #fff;
-    padding: 20px;
-    .acc-title {
-        color: #333;
-        font-size: 16px;
-        margin-bottom: 10px;
-        span {
-            font-size: 12px;
-            color: #999;
-            margin-left: 10px;
-        }
-    }
-    .person-form {
-        width: 600px;
-        .set-explain {
-            margin-left: 12.5%;
-            margin-bottom: 20px;
-        }
-        .set-submit {
-            width: 120px;
-            border-radius: 4px;
-        }
-        .ant-form-item-label {
-            text-align: left;
-        }
-        #province {
-            select {
-                margin-right: 20px;
-                width: 80px;
-                height: 32px;
-                border: 1px solid #d9d9d9;
-            }
-        }
-        #telephone {
-            input {
-                width: 25%;
-            }
-            #fixedTel {
-                width: 42%;
-            }
-        }
-        .school-props {
-            >div {
-                float: left;
-                width: 50%;
-            }
-        }
-    }
-    .avatar-uploader,
-    .avatar-uploader-trigger,
-    .avatar {
-        width: 150px;
-        height: 150px;
-    }
-    .avatar-uploader {
-        display: block;
-        border: 1px dashed #d9d9d9;
-        border-radius: 6px;
-        cursor: pointer;
-    }
-    .avatar-uploader-trigger {
-        display: table-cell;
-        vertical-align: middle;
-        font-size: 28px;
-        color: #999;
-    }
-    #cmbProvince,
-    #cmbCity,
-    #cmbArea {
-        border-radius: 4px;
-    }
-}

+ 0 - 406
js/component/account/set/pfs.jsx

@@ -1,406 +0,0 @@
-import React from 'react';
-import { Input, Button, Form, Select, Upload, Icon, Spin, message, Radio, InputNumber, Cascader } from 'antd';
-import './pfs.less';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-
-import YearSelect from '../../yearSelect.jsx';
-import { getBase64, beforeUpload } from '../../tools.js';
-import { jingli_yuanxiao, jingli_shehui, chengjiu_yuanxiao, chengjiu_shehui } from '../../dataDic.js';
-import { techFieldList } from '../../DicTechFieldList';
-
-
-const FormItem = Form.Item;
-const RadioButton = Radio.Button;
-const RadioGroup = Radio.Group;
-
-class Avatar extends React.Component {
-    constructor(props) {
-        super(props);
-        this.state = {
-            imageUrl: '',
-            propsbool: true,
-        }
-    }
-    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);
-        }
-    }
-    componentWillReceiveProps(nextProps) {
-        if (nextProps.picUrl && this.state.propsbool) {
-            this.state.imageUrl = globalConfig.avatarHost + "/upload" + nextProps.picUrl;
-            this.state.propsbool = false;
-        }
-    }
-    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>
-        );
-    }
-};
-
-const PfsFrom = Form.create()(React.createClass({
-    getData() {
-        this.props.spinState(true);
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/api/user/job",
-            success: function (data) {
-                if (data.data) {
-                    this.setState({
-                        id: data.data.id,
-                        field: data.data.engagedField ? data.data.engagedField.split(',') : [],
-                        gongling: data.data.workingAge,
-                        zhichengname: data.data.professionalTitle,
-                        zhichengyear: data.data.professionalTitleGettime,
-                        zhichengPicUrl: data.data.professionalCertificateUrl,
-                        zigename: data.data.qualification,
-                        zigeyear: data.data.qualificationGettime,
-                        zigePicUrl: data.data.qualificationCertificateUrl,
-                        danwei: data.data.workUnit,
-                        touxian: data.data.position,
-                        jingli: data.data.experiences,
-                        chengjiu: data.data.achievement
-                    });
-                };
-            }.bind(this),
-        }).always(function () {
-            this.props.spinState(false);
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-            loading: false,
-            zigePicUrl: '',
-            zhichengPicUrl: ''
-        };
-    },
-    componentWillMount() {
-        this.getData();
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                if (values.gongling < 0) {
-                    message.warning('工龄不能小于零!');
-                    return;
-                };
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/userCareer",
-                    data: {
-                        "id": this.state.id,
-                        "engagedField": values.field ? values.field.join(',') : '',
-                        "workingAge": values.gongling,
-                        "professionalTitle": values.zhichengname,
-                        "professionalTitleGettime": this.state.zhichengyear,
-                        "professionalCertificateUrl": this.state.zhichengPicUrl,
-                        "qualification": values.zigename,
-                        "qualificationGettime": this.state.zigeyear,
-                        "qualificationCertificateUrl": this.state.zigePicUrl,
-                        "workUnit": values.danwei,
-                        "position": values.touxian,
-                        "experiences": values.jingli,
-                        "achievement": values.chengjiu
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.getData();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    zhichengPic(e) {
-        this.state.zhichengPicUrl = e;
-    },
-    zhichengyear(e) {
-        this.state.zhichengyear = e;
-    },
-    zigePic(e) {
-        this.state.zigePicUrl = e;
-    },
-    zigeyear(e) {
-        this.state.zigeyear = e;
-    },
-    jingliChange(e) {
-        if (e.target.value == "a") {
-            this.props.form.setFieldsValue({ 'jingli': this.state.jingli || '' })
-        } else if (e.target.value == "b") {
-            this.props.form.setFieldsValue({
-                'jingli': jingli_yuanxiao
-            })
-        } else if (e.target.value == "c") {
-            this.props.form.setFieldsValue({
-                'jingli': jingli_shehui
-            })
-        }
-    },
-    chengjiuChange(e) {
-        if (e.target.value == "a") {
-            this.props.form.setFieldsValue({ 'chengjiu': this.state.chengjiu || '' })
-        } else if (e.target.value == "b") {
-            this.props.form.setFieldsValue({
-                'chengjiu': chengjiu_yuanxiao
-            })
-        } else if (e.target.value == "c") {
-            this.props.form.setFieldsValue({
-                'chengjiu': chengjiu_shehui
-            })
-        }
-    },
-    downloadPic(type) {
-        window.open(globalConfig.context + "/open/downLoadPicture?path=" + type)
-    },
-    render() {
-        const { getFieldDecorator } = this.props.form;
-        const formItemLayout = {
-            labelCol: { span: 3 },
-            wrapperCol: { span: 12 },
-        };
-        const _me = this;
-        return (
-            <Form horizontal onSubmit={this.handleSubmit} className="pfs-form">
-                <FormItem className="half-item"
-                    {...formItemLayout}
-                    label="从事领域" >
-                    {getFieldDecorator('field', {
-                        initialValue: this.state.field
-                    })(
-                        <Cascader placeholder="请选择一个领域" options={techFieldList} />
-                        )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 4 }}
-                    label="从业工龄"
-                >
-                    {getFieldDecorator('gongling', {
-                        initialValue: this.state.gongling || 0
-                    })(
-                        <InputNumber />
-                        )}
-                    <span>年</span>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="职称名字"
-                >
-                    {getFieldDecorator('zhichengname', {
-                        initialValue: this.state.zhichengname || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 6 }}
-                    label="取得时间"
-                    hasFeedback
-                >
-                    {getFieldDecorator('zhichengyear')(
-                        <YearSelect defValue={this.state.zhichengyear} handleyear={this.zhichengyear} />
-                    )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="职称证书"
-                    hasFeedback
-                >
-                    {getFieldDecorator('zhichengPic')(
-                        <Avatar name="zhichengPic" urlData={this.zhichengPic} picUrl={this.state.zhichengPicUrl} />
-                    )}
-                </FormItem>
-                <div className="set-explain">
-                    <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
-                    <p>{this.state.zhichengPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.zhichengPicUrl)}>下载证书</Button> : ""}</p>
-                </div>
-                <FormItem
-                    {...formItemLayout}
-                    label="执业资格"
-                >
-                    {getFieldDecorator('zigename', {
-                        initialValue: this.state.zigename
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 6 }}
-                    label="取得时间"
-                    hasFeedback
-                >
-                    {getFieldDecorator('zigeyear')(
-                        <YearSelect defValue={this.state.zigeyear} handleyear={this.zigeyear} />
-                    )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="资格证明"
-                    hasFeedback
-                >
-                    {getFieldDecorator('zigePic')(
-                        <Avatar name="zigePic" urlData={this.zigePic} picUrl={this.state.zigePicUrl} />
-                    )}
-                </FormItem>
-                <div className="set-explain">
-                    <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
-                    <p>{this.state.zigePicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.zigePicUrl)}>下载证书</Button> : ""}</p>
-                </div>
-                <FormItem
-                    {...formItemLayout}
-                    label="工作单位"
-                >
-                    {getFieldDecorator('danwei', {
-                        initialValue: this.state.danwei || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="职位头衔"
-                >
-                    {getFieldDecorator('touxian', {
-                        initialValue: this.state.touxian || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <div className="textarea-title">
-                    <span>从业经历</span>
-                    <RadioGroup className="set-radio-button" onChange={this.jingliChange} defaultValue="a">
-                        <RadioButton value="a">自定义</RadioButton>
-                        <RadioButton value="b">院校专家模板</RadioButton>
-                        <RadioButton value="c">企业或社会专家模板</RadioButton>
-                    </RadioGroup>
-                </div>
-                <div className="set-explain">
-                    <p>您可使用模板直接编辑调整!</p>
-                </div>
-                <FormItem
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 20, offset: 3 }}
-                    help={
-                        <div>
-                            <p>还可输入{
-                                (() => {
-                                    if (_me.props.form.getFieldValue('jingli') && _me.props.form.getFieldValue('jingli').length) {
-                                        return 1000 - _me.props.form.getFieldValue('jingli').length;
-                                    } else {
-                                        return 1000;
-                                    }
-                                })()
-                            }字/1000</p>
-                            <p>描述您主要的从业履历,包括职业,最有亮点的社会兼职。可自定义或选择模板后直接编辑</p>
-                        </div>
-                    }
-                    label=""
-                >
-                    {getFieldDecorator('jingli', {
-                        initialValue: this.state.jingli || null
-                    })(
-                        <Input type="textarea"
-                            rows={6} />
-                        )}
-                </FormItem>
-                <div className="textarea-title">
-                    <span>个人成就</span>
-                    <RadioGroup className="set-radio-button" onChange={this.chengjiuChange} defaultValue="a">
-                        <RadioButton value="a">自定义</RadioButton>
-                        <RadioButton value="b">院校专家模板</RadioButton>
-                        <RadioButton value="c">企业或社会专家模板</RadioButton>
-                    </RadioGroup>
-                </div>
-                <div className="set-explain">
-                    <p>您可使用模板直接编辑调整!</p>
-                </div>
-                <FormItem
-                    labelCol={{ span: 3 }}
-                    wrapperCol={{ span: 20, offset: 3 }}
-                    help={
-                        <div>
-                            <p>还可输入{
-                                (() => {
-                                    if (_me.props.form.getFieldValue('chengjiu') && _me.props.form.getFieldValue('chengjiu').length) {
-                                        return 1000 - _me.props.form.getFieldValue('chengjiu').length;
-                                    } else {
-                                        return 1000;
-                                    }
-                                })()
-                            }字/1000</p>
-                            <p>描述您主要的从业履历,包括职业,最有亮点的社会兼职。可自定义或选择模板后直接编辑</p>
-                        </div>
-                    }
-                    label=""
-                >
-                    {getFieldDecorator('chengjiu', {
-                        initialValue: this.state.chengjiu || null
-                    })(
-                        <Input type="textarea"
-                            rows={6} />
-                        )}
-                </FormItem>
-                <FormItem wrapperCol={{ span: 12, offset: 3 }}>
-                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
-                </FormItem>
-            </Form >
-        );
-    },
-}));
-
-const Pfs = 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-pfs">
-                    <div className="acc-detail">
-                        <p className="acc-title">职业信息</p>
-                        <PfsFrom spinState={this.spinChange} />
-                    </div>
-                </div>
-            </Spin>
-        )
-    }
-});
-
-export default Pfs;

+ 0 - 69
js/component/account/set/pfs.less

@@ -1,69 +0,0 @@
-.set-pfs {
-    background: #fff;
-    padding: 20px;
-    .acc-title {
-        color: #333;
-        font-size: 16px;
-        margin-bottom: 10px;
-        span {
-            font-size: 12px;
-            color: #999;
-            margin-left: 10px;
-        }
-    }
-    .pfs-form {
-        width: 600px;
-        .set-explain {
-            margin-left: 12.5%;
-            margin-bottom: 20px;
-        }
-        .set-radio-button {
-            margin-left: 4.5%;
-            margin-bottom: 20px;
-            .ant-radio-button-wrapper-checked {
-                background: #58a3ff;
-                color: #fff;
-            }
-        }
-        .set-submit {
-            width: 120px;
-            border-radius: 4px;
-        }
-        .ant-form-item-label {
-            text-align: left;
-        }
-        #gongling {
-            position: static;
-            span {
-                position: absolute;
-                right: 4px;
-                top: 0px;
-            }
-        }
-    }
-    .avatar-uploader,
-    .avatar-uploader-trigger,
-    .avatar {
-        width: 150px;
-        height: 150px;
-    }
-    .avatar-uploader {
-        display: block;
-        border: 1px dashed #d9d9d9;
-        border-radius: 6px;
-        cursor: pointer;
-        position: relative;
-        img {
-            position: absolute;
-            top: -1px;
-            left: -1px;
-            height: 150px;
-        }
-    }
-    .avatar-uploader-trigger {
-        display: table-cell;
-        vertical-align: middle;
-        font-size: 28px;
-        color: #999;
-    }
-}

+ 0 - 188
js/component/account/set/tech.jsx

@@ -1,188 +0,0 @@
-import React from 'react';
-import { Input, Button, Form, Select, Icon, Spin, InputNumber, Tag, message, Cascader } from 'antd';
-import './tech.less';
-import ajax from 'jquery/src/ajax/xhr.js';
-import $ from 'jquery/src/ajax';
-
-import { techFieldList } from '../../DicTechFieldList';
-
-const TechFrom = Form.create()(React.createClass({
-    getInitialState() {
-        return {
-            loading: false,
-            techzoneArr: [],
-            havetechzone: [],
-            skillArr: [],
-            haveskill: []
-        };
-    },
-    getData() {
-        this.props.spinState(true);
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/api/user/job",
-            success: function (data) {
-                if (data.data) {
-                    this.setState({
-                        id: data.data.id,
-                        techpeople: data.data.technicalPeopleNum,
-                        techField: data.data.searchAreaCategory ? data.data.searchAreaCategory.split(",") : [],
-                        haveskill: data.data.specialty ? data.data.specialty.split(",") : []
-                    });
-                };
-            }.bind(this),
-        }).always(function () {
-            this.props.spinState(false);
-        }.bind(this));
-    },
-    componentWillMount() {
-        this.getData();
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        let specialty = this.state.haveskill.join(",");
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/user/orgTech",
-                    data: {
-                        "id": this.state.id,
-                        "technicalPeopleNum": values.techpeople,
-                        "searchAreaCategory": values.techField ? values.techField.join(',') : '',
-                        "specialty": specialty
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                        this.getData();
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                }.bind(this));
-            }
-        });
-    },
-    addskill(e) {
-        let _me = this;
-        let theSkillArr = _me.state.haveskill;
-        let theskill = _me.props.form.getFieldValue('skill');
-        if (theskill !== undefined) {
-            if (_me.state.haveskill.length > 0) {
-                let thebool = true;
-                _me.state.haveskill.map(function (item, i) {
-                    if (item === theskill) {
-                        thebool = false
-                    };
-                });
-                if (thebool) {
-                    theSkillArr = _me.state.haveskill.concat(theskill);
-                }
-            } else if (_me.state.haveskill.length === 0) {
-                theSkillArr = _me.state.haveskill.concat(theskill);
-            };
-            this.setState({
-                haveskill: theSkillArr
-            });
-        };
-    },
-    deleteskill(e) {
-        let _me = this.state;
-        _me.haveskill.map(function (item, i) {
-            if (item === e) {
-                _me.haveskill.splice(i, 1);
-            }
-        });
-    },
-    render() {
-        const FormItem = Form.Item;
-        const Option = Select.Option;
-        const { getFieldDecorator } = this.props.form;
-        const formItemLayout = {
-            labelCol: { span: 4 },
-            wrapperCol: { span: 12 },
-        };
-        const _me = this;
-        return (
-            <Form horizontal onSubmit={this.handleSubmit} className="tech-form">
-                <FormItem
-                    labelCol={{ span: 4 }}
-                    wrapperCol={{ span: 6 }}
-                    label="技术人员数量"
-                >
-                    {getFieldDecorator('techpeople', {
-                        initialValue: this.state.techpeople
-                    })(
-                        <InputNumber />
-                        )}
-                    <span>人</span>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="专业领域"
-                >
-                    {getFieldDecorator('techField', {
-                        initialValue: this.state.techField
-                    })(
-                        <Cascader placeholder="请选择专业领域" options={techFieldList} style={{ width: 380 }} />
-                        )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 4 }}
-                    wrapperCol={{ span: 14 }}
-                    label="擅长能力"
-                >
-                    {getFieldDecorator('skill')(
-                        <div>
-                            擅长 <Input />的研究
-                            <Button type="primary" onClick={this.addskill}>添加</Button>
-                        </div>
-                    )}
-                </FormItem>
-                <div className="set-explain">
-                    {
-                        this.state.haveskill.map(function (item, i) {
-                            return <Tag key={item} closable onClose={_me.deleteskill.bind(this, item)}>{item}</Tag>
-                        }.bind(this))
-                    }
-                </div>
-                <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-tech">
-                    <div className="acc-title">
-                        <p><span>完善研究领域与擅长能力可加入平台专家,承接技术难题!</span></p>
-                    </div>
-                    <TechFrom spinState={this.spinChange} />
-                </div>
-            </Spin>
-        )
-    }
-});
-
-export default Person;

+ 0 - 59
js/component/account/set/tech.less

@@ -1,59 +0,0 @@
-.set-tech {
-    background: #fff;
-    padding: 20px;
-    .acc-title {
-        color: #333;
-        font-size: 16px;
-        margin-bottom: 10px;
-        span {
-            font-size: 12px;
-            color: #999;
-        }
-    }
-    .tech-form {
-        width: 600px;
-        #techzone {
-            .ant-cascader-picker {
-                width: 80%;
-            }
-            button {
-                border-radius: 4px;
-                vertical-align: middle;
-                margin-left: 10px;
-            }
-        }
-        #skill {
-            input {
-                width: 58.5%;
-                margin: 0 6px;
-            }
-            button {
-                border-radius: 4px;
-                vertical-align: middle;
-                margin-left: 10px;
-            }
-        }
-        .set-explain {
-            margin-left: 16.5%;
-            margin-bottom: 20px;
-            .ant-tag {
-                margin-bottom: 10px;
-            }
-        }
-        .set-radio-button {
-            margin-left: 4.5%;
-            margin-bottom: 20px;
-            .ant-radio-button-wrapper-checked {
-                background: #58a3ff;
-                color: #fff;
-            }
-        }
-        .set-submit {
-            width: 120px;
-            border-radius: 4px;
-        }
-        .ant-form-item-label {
-            text-align: left;
-        }
-    }
-}

+ 0 - 19
js/component/account/set/techSelect.jsx

@@ -1,19 +0,0 @@
-import React from 'react';
-import { Cascader } from 'antd';
-import { techList } from '../../DicTechList.js';
-
-
-const TechSelect = React.createClass({
-    onChange(value, s) {
-        if (s.length > 0) {
-            this.props.techzone(s[0].label, s[1].label, s[2].label);
-        }
-    },
-    render() {
-        return (
-            <Cascader placeholder="请选择领域" options={techList} onChange={this.onChange} />
-        )
-    }
-});
-
-export default TechSelect;

js/component/account/set/newAccount/account.jsx → js/component/account/setAccount/account.jsx


js/component/account/set/newAccount/account.less → js/component/account/setAccount/account.less


js/component/account/set/newAccount/contacts.jsx → js/component/account/setAccount/contacts.jsx


js/component/account/set/newAccount/contacts.less → js/component/account/setAccount/contacts.less


js/component/account/set/newAccount/personal.jsx → js/component/account/setAccount/personal.jsx


js/component/account/set/newAccount/unit.jsx → js/component/account/setAccount/unit.jsx


js/component/account/set/newAccount/unit.less → js/component/account/setAccount/unit.less


+ 0 - 1
js/component/login/forgetPw.jsx

@@ -2,7 +2,6 @@ import React from 'react';
 import ajax from 'jquery/src/ajax/xhr.js'
 import $ from 'jquery/src/ajax';
 import { Modal, Button, Icon, Input, message } from 'antd';
-import '../account/set/changeModal.less';
 
 const ChangePw = React.createClass({
     getInitialState() {

+ 1 - 1
webpack.config.js

@@ -80,7 +80,7 @@ module.exports = (function () {
             chunks: ['user/signIn', 'vendors']
         }),
         new HtmlWebpackPlugin({
-            title: '用户中心-首页',
+            title: '用户中心管理',
             filename: 'user/account/index.html',
             template: './template/template.html',
             chunks: ['user/account/index', 'vendors']