Forráskód Böngészése

客户端--登录页面,注册页面,团体和个人设置页面,数据接口未添加

yee 8 éve%!(EXTRA string=óta)
szülő
commit
04a2bc0dab
80 módosított fájl, 6846 hozzáadás és 238 törlés
  1. 68 0
      aftapi.md
  2. 5 0
      build/admin/index.html
  3. 1 0
      build/user/account/index.css
  4. 15 0
      build/user/account/index.html
  5. 8 0
      build/user/account/index.js
  6. 1 0
      build/user/account/set.css
  7. 15 0
      build/user/account/set.html
  8. 26 0
      build/user/account/set.js
  9. 6 1
      build/user/index.html
  10. 1 1
      build/user/index.js
  11. 1 1
      build/user/login.css
  12. 6 1
      build/user/login.html
  13. 16 5
      build/user/login.js
  14. 1 0
      build/user/signIn.css
  15. 15 0
      build/user/signIn.html
  16. 23 0
      build/user/signIn.js
  17. 6 6
      build/vendors.js
  18. 13 4
      css/base.less
  19. 0 0
      css/default.less
  20. 12 112
      css/login.less
  21. 38 0
      css/sign.less
  22. BIN
      image/acc-logo.png
  23. BIN
      image/idcard1.jpg
  24. BIN
      image/idcard1.png
  25. BIN
      image/idcard2.jpg
  26. BIN
      image/idcard2.png
  27. BIN
      image/login_more.png
  28. BIN
      image/login_qq.png
  29. BIN
      image/login_weibo.png
  30. BIN
      image/login_weixin.png
  31. BIN
      image/qq-w.png
  32. BIN
      image/weibo-w.png
  33. BIN
      image/weixin-w.png
  34. 15 0
      js/component/account/bottom.jsx
  35. 11 0
      js/component/account/bottom.less
  36. 20 0
      js/component/account/content.less
  37. 110 0
      js/component/account/index/content.jsx
  38. 127 0
      js/component/account/index/content.less
  39. 44 0
      js/component/account/index/leftTab.jsx
  40. 25 0
      js/component/account/leftTab.less
  41. 104 0
      js/component/account/set/ablt.jsx
  42. 30 0
      js/component/account/set/ablt.less
  43. 180 0
      js/component/account/set/base.jsx
  44. 100 0
      js/component/account/set/base.less
  45. 273 0
      js/component/account/set/company.jsx
  46. 66 0
      js/component/account/set/content.jsx
  47. 211 0
      js/component/account/set/edu.jsx
  48. 46 0
      js/component/account/set/edu.less
  49. 391 0
      js/component/account/set/eduPfsSelect.jsx
  50. 178 0
      js/component/account/set/group.jsx
  51. 47 0
      js/component/account/set/leftTab.jsx
  52. 44 0
      js/component/account/set/leftTabgroup.jsx
  53. 242 0
      js/component/account/set/person.jsx
  54. 54 0
      js/component/account/set/person.less
  55. 325 0
      js/component/account/set/pfs.jsx
  56. 62 0
      js/component/account/set/pfs.less
  57. 185 0
      js/component/account/set/tech.jsx
  58. 56 0
      js/component/account/set/tech.less
  59. 1337 0
      js/component/account/set/techSelect.jsx
  60. 42 0
      js/component/account/topTab.jsx
  61. 88 0
      js/component/account/topTab.less
  62. 122 0
      js/component/login/login.less
  63. 52 0
      js/component/login/loginContent.jsx
  64. 15 0
      js/component/login/loginFooter.jsx
  65. 83 0
      js/component/login/loginForm.jsx
  66. 0 53
      js/component/login/loginFrom.jsx
  67. 22 0
      js/component/login/loginTop.jsx
  68. 212 0
      js/component/sign/account.jsx
  69. 66 0
      js/component/sign/account.less
  70. 22 0
      js/component/sign/group.less
  71. 191 0
      js/component/sign/groupAccount.jsx
  72. 1202 0
      js/component/tools.js
  73. 27 0
      js/component/yearSelect.jsx
  74. 16 0
      js/user/account/index.js
  75. 16 0
      js/user/account/set.js
  76. 6 44
      js/user/login.js
  77. 28 0
      js/user/signIn.js
  78. 5 0
      template/template.html
  79. 40 5
      webpack.config.js
  80. 31 5
      webpack.config.pro.js

+ 68 - 0
aftapi.md

@@ -0,0 +1,68 @@
+
+# 接口文档
+
+# /register
+
+注册
+type 0为个人会员/1为团体会员
+request data
+```json
+{
+	"mobile": "13600000000",
+	"password": "123456",
+	"type"    : 0,
+	"companyName" : "XX科技股份有限公司",
+	"contacts"    : "张三",
+	"verificationCode" : "AE5F"
+}
+```
+response data 
+
+```json
+{
+  "data": {
+    "id": 7,
+    "mobile": "",
+    "nickname": "1236",
+    "email": "123@123.com",
+    "createTime": 1474860123000,
+    "number": 8000000,
+    "type": 0
+  },
+  "error": []
+}
+```
+
+
+# /signin
+登录
+request data
+
+```json
+{
+	"mobile": "13600000000",
+	"password": "123456"
+	"type"    :0,
+	"remember":false
+}
+``` 
+
+response data 
+
+```json
+{
+  "data": {
+    "id": 7,
+    "mobile": "13600000000",
+    "nickname": "1236",
+    "email": "123@123.com",
+    "createTime": 1474860123000,
+    "number": 8000000,
+    "type": 0
+  },
+  "error": []
+}
+```
+
+/open/getVcode
+获取验证码

+ 5 - 0
build/admin/index.html

@@ -3,6 +3,11 @@
 <head>
     <meta charset="utf-8">
     <title>admin_index</title>
+    <script>
+        window.globalConfig = {
+	  		context: " "
+	  	}
+    </script>
 </head>
 <body>
     <div id="root"></div>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 1 - 0
build/user/account/index.css


+ 15 - 0
build/user/account/index.html

@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="utf-8">
+    <title>用户中心-首页</title>
+    <script>
+        window.globalConfig = {
+	  		context: " "
+	  	}
+    </script>
+<link href="../../user/account/index.css" rel="stylesheet"></head>
+<body>
+    <div id="root"></div>
+<script type="text/javascript" src="../../vendors.js"></script><script type="text/javascript" src="../../user/account/index.js"></script></body>
+</html>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 8 - 0
build/user/account/index.js


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 1 - 0
build/user/account/set.css


+ 15 - 0
build/user/account/set.html

@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="utf-8">
+    <title>用户中心-首页</title>
+    <script>
+        window.globalConfig = {
+	  		context: " "
+	  	}
+    </script>
+<link href="../../user/account/set.css" rel="stylesheet"></head>
+<body>
+    <div id="root"></div>
+<script type="text/javascript" src="../../vendors.js"></script><script type="text/javascript" src="../../user/account/set.js"></script></body>
+</html>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 26 - 0
build/user/account/set.js


+ 6 - 1
build/user/index.html

@@ -2,7 +2,12 @@
 <html lang="en">
 <head>
     <meta charset="utf-8">
-    <title>user_index</title>
+    <title>用户首页</title>
+    <script>
+        window.globalConfig = {
+	  		context: " "
+	  	}
+    </script>
 </head>
 <body>
     <div id="root"></div>

+ 1 - 1
build/user/index.js

@@ -1 +1 @@
-webpackJsonp([1],[function(e,t,n){"use strict";function l(e){return e&&e.__esModule?e:{default:e}}var u=n(1),d=l(u),a=n(28),r=l(a);r.default.render(d.default.createElement("div",null,d.default.createElement("span",null,"this is index")),document.getElementById("root"))}]);
+webpackJsonp([3],[function(e,t,n){"use strict";function l(e){return e&&e.__esModule?e:{default:e}}var u=n(1),d=l(u),a=n(28),r=l(a);r.default.render(d.default.createElement("div",null,d.default.createElement("span",null,"this is index")),document.getElementById("root"))}]);

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 1 - 1
build/user/login.css


+ 6 - 1
build/user/login.html

@@ -2,7 +2,12 @@
 <html lang="en">
 <head>
     <meta charset="utf-8">
-    <title>user_login</title>
+    <title>用户登录</title>
+    <script>
+        window.globalConfig = {
+	  		context: " "
+	  	}
+    </script>
 <link href="../user/login.css" rel="stylesheet"></head>
 <body>
     <div id="root"></div>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 16 - 5
build/user/login.js


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 1 - 0
build/user/signIn.css


+ 15 - 0
build/user/signIn.html

@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="utf-8">
+    <title>用户注册</title>
+    <script>
+        window.globalConfig = {
+	  		context: " "
+	  	}
+    </script>
+<link href="../user/signIn.css" rel="stylesheet"></head>
+<body>
+    <div id="root"></div>
+<script type="text/javascript" src="../vendors.js"></script><script type="text/javascript" src="../user/signIn.js"></script></body>
+</html>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 23 - 0
build/user/signIn.js


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 6 - 6
build/vendors.js


+ 13 - 4
css/base.less

@@ -1,17 +1,26 @@
 body {
     color: #333;
-    font-size: 12px;
+    font-size: 14px;
+    background: #f0f0f0;
 }
 
 #root {
     width: 100%;
     height: 100%;
     min-width: 960px;
+    .wrap {
+        height: 100%;
+    }
 }
 
 .header {
-    height: 120px;
-    border-bottom: 1px solid #eee;
+    position: absolute;
+    top: 0;
+    left: 0;
+    height: 100px;
+    width: 100%;
+    background: #fff;
+    box-shadow: 0 2px 6px 0px #ccc;
 }
 
 .clearfix:before,
@@ -25,5 +34,5 @@ body {
 }
 
 .footer {
-    border-top: 1px solid #eee;
+    border-top: 1px solid #d8d8d8;
 }

+ 0 - 0
css/default.less


+ 12 - 112
css/login.less

@@ -1,109 +1,6 @@
 .wrap {
     width: 960px;
     margin: 0 auto;
-    .header {
-        .login-logo {
-            float: left;
-            height: 60px;
-            width: 540px;
-            margin: 16px 0 0 8px;
-            .logo {
-                width: 100px;
-                background: #eee;
-                padding-top: 60px;
-                float: left;
-                margin-right: 10px;
-                position: relative;
-                overflow: hidden;
-                img {
-                    position: absolute;
-                    top: 0;
-                    left: 0;
-                    height: 60px;
-                    width: 100px;
-                }
-            }
-            .logo-text {
-                float: left;
-                border-left: 1px solid #eee;
-                line-height: 60px;
-                font-size: 22px;
-                span {
-                    margin-left: 10px;
-                }
-            }
-        }
-        .back {
-            float: right;
-            line-height: 20px;
-            margin-top: 88px;
-        }
-        .text {
-            float: left;
-            width: 80%;
-            margin-left: 8px;
-            line-height: 40px;
-        }
-    }
-    .content {
-        margin: 16px 10px;
-        .login-left {
-            float: left;
-            width: 560px;
-        }
-        .login-right {
-            float: right;
-            width: 340px;
-            border-left: 1px solid #eee;
-            padding-left: 20px;
-        }
-        .login-form {
-            .ant-checkbox-wrapper {
-                width: 50%;
-                margin-right: 0;
-            }
-            button {
-                width: 100%;
-                margin: 10px 0;
-            }
-            .reg {
-                text-align: center;
-                .login-form-forgot {
-                    border-right: 1px solid #aaa;
-                    padding-right: 8px;
-                    margin-right: 8px;
-                }
-            }
-        }
-        .login-other {
-            ul {
-                width: 100%;
-                li {
-                    cursor: pointer;
-                    width: 33%;
-                    float: left;
-                    padding: 4px 10px;
-                    img {
-                        height: 24px;
-                        vertical-align: middle;
-                        float: left;
-                    }
-                    p {
-                        font-size: 14px;
-                        line-height: 24px;
-                        float: left;
-                        margin-left: 4px;
-                    }
-                }
-            }
-        }
-    }
-    .footer {
-        text-align: center;
-        p {
-            margin: 10px 0;
-        }
-    }
     //antd样式更改    
     .ant-tabs-nav {
         width: 100%;
@@ -113,17 +10,20 @@
             margin-right: 0;
         }
     }
-    .ant-input {
-        width: 81%;
-        margin-left: 10px;
+    .ant-input-group-addon {
+        font-size: 18px;
+        color: #d0d0d0;
     }
-    .ant-form-item-control {
-        span {
-            font-size: 14px;
+    .ant-tabs-bar {
+        height: 50px;
+        margin-bottom: 0;
+        background: #f0f0f0;
+        .ant-tabs-nav-container {
+            line-height: 34px;
         }
     }
-    .ant-form-item {
-        margin-top:26px;
-        margin-bottom:0px;
+    .ant-tabs-content {
+        padding: 30px 20px 0;
+        background: #fff;
     }
 }

+ 38 - 0
css/sign.less

@@ -0,0 +1,38 @@
+.wrap {
+    .accounnt-form {
+        margin-top: 120px;
+        //antd
+        .ant-tabs-bar {
+            height: 60px;
+            margin-bottom: 0;
+            border: none;
+            .ant-tabs-nav-container {
+                height: 60px;
+                line-height: 60px;
+                font-size: 18px;
+                .ant-tabs-nav-scroll {
+                    width: 100%;
+                    .ant-tabs-nav {
+                        width: 100%;
+                        .ant-tabs-tab {
+                            width: 50%;
+                            text-align: center;
+                            border: none;
+                            background: #f0f0f0;
+                            margin-bottom: 0;
+                            padding: 0;
+                        }
+                        .ant-tabs-tab-active {
+                            background: #fff;
+                        }
+                    }
+                }
+            }
+        }
+        .ant-tabs-content {
+            .ant-tabs-tabpane {
+                background: #fff;
+            }
+        }
+    }
+}

BIN
image/acc-logo.png


BIN
image/idcard1.jpg


BIN
image/idcard1.png


BIN
image/idcard2.jpg


BIN
image/idcard2.png


BIN
image/login_more.png


BIN
image/login_qq.png


BIN
image/login_weibo.png


BIN
image/login_weixin.png


BIN
image/qq-w.png


BIN
image/weibo-w.png


BIN
image/weixin-w.png


+ 15 - 0
js/component/account/bottom.jsx

@@ -0,0 +1,15 @@
+import React from 'react';
+import './bottom.less';
+
+const Bottom = React.createClass({
+    render() {
+        return (
+            <div className="account-bottom">
+                <p>公司地址   联系方式公司地址  公司地址   联系方式 公司地址 公司地址   联系方式 公司地址</p>
+                <p>公司地址   联系方式公司地址 公司地址   联系方式公司地址</p>
+            </div>
+        )
+    }
+});
+
+export default Bottom;

+ 11 - 0
js/component/account/bottom.less

@@ -0,0 +1,11 @@
+    .account-bottom {
+        width: 100%;
+        color: #d5e4f7;
+        background: #212831;
+        position: absolute;
+        bottom: 0;
+        left: 0;
+        z-index: 1;
+        text-align: center;
+        padding: 6px 0;
+    }

+ 20 - 0
js/component/account/content.less

@@ -0,0 +1,20 @@
+.acc-content {
+    height: 100%;
+    width: 100%;
+    padding-top: 84px;
+    padding-bottom: 40px;
+    background: #f0f0f0;
+    .content-right {
+        width: 84%;
+        height: 100%;
+        float:left;
+        overflow-y:auto;
+        padding: 20px;
+        .ant-spin-nested-loading {
+            height: 100%;
+            .ant-spin-container{
+                height: 100%;
+            }
+        }
+    }
+}

+ 110 - 0
js/component/account/index/content.jsx

@@ -0,0 +1,110 @@
+import React from 'react';
+import { Spin, Button, Tabs } from 'antd';
+import '../content.less';
+import './content.less';
+import LeftTab from './leftTab.jsx';
+
+import weixin from '../../../../image/weixin-w.png';
+import qq from '../../../../image/qq-w.png';
+import weibo from '../../../../image/weibo-w.png';
+
+const TabPane = Tabs.TabPane;
+
+const Content = React.createClass({
+    getInitialState() {
+        return {
+            per: '24',
+            loading: false,
+            userlvl: '1',
+            userid: '1234567',
+            follow: '0',
+            chengguo: '0',
+            kaifa: '0',
+            fuwu: '0',
+            xuqiu: '0',
+            activityArr: [{ type: '成果对接会', title: '龙岗区在线科技成果对接会——智能制造业专场', time: '2017-01-10', link: '' },
+            { type: '成果对接会', title: '钛白粉行业技术在线对接会', time: '2017-01-11', link: '' }]
+        };
+    },
+    handlekey(key) {
+        this.setState({
+            leftKey: key,
+        });
+    },
+    tabChange(key) {
+
+    },
+    render() {
+        return (
+            <div className="acc-content">
+                <LeftTab handlekey={this.handlekey} />
+                <div className="content-right">
+                    <Spin spinning={this.state.loading} className='spin-box'>
+                        <div className="index-content">
+                            <div className="index-userdata clearfix">
+                                <p className="acc-title">{this.state.userid}</p>
+                                <div className="userdata-img">
+                                    <img src="" alt="" />
+                                </div>
+                                <div className="userdata-content">
+                                    {(() => {
+                                        switch (this.state.userlvl) {
+                                            case '1':
+                                                return <p className="userdata-lvl">等级:<span>LV1</span> 初来乍到</p>;
+                                            case '2':
+                                                return <p className="userdata-lvl">等级:<span>LV2</span> 初来乍到</p>;
+                                            case '3':
+                                                return <p className="userdata-lvl">等级:<span>LV3</span> 初来乍到</p>;
+                                            case '4':
+                                                return <p className="userdata-lvl">等级:<span>LV4</span> 初来乍到</p>;
+                                            case '5':
+                                                return <p className="userdata-lvl">等级:<span>LV5</span> 初来乍到</p>;
+                                        };
+                                    })()}
+                                    <p>完善资料 {this.state.per}% ,<a href="./set.html">继续完善</a>,有助于提高您的资信</p>
+                                    <p className="userdata-relate">
+                                        <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 className="userdata-follow">已有<a href="">{this.state.follow}</a>人关注你</div>
+                                </div>
+                            </div>
+                            <div className="index-record">
+                                <p className="acc-title">我的轨迹</p>
+                                <ul className="record-list clearfix">
+                                    <li>技术成果:<a href="">{this.state.chengguo}</a>项</li>
+                                    <li>技术开发:<a href="">{this.state.kaifa}</a>项</li>
+                                    <li>科技服务:<a href="">{this.state.fuwu}</a>项</li>
+                                    <li>发布需求:<a href="">{this.state.xuqiu}</a>项</li>
+                                </ul>
+                            </div>
+                            <div className="index-activity">
+                                <Tabs defaultActiveKey="1" onChange={this.tabChange}>
+                                    <TabPane tab="活动" key="1">
+                                        <p className="acc-title">即将举办的活动</p>
+                                        <ul className="activity-list">
+                                            {
+                                                this.state.activityArr.map(function (item, i) {
+                                                    return <li key={i}>
+                                                        <span className="list-type">[{item.type}]</span>
+                                                        <span className="list-title">{item.title}</span>
+                                                        <a href={item.link}>报名</a>
+                                                        <span className="list-time">{item.time}</span>
+                                                    </li>;
+                                                })
+                                            }
+                                        </ul>
+                                    </TabPane>
+                                    <TabPane tab="其他" key="2">Content of Tab Pane 2</TabPane>
+                                </Tabs>
+                            </div>
+                        </div>
+                    </Spin>
+                </div>
+            </div>
+        )
+    }
+});
+
+export default Content;

+ 127 - 0
js/component/account/index/content.less

@@ -0,0 +1,127 @@
+    @a-color: #ea0862;
+    .index-content {
+        height: 100%;
+        .acc-title {
+            color: #333;
+            font-size: 16px;
+            margin-bottom: 10px;
+            span {
+                font-size: 12px;
+                color: #999;
+                margin-left: 10px;
+            }
+        }
+        .index-userdata {
+            background: #fff;
+            padding: 20px;
+            .userdata-img {
+                height: 120px;
+                width: 120px;
+                padding-top: 120px;
+                position: relative;
+                overflow: hidden;
+                border-radius: 50%;
+                float: left;
+                background: #eee;
+                img {
+                    height: 120px;
+                    width: 120px;
+                    position: absolute;
+                    top: 0;
+                    left: 0;
+                }
+            }
+            .userdata-content {
+                margin-left: 140px;
+                line-height: 30px;
+                position: relative;
+                a {
+                    color: @a-color;
+                }
+                .userdata-lvl {
+                    span {
+                        color: #fff;
+                        background: @a-color;
+                        border-radius: 2px;
+                        padding: 0 4px;
+                    }
+                }
+                .userdata-relate {
+                    button {
+                        border: none;
+                        border-radius: 4px;
+                        margin-top: 20px;
+                        margin-right: 20px;
+                        img {
+                            height: 20px;
+                            vertical-align: middle;
+                        }
+                        span {
+                            color: #fff;
+                        }
+                    }
+                    .relateweixin {
+                        background: #12d41e;
+                    }
+                    .relateqq {
+                        background: #3073c1;
+                    }
+                    .relateweibo {
+                        background: #cf331d;
+                    }
+                }
+                .userdata-follow {
+                    position: absolute;
+                    top: 0;
+                    right: 10px;
+                }
+            }
+        }
+        .index-record {
+            background: #fff;
+            padding: 20px;
+            margin-top: 1px;
+            .record-list {
+                li {
+                    float: left;
+                    width: 200px;
+                    margin-right: 100px;
+                    line-height: 30px;
+                    a {
+                        color: @a-color;
+                    }
+                }
+            }
+        }
+        .index-activity {
+            background: #fff;
+            padding: 20px;
+            margin-top: 20px;
+            min-height: 300px;
+            .activity-list {
+                li {
+                    border-bottom: 1px dashed #eee;
+                    padding:10px 0;
+                    .list-type {
+                        color: #666
+                    }
+                    .list-title {
+                        color: #333;
+                        margin-left: 10px;
+                    }
+                    a {
+                        padding: 0 4px;
+                        background: @a-color;
+                        color: #fff;
+                        border-radius: 2px;
+                        float: right;
+                        margin: 0 10px;
+                    }
+                    .list-time {
+                        color: #666;
+                        float: right;
+                    }
+                }
+            }
+        }
+    }

+ 44 - 0
js/component/account/index/leftTab.jsx

@@ -0,0 +1,44 @@
+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: 'tongchang',
+        };
+    },
+    handleClick(e) {
+        this.props.handlekey(e.key);
+        this.setState({
+            current: e.key,
+        });
+    },
+    render() {
+        return (
+            <Menu onClick={this.handleClick}
+                selectedKeys={[this.state.current]}
+                mode="vertical"
+                className="account-left"
+                >
+                <Menu.Item key="tongchang">
+                    常用功能
+                </Menu.Item>
+                <Menu.Item key="in">
+                    供应发布
+                </Menu.Item>
+                <Menu.Item key="want">
+                    需求发布
+                </Menu.Item>
+                <Menu.Item key="my">
+                    我的收藏
+                </Menu.Item>
+            </Menu>
+        );
+    },
+});
+
+export default LeftTab;

+ 25 - 0
js/component/account/leftTab.less

@@ -0,0 +1,25 @@
+.acc-content {
+    .account-left {
+        width: 16%;
+        height: 100%;
+        padding-top: 40px;
+        float: left;
+        border-right: none;
+        background: #e8f2fc;
+        .ant-menu-item {
+            padding: 0;
+            margin: 0;
+            border-right: none;
+            text-align: center;
+            font-size: 16px;
+            color: #4466bf;
+            background: #d5e4f7;
+            border-top:1px solid #f2f8fd;
+            border-bottom:1px solid #c0d2e4;
+        }
+        .ant-menu-item-selected {
+            background: #fff;
+            border-left: 3px solid #58a3ff;
+        }
+    }
+}

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

@@ -0,0 +1,104 @@
+import React from 'react';
+import './ablt.less';
+
+import { Tag, Input, Tooltip, Button, Spin } from 'antd';
+
+class EditableTagGroup extends React.Component {
+    constructor(props) {
+        super(props);
+        this.state = {
+            tags: ['我的标签:', '标签1', '标签2'],
+            inputVisible: false,
+            inputValue: '',
+        }
+    }
+
+    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) {
+            tags = [...tags, inputValue];
+        }
+        this.props.tagsArr(tags);
+        this.setState({
+            tags,
+            inputVisible: false,
+            inputValue: '',
+        });
+    }
+
+
+    render() {
+        const { tags, inputVisible, inputValue } = this.state;
+        return (
+            <div className="ablt-tips">
+                {tags.map((tag, index) => {
+                    const isLongTag = tag.length > 20;
+                    const tagElem = (
+                        <Tag key={tag} closable={index !== 0} afterClose={() => this.handleClose(tag)}>
+                            {isLongTag ? `${tag.slice(0, 20)}...` : 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" onClick={this.showInput.bind(this)}>+ 新标签</Button>}
+            </div>
+        );
+    }
+};
+
+const Base = React.createClass({
+    getInitialState() {
+        return {
+            loading: false
+        };
+    },
+    tagsArr(e){
+        this.state.tags = e.slice(1);
+    },
+    submit() {
+        console.log(this.state.tags);
+    },
+    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 tagsArr={this.tagsArr}/>
+                        <Button className="set-submit" type="primary" onClick={this.submit}>保存</Button>
+                    </div>
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Base;

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

@@ -0,0 +1,30 @@
+.set-ablt {
+    background: #fff;
+    height: 100%;
+    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;
+    }
+}

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

@@ -0,0 +1,180 @@
+import React from 'react';
+import { Input, Button, Select, Form, Radio, Upload, Icon, DatePicker, Spin } from 'antd';
+import './base.less';
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+const RadioGroup = Radio.Group;
+
+const edulvlArr = ["高中", "大专", "本科", "硕士研究生", "博士研究生"];
+
+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';
+
+
+const BaseFrom = Form.create()(React.createClass({
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                console.log('Received values of form: ', values);
+            }
+        });
+    },
+
+    normFile(e) {
+        if (Array.isArray(e)) {
+            return e;
+        }
+        return e && e.fileList;
+    },
+
+    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;
+    },
+    render() {
+
+        const { getFieldDecorator } = this.props.form;
+        const formItemLayout = {
+            labelCol: { span: 3 },
+            wrapperCol: { span: 12 },
+        };
+        return (
+            <Form horizontal onSubmit={this.handleSubmit} className="base-form">
+                <FormItem
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 8 }}
+                    label="学历"
+                    >
+                    {getFieldDecorator('edulvl', {
+                        rules: [{
+                            required: true, message: '请选择您的学历!',
+                        }],
+                    })(
+                        <Select className="acc-edu-lvl">
+                            {
+                                edulvlArr.map(function (item, i) {
+                                    return <Option key={i} value={item} >{item}</Option>
+                                })
+                            }
+                        </Select>
+                        )}
+                </FormItem>
+
+                <FormItem
+                    {...formItemLayout}
+                    label="出生日期"
+                    >
+                    {getFieldDecorator('birth', {
+                        rules: [{ type: 'object', required: true, message: '请选择日期!' }],
+                    })(
+                        <DatePicker />
+                        )}
+                </FormItem>
+
+                <FormItem wrapperCol={{ span: 21, offset: 3 }}>
+                    <p>请上传清晰的个人身份证正反面原件照片/扫描件 (不能截图、图片内容要求完整 ),</p>
+                    <p>要求2M 以下的jpg、jpeg、gif、png格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="身份证"
+                    >
+                    {getFieldDecorator('upload', {
+                        rules: [{
+                            required: true, message: '请上传身份证照片!',
+                        }, {
+                            validator: this.checkUpload,
+                        }],
+                        valuePropName: 'fileList',
+                        normalize: this.normFile,
+                    })(
+                        <Upload name="idcard" action="/upload.do" listType="picture" onChange={this.handleUpload}>
+                            <Button type="ghost">
+                                <Icon type="upload" /> 点击选择文件
+                            </Button>
+                        </Upload>
+                        )}
+                </FormItem>
+                <FormItem wrapperCol={{ span: 21, offset: 3 }}>
+                    <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>
+                <FormItem wrapperCol={{ span: 12, offset: 3 }}>
+                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
+                </FormItem>
+            </Form >
+        );
+    },
+}));
+
+const Base = React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+            userid: '1234567',
+            userphone: '13512345678'
+        };
+    },
+    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>{this.state.userid}</span></p>
+                        <p>登录手机号: <span>{this.state.userphone}</span></p>
+                        <div>
+                            <Button type="ghost">更换手机</Button>
+                            <Button type="primary">修改密码</Button>
+                        </div>
+                    </div>
+                    <div className="acc-bind">
+                        <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 />
+                    </div>
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Base;

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

@@ -0,0 +1,100 @@
+.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;
+                            }
+                        }
+                    }
+                }
+            }
+        }
+    }
+}

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

@@ -0,0 +1,273 @@
+import React from 'react';
+import { Input, Button, Form, Select, Radio, Upload, Icon, Spin, message, InputNumber } from 'antd';
+import './person.less';
+
+import { addressInit } from '../../tools.js';
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+const RadioGroup = Radio.Group;
+
+const edulvlArr = ["企业", "院校", "研究机构", "政府部门", "非法人团体"];
+const zizhiArr = ["高新技术型企业", "创新型企业", "双软企业", "小心微利企业", "科技部认定示范企业","其他"];
+
+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 }));
+        }
+    }
+
+    render() {
+        const imageUrl = this.state.imageUrl;
+        return (
+            <Upload
+                className="avatar-uploader"
+                name="avatar"
+                showUploadList={false}
+                action="/upload.do"
+                beforeUpload={beforeUpload}
+                onChange={this.handleChange}
+                >
+                {
+                    imageUrl ?
+                        <img src={imageUrl} role="presentation" className="avatar" /> :
+                        <Icon type="plus" className="avatar-uploader-trigger" />
+                }
+            </Upload>
+        );
+    }
+};
+
+const PersonFrom = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                console.log('Received values of form: ', values);
+            }
+        });
+    },
+
+    normFile(e) {
+        if (Array.isArray(e)) {
+            return e;
+        }
+        return e && e.fileList;
+    },
+    componentDidMount() {
+        addressInit('cmbProvince', 'cmbCity', 'cmbArea');
+    },
+    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
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 8 }}
+                    label="身份类型"
+                    >
+                    {getFieldDecorator('edulvl')(
+                        <Select className="acc-edu-lvl">
+                            {
+                                edulvlArr.map(function (item, i) {
+                                    return <Option key={i} value={item} >{item}</Option>
+                                })
+                            }
+                        </Select>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="单位名称"
+                    >
+                    {getFieldDecorator('nickname', {
+                        initialValue: this.props.companyname
+                    })(
+                        <Input />
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="居住地"
+                    >
+                    {getFieldDecorator('province')(
+                        <div>
+                            <select id="cmbProvince" name="cmbProvince"></select>
+                            <select id="cmbCity" name="cmbCity"></select>
+                            <select id="cmbArea" name="cmbArea"></select>
+                        </div>
+                    )}
+                </FormItem>
+
+                <FormItem
+                    {...formItemLayout}
+                    label="单位规模"
+                    >
+                    {getFieldDecorator('peoplenum')(
+                        <div className="numberinput">
+                            <InputNumber /><span>人</span>
+                        </div>
+                    )}
+                </FormItem>
+
+                <FormItem
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 20 }}
+                    label="单位简介"
+                    >
+                    {getFieldDecorator('intro')(
+                        <div>
+                            <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>
+                        </div>
+                    )}
+                </FormItem>
+
+                <FormItem
+                    {...formItemLayout}
+                    label="归属单位"
+                    >
+                    {getFieldDecorator('companyfrom')(
+                        <Input placeholder="非法人单位填写。"/>
+                    )}
+                </FormItem>
+
+                <FormItem
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 8 }}
+                    label="企业资质"
+                    >
+                    {getFieldDecorator('qiyezizhi')(
+                        <Select className="acc-edu-lvl">
+                            {
+                                zizhiArr.map(function (item, i) {
+                                    return <Option key={i} value={item} >{item}</Option>
+                                })
+                            }
+                        </Select>
+                    )}
+                </FormItem>
+                <FormItem
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 6 }}
+                    label="年营业额"
+                    >
+                    {getFieldDecorator('turnover')(
+                        <div>
+                            <InputNumber /><span>万元</span>
+                        </div>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="公司logo"
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 20 }}
+                    hasFeedback
+                    >
+                    {getFieldDecorator('avatar')(
+                        <Avatar />
+                    )}
+                </FormItem>
+                <div className="set-explain">
+                    <p>上传的照片图片格式应为jpg格式,大小在2M以内</p>
+                </div>
+                <FormItem
+                    {...formItemLayout}
+                    label="宣传图片"
+                    >
+                    {getFieldDecorator('companyimg', {
+                        valuePropName: 'fileList',
+                        normalize: this.normFile,
+                    })(
+                        <Upload
+                            name="companyimg"
+                            action="/upload.do"
+                            listType="picture"
+                            beforeUpload={beforeUpload}
+                            onChange={this.handleUpload}>
+                            <Button type="primary">
+                                <Icon type="upload" /> 点击选择文件
+                            </Button>
+                            <p>上传的照片图片格式应为jpg格式,大小在2M以内</p>
+                        </Upload>
+                        )}
+                </FormItem>
+
+                <FormItem wrapperCol={{ span: 12, offset: 3 }}>
+                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
+                </FormItem>
+            </Form >
+        );
+    },
+}));
+
+const Person = React.createClass({
+    getInitialState() {
+        return {
+            companyname: '湖南智明信息技术有限公司',
+            loading: false
+        };
+    },
+    render() {
+        return (
+            <Spin spinning={this.state.loading} className='spin-box'>
+                <div className="set-person">
+                    <div className="acc-detail">
+                        <p className="acc-title">个人资料</p>
+                        <PersonFrom companyname={this.state.companyname} />
+                    </div>
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Person;

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

@@ -0,0 +1,66 @@
+import React from 'react';
+import '../content.less';
+import LeftTab from './leftTab.jsx';
+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';
+
+const Content = React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+            leftKey: 'base',
+            userType: '1'
+        };
+    },
+    handlekey(key) {
+        this.setState({
+            leftKey: key,
+        });
+    },
+    render() {
+        return (
+            <div className="acc-content">
+                {(() => {
+                    switch (this.state.userType) {
+                        case '0':
+                            return <LeftTab handlekey={this.handlekey} />;
+                        case '1':
+                            return <GroupLeftTab handlekey={this.handlekey} />;
+                    };
+                })()}
+                <div className="content-right">
+                    {(() => {
+                        switch (this.state.leftKey) {
+                            case 'base':
+                                return <Base />;
+                            case 'person':
+                                return <Person />;
+                            case 'edu':
+                                return <Edu />;
+                            case 'pfs':
+                                return <Pfs />;
+                            case 'ablt':
+                                return <Ablt />;
+                            case 'group':
+                                return <Group />;
+                            case 'company':
+                                return <Company />;
+                            case 'tech':
+                                return <Tech />;
+                        };
+                    })()}
+                </div>
+            </div>
+        )
+    }
+});
+
+export default Content;

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

@@ -0,0 +1,211 @@
+import React from 'react';
+import { Input, Button, Form, Select, Upload, Icon, Spin, message } from 'antd';
+import './edu.less';
+
+import EduPfsSelect from './eduPfsSelect.jsx';
+import YearSelect from '../../yearSelect.jsx';
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+
+const edulvlArr = ["高中", "大专", "本科", "硕士研究生", "博士研究生"];
+
+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 }));
+        }
+    }
+
+    render() {
+        const imageUrl = this.state.imageUrl;
+        return (
+            <Upload
+                className="avatar-uploader"
+                name={this.props.name}
+                showUploadList={false}
+                action="/upload.do"
+                beforeUpload={beforeUpload}
+                onChange={this.handleChange}
+                >
+                {
+                    imageUrl ?
+                        <img src={imageUrl} role="presentation" id={this.props.name} /> :
+                        <Icon type="plus" className="avatar-uploader-trigger" />
+                }
+            </Upload>
+        );
+    }
+};
+
+const EduFrom = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                console.log('Received values of form: ', values);
+            }
+        });
+    },
+    handleyear(e){
+        console.log(e);
+    },
+    normFile(e) {
+        if (Array.isArray(e)) {
+            return e;
+        }
+        return e && e.fileList;
+    },
+    introChange(e) {
+        console.log(e);
+    },
+    professional(e1,e2){
+        console.log(e1,e2);
+    },
+    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')(
+                        <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')(
+                        <EduPfsSelect Professional={this.professional}/>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="毕业学校"
+                    >
+                    {getFieldDecorator('schoolname')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    labelCol={{ span: 4 }}
+                    wrapperCol={{ span: 4 }}
+                    label="毕业时间"
+                    >
+                    {getFieldDecorator('schooltime')(
+                        <YearSelect handleyear={this.handleyear}/>
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="学历证书"
+                    hasFeedback
+                    >
+                    {getFieldDecorator('eduimg')(
+                        <Avatar name="eduimg"/>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="学历证书编号"
+                    >
+                    {getFieldDecorator('edunum')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="学位证书"
+                    hasFeedback
+                    >
+                    {getFieldDecorator('degreeimg')(
+                        <Avatar name="degreeimg"/>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="学历证书编号"
+                    >
+                    {getFieldDecorator('degreenum')(
+                        <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
+        };
+    },
+    render() {
+        return (
+            <Spin spinning={this.state.loading} className='spin-box'>
+                <div className="set-edu">
+                    <div className="acc-detail">
+                        <p className="acc-title">最高学历</p>
+                        <EduFrom />
+                    </div>
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Person;

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

@@ -0,0 +1,46 @@
+.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;
+    }
+    .avatar-uploader-trigger {
+        display: table-cell;
+        vertical-align: middle;
+        font-size: 28px;
+        color: #999;
+    }
+}

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

@@ -0,0 +1,391 @@
+import React from 'react';
+import { Cascader } from 'antd';
+
+var DataObject = [{
+    value: 1,
+    label: "数理科学",
+    children: [{
+        value: 2,
+        label: "数学"
+    }, {
+        value: 3,
+        label: "力学"
+    }, {
+        value: 4,
+        label: "天文学"
+    }, {
+        value: 5,
+        label: "物理学"
+    }]
+}, {
+    value: 6,
+    label: "化学科学",
+    children: [{
+        value: 7,
+        label: "无机化学"
+    }, {
+        value: 8,
+        label: "有机化学"
+    }, {
+        value: 9,
+        label: "物理化学"
+    }, {
+        value: 10,
+        label: "高分子科学"
+    }, {
+        value: 11,
+        label: "分析化学"
+    }, {
+        value: 12,
+        label: "化学工程及工业化学"
+    }, {
+        value: 13,
+        label: "环境化学"
+    }]
+}, {
+    value: 14,
+    label: "生命科学",
+    children: [{
+        value: 15,
+        label: "微生物学"
+    }, {
+        value: 16,
+        label: "植物学"
+    }, {
+        value: 17,
+        label: "生态学"
+    }, {
+        value: 18,
+        label: "动物学"
+    }, {
+        value: 19,
+        label: "生物物理、生物化学与分子生物学"
+    }, {
+        value: 20,
+        label: "遗传学与生物信息学"
+    }, {
+        value: 21,
+        label: "细胞生物学"
+    }, {
+        value: 22,
+        label: "免疫学"
+    }, {
+        value: 23,
+        label: "神经科学、认知科学与心理学"
+    }, {
+        value: 24,
+        label: "生物力学与组织工程学"
+    }, {
+        value: 25,
+        label: "生理学与整合生物学"
+    }, {
+        value: 26,
+        label: "发育生物学与生殖生物学"
+    }, {
+        value: 27,
+        label: "农学基础与作物学"
+    }, {
+        value: 28,
+        label: "植物保护学"
+    }, {
+        value: 29,
+        label: "园艺学与植物营养学"
+    }, {
+        value: 30,
+        label: "林学"
+    }, {
+        value: 31,
+        label: "畜牧学与草地科学"
+    }, {
+        value: 32,
+        label: "兽医学"
+    }, {
+        value: 33,
+        label: "水产学"
+    }, {
+        value: 34,
+        label: "食品科学"
+    }]
+}, {
+    value: 35,
+    label: "地球科学",
+    children: [{
+        value: 36,
+        label: "地理学"
+    }, {
+        value: 37,
+        label: "地质学"
+    }, {
+        value: 38,
+        label: "地球化学"
+    }, {
+        value: 39,
+        label: "地球物理学和空间物理学"
+    }, {
+        value: 40,
+        label: "大气科学"
+    }, {
+        value: 41,
+        label: "海洋科学"
+    }]
+}, {
+    value: 42,
+    label: "工程材料",
+    children: [{
+        value: 43,
+        label: "金属材料"
+    }, {
+        value: 44,
+        label: "无机非金属材料"
+    }, {
+        value: 45,
+        label: "有机高分子材料"
+    }, {
+        value: 46,
+        label: "冶金与矿业"
+    }, {
+        value: 47,
+        label: "机械工程"
+    }, {
+        value: 48,
+        label: "工程热物理与能源利用"
+    }, {
+        value: 49,
+        label: "电气科学与工程"
+    }, {
+        value: 50,
+        label: "建筑环境与结构工程"
+    }, {
+        value: 51,
+        label: "水利科学与海洋工程"
+    }]
+}, {
+    value: 52,
+    label: "信息科学",
+    children: [{
+        value: 53,
+        label: "电子学与信息系统"
+    }, {
+        value: 54,
+        label: "计算机科学"
+    }, {
+        value: 55,
+        label: "自动化"
+    }, {
+        value: 56,
+        label: "半导体科学与信息器件"
+    }, {
+        value: 57,
+        label: "光学和光电子学"
+    }]
+}, {
+    value: 58,
+    label: "医学科学",
+    children: [{
+        value: 59,
+        label: "呼吸系统"
+    }, {
+        value: 60,
+        label: "循环系统"
+    }, {
+        value: 61,
+        label: "消化系统"
+    }, {
+        value: 62,
+        label: "生殖系统/围生医学/新生儿"
+    }, {
+        value: 63,
+        label: "泌尿系统"
+    }, {
+        value: 64,
+        label: "运动系统"
+    }, {
+        value: 65,
+        label: "内分泌系统/代谢和营养支持"
+    }, {
+        value: 66,
+        label: "血液系统"
+    }, {
+        value: 67,
+        label: "神经系统和精神疾病"
+    }, {
+        value: 68,
+        label: "医学免疫学"
+    }, {
+        value: 69,
+        label: "皮肤及其附属器"
+    }, {
+        value: 70,
+        label: "眼科学"
+    }, {
+        value: 71,
+        label: "耳鼻咽喉头颈科学"
+    }, {
+        value: 72,
+        label: "口腔颅颌面科学"
+    }, {
+        value: 73,
+        label: "急重症医学/创伤/烧伤/整形"
+    }, {
+        value: 74,
+        label: "肿瘤学"
+    }, {
+        value: 75,
+        label: "康复医学"
+    }, {
+        value: 76,
+        label: "影像医学与生物医学工程"
+    }, {
+        value: 77,
+        label: "医学病原微生物与感染"
+    }, {
+        value: 78,
+        label: "检验医学"
+    }, {
+        value: 79,
+        label: "特种医学"
+    }, {
+        value: 80,
+        label: "放射医学"
+    }, {
+        value: 81,
+        label: "法医学"
+    }, {
+        value: 82,
+        label: "地方病学/职业病学"
+    }, {
+        value: 83,
+        label: "老年医学"
+    }, {
+        value: 84,
+        label: "预防医学"
+    }, {
+        value: 85,
+        label: "中医学"
+    }, {
+        value: 86,
+        label: "中药学"
+    }, {
+        value: 87,
+        label: "中西医结合"
+    }, {
+        value: 88,
+        label: "药物学"
+    }, {
+        value: 89,
+        label: "药理学"
+    }]
+}, {
+    value: 90,
+    label: "人文学科",
+    children: [{
+        value: 91,
+        label: "哲学 "
+    }, {
+        value: 92,
+        label: "中国语言文学 "
+    }, {
+        value: 93,
+        label: "外国语言文学 "
+    }, {
+        value: 94,
+        label: "新闻传播学 "
+    }, {
+        value: 95,
+        label: "艺术学 "
+    }, {
+        value: 96,
+        label: "历史学 "
+    }]
+}, {
+    value: 97,
+    label: "社会科学 ",
+    children: [{
+        value: 98,
+        label: "经济学 "
+    }, {
+        value: 99,
+        label: "法学 "
+    }, {
+        value: 100,
+        label: "政治学 "
+    }, {
+        value: 101,
+        label: "社会学 "
+    }, {
+        value: 102,
+        label: "民族学 "
+    }, {
+        value: 103,
+        label: "马克思主义理论 "
+    }, {
+        value: 104,
+        label: "教育学 "
+    }, {
+        value: 105,
+        label: "心理学( 可授教育学、 理学学位) "
+    }, {
+        value: 106,
+        label: "体育学 "
+    }]
+}, {
+    value: 107,
+    label: "军事科学 ",
+    children: [{
+        value: 108,
+        label: "军事思想及军事历史 "
+    }, {
+        value: 109,
+        label: "战略学 "
+    }, {
+        value: 110,
+        label: "战役学 "
+    }, {
+        value: 111,
+        label: "战术学 "
+    }, {
+        value: 112,
+        label: "军队指挥学 "
+    }, {
+        value: 113,
+        label: "军制学 "
+    }, {
+        value: 114,
+        label: "军队政治工作学 "
+    }, {
+        value: 115,
+        label: "军事后勤学与军事装备学 "
+    }]
+}, {
+    value: 116,
+    label: "管理科学 ",
+    children: [{
+        value: 117,
+        label: "管理科学与工程(可授管理学、 工学学位)"
+    }, {
+        value: 118,
+        label: "工商管理 "
+    }, {
+        value: 119,
+        label: "农林经济管理 "
+    }, {
+        value: 120,
+        label: "公共管理 "
+    }, {
+        value: 121,
+        label: "图书馆报与档案管理 "
+    }]
+}];
+
+const eduPfsSelect = React.createClass({
+    onChange(value,s) {
+        this.props.Professional(s[0].label,s[1].label);
+    },
+    render() {
+        return (
+            <Cascader options={DataObject} onChange={this.onChange} />
+        )
+    }
+});
+
+export default eduPfsSelect;

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

@@ -0,0 +1,178 @@
+import React from 'react';
+import { Input, Button, Select, Form, Radio, Upload, Icon, DatePicker, Spin } from 'antd';
+import './base.less';
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+const RadioGroup = Radio.Group;
+
+
+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';
+
+
+const BaseFrom = Form.create()(React.createClass({
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                console.log('Received values of form: ', values);
+            }
+        });
+    },
+
+    normFile(e) {
+        if (Array.isArray(e)) {
+            return e;
+        }
+        return e && e.fileList;
+    },
+
+    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 (!(/^1[34578]\d{9}$/.test(value))) {
+            callback('请输入正确的手机号码!');
+        } else {
+            callback();
+        }
+    },
+    render() {
+
+        const { getFieldDecorator } = this.props.form;
+        const formItemLayout = {
+            labelCol: { span: 3 },
+            wrapperCol: { span: 12 },
+        };
+        return (
+            <Form horizontal onSubmit={this.handleSubmit} className="base-form">
+                <FormItem
+                    {...formItemLayout}
+                    label='联系人'
+                    hasFeedback
+                    >
+                    {getFieldDecorator('contact')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="手机号码"
+                    hasFeedback
+                    >
+                    {getFieldDecorator('phone', {
+                        initialValue: this.props.userphone,
+                        rules: [
+                            {
+                                validator: this.checkPhone
+                            }],
+                    })(
+                        <Input />
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="电子邮箱"
+                    hasFeedback
+                    >
+                    {getFieldDecorator('email', {
+                        rules: [{
+                            type: 'email', message: '请输入正确的邮箱地址!',
+                        }],
+                    })(
+                        <Input />
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="固定电话"
+                    >
+                    {getFieldDecorator('telephone')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="QQ"
+                    >
+                    {getFieldDecorator('qq')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="通讯地址"
+                    >
+                    {getFieldDecorator('address')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem wrapperCol={{ span: 12, offset: 3 }}>
+                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
+                </FormItem>
+            </Form >
+        );
+    },
+}));
+
+const Base = React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+            userid: '1234567',
+            userphone: '13512345678',
+            zoneState: '0'
+        };
+    },
+    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>{this.state.userid}</span></p>
+                        <p>空间状态: <span>{this.state.zoneState == '0' ? <a href="">普通空间</a> : <a href="">认证空间</a>}</span>(通过<a href="">实名认证</a>,即可免费开通认证空间)  </p>
+                        <div>
+                            <Button type="primary">修改密码</Button>
+                        </div>
+                    </div>
+                    <div className="acc-bind">
+                        <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 userphone={this.state.userphone} />
+                    </div>
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Base;

+ 47 - 0
js/component/account/set/leftTab.jsx

@@ -0,0 +1,47 @@
+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: 'base',
+        };
+    },
+    handleClick(e) {
+        this.props.handlekey(e.key);
+        this.setState({
+            current: e.key,
+        });
+    },
+    render() {
+        return (
+            <Menu onClick={this.handleClick}
+                selectedKeys={[this.state.current]}
+                mode="vertical"
+                className="account-left"
+                >
+                <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>
+            </Menu>
+        );
+    },
+});
+
+export default LeftTab;

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

@@ -0,0 +1,44 @@
+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,
+        });
+    },
+    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>
+        );
+    },
+});
+
+export default LeftTab;

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

@@ -0,0 +1,242 @@
+import React from 'react';
+import { Input, Button, Form, Select, Radio, Upload, Icon, Spin, message } from 'antd';
+import './person.less';
+import {addressInit} from '../../tools.js';
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+const RadioGroup = Radio.Group;
+
+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 }));
+        }
+    }
+
+    render() {
+        const imageUrl = this.state.imageUrl;
+        return (
+            <Upload
+                className="avatar-uploader"
+                name="avatar"
+                showUploadList={false}
+                action="/upload.do"
+                beforeUpload={beforeUpload}
+                onChange={this.handleChange}
+                >
+                {
+                    imageUrl ?
+                        <img src={imageUrl} role="presentation" className="avatar" /> :
+                        <Icon type="plus" className="avatar-uploader-trigger" />
+                }
+            </Upload>
+        );
+    }
+};
+
+const PersonFrom = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                console.log('Received values of form: ', values);
+            }
+        });
+    },
+
+    normFile(e) {
+        if (Array.isArray(e)) {
+            return e;
+        }
+        return e && e.fileList;
+    },
+    componentDidMount(){
+        addressInit('cmbProvince', 'cmbCity', 'cmbArea');
+    },
+    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')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="居住地"
+                    >
+                    {getFieldDecorator('province')(
+                        <div>
+                            <select id="cmbProvince" name="cmbProvince"></select>
+                            <select id="cmbCity" name="cmbCity"></select>
+                            <select id="cmbArea" name="cmbArea"></select>
+                        </div>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="个人头像"
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 20 }}
+                    hasFeedback
+                    >
+                    {getFieldDecorator('avatar')(
+                        <Avatar />
+                    )}
+                </FormItem>
+                <div className="set-explain">
+                    <p>请上传清晰的个人身份证正反面原件照片/扫描件 (不能截图、图片内容要求完整 ),</p>
+                    <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
+                </div>
+                <FormItem
+                    {...formItemLayout}
+                    label="生活照"
+                    >
+                    {getFieldDecorator('liveimg', {
+                        valuePropName: 'fileList',
+                        normalize: this.normFile,
+                    })(
+                        <Upload
+                            name="idcard"
+                            action="/upload.do"
+                            listType="picture"
+                            beforeUpload={beforeUpload}
+                            onChange={this.handleUpload}>
+                            <Button type="primary">
+                                <Icon type="upload" /> 点击选择文件
+                            </Button>
+                            <p>上传的照片图片格式应为jpg格式,大小在2M以内</p>
+                        </Upload>
+                        )}
+                </FormItem>
+
+                <FormItem
+                    labelCol={{ span: 3 }}
+                    wrapperCol={{ span: 20 }}
+                    label="个人简介"
+                    >
+                    {getFieldDecorator('intro')(
+                        <div>
+                            <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>
+                        </div>
+                    )}
+                </FormItem>
+
+                <FormItem
+                    {...formItemLayout}
+                    label="电子邮箱"
+                    hasFeedback
+                    >
+                    {getFieldDecorator('email', {
+                        rules: [{
+                            type: 'email', message: '请输入正确的邮箱地址!',
+                        }],
+                    })(
+                        <Input />
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="固定电话"
+                    >
+                    {getFieldDecorator('telephone')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="QQ"
+                    >
+                    {getFieldDecorator('qq')(
+                        <Input />
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="通讯地址"
+                    >
+                    {getFieldDecorator('address')(
+                        <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
+        };
+    },
+    render() {
+        return (
+            <Spin spinning={this.state.loading} className='spin-box'>
+                <div className="set-person">
+                    <div className="acc-detail">
+                        <p className="acc-title">个人资料</p>
+                        <PersonFrom />
+                    </div>
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Person;

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

@@ -0,0 +1,54 @@
+.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;
+            }
+        }
+    }
+    .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;
+    }
+}

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 325 - 0
js/component/account/set/pfs.jsx


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

@@ -0,0 +1,62 @@
+.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: relative;
+            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;
+    }
+    .avatar-uploader-trigger {
+        display: table-cell;
+        vertical-align: middle;
+        font-size: 28px;
+        color: #999;
+    }
+}

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

@@ -0,0 +1,185 @@
+import React from 'react';
+import { Input, Button, Form, Select, Icon, Spin, InputNumber, Tag } from 'antd';
+import './tech.less';
+
+import TechSelect from './techSelect.jsx';
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+
+const edulvlArr = ["高中", "大专", "本科", "硕士研究生", "博士研究生"];
+
+const TechFrom = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+            techzoneArr: [],
+            havetechzone: [],
+            skillArr: [],
+            haveskill: []
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                console.log('Received values of form: ', values);
+            }
+        });
+    },
+    techzone(x, y, z) {
+        this.state.selecttech = x + '/' + y + '/' + z;
+    },
+    addtechzone(e) {
+        let _me = this;
+        let newArr = _me.state.techzoneArr;
+        if (this.state.selecttech !== undefined) {
+            if (_me.state.techzoneArr.length > 0) {
+                let thebool = true;
+                _me.state.techzoneArr.map(function (item, i) {
+                    if (item === _me.state.selecttech) {
+                        thebool = false
+                    };
+                });
+                if (thebool) {
+                    newArr = _me.state.techzoneArr.concat(_me.state.selecttech);
+                }
+            } else if (_me.state.techzoneArr.length === 0) {
+                newArr = _me.state.techzoneArr.concat(_me.state.selecttech);
+            }
+            this.setState({
+                techzoneArr: newArr
+            });
+        };
+    },
+    deletetechzone(e) {
+        let _me = this.state;
+        let newArr = [];
+        _me.techzoneArr.map(function (item, i) {
+            if (item !== e) {
+                newArr.push(item);
+            }
+        });
+        this.setState({
+            techzoneArr:newArr
+        })
+    },
+    addskill(e) {
+        let _me = this;
+        let theskill = _me.props.form.getFieldValue('skill')
+        if (theskill !== undefined) {
+            if (_me.state.skillArr.length > 0) {
+                let thebool = true;
+                _me.state.skillArr.map(function (item, i) {
+                    if (item === theskill) {
+                        thebool = false
+                    };
+                });
+                if (thebool) {
+                    _me.state.skillArr.push(theskill);
+                }
+            } else if (_me.state.skillArr.length === 0) {
+                _me.state.skillArr.push(theskill);
+            }
+            this.setState({
+                haveskill: _me.state.skillArr
+            });
+        };
+        console.log(_me.state.skillArr);
+    },
+    deleteskill(e) {
+        let _me = this.state;
+        _me.skillArr.map(function (item, i) {
+            if (item === e) {
+                _me.skillArr.splice(i, 1);
+            }
+        });
+        console.log(_me.skillArr);
+    },
+    render() {
+        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')(
+                        <div>
+                            <InputNumber /><span>人</span>
+                        </div>
+                    )}
+                </FormItem>
+                <FormItem
+                    labelCol={{ span: 4 }}
+                    wrapperCol={{ span: 14 }}
+                    label="重点研究领域"
+                    >
+                    {getFieldDecorator('techzone')(
+                        <div>
+                            <TechSelect techzone={this.techzone} />
+                            <Button type="primary" onClick={this.addtechzone}>添加</Button>
+                        </div>
+                    )}
+                </FormItem>
+                <div className="set-explain">
+                    {
+                        this.state.techzoneArr.map(function (item, i) {
+                            return <Tag key={i} closable afterClose={_me.deletetechzone.bind(this, item)}>{item}</Tag>
+                        }.bind(this))
+                    }
+                </div>
+                <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
+        };
+    },
+    render() {
+        return (
+            <Spin spinning={this.state.loading} className='spin-box'>
+                <div className="set-tech">
+                    <div className="acc-title">
+                        <p><span>完善研究领域与擅长能力可加入平台专家,承接技术难题!</span></p>
+                    </div>
+                    <TechFrom />
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Person;

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

@@ -0,0 +1,56 @@
+.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;
+        }
+        .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;
+        }
+    }
+}

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 1337 - 0
js/component/account/set/techSelect.jsx


+ 42 - 0
js/component/account/topTab.jsx

@@ -0,0 +1,42 @@
+import React from 'react';
+import { Row, Col } from 'antd';
+import './topTab.less';
+
+import logo from '../../../image/acc-logo.png';
+
+const TopTab = React.createClass({
+    getInitialState() {
+        return {
+            username: 'username',
+        };
+    },
+    render() {
+        return (
+            <div className="account-top">
+                <div className="acc-top-user">
+                    <span className="acc-top-user-name">欢迎您, {this.state.username} <a href="">[ 退出 ]</a></span>
+                    <span className="acc-top-user-toindex"><a href="../index.html">返回首页</a></span>
+                </div>
+                <div className="acc-index">
+                    <div className="acc-index-imgbox">
+                        <img src={logo} alt="" />
+                    </div>
+                    <span><a href="./index.html">会员中心首页</a></span>
+                </div>
+                <div className="acc-top-tab">
+                    <Row>
+                        <Col className={this.props.active === 'set' ? 'active' : '' } span={2}><a href="./set.html">账号设置</a></Col>
+                        <Col className={this.props.active === 'guanli' ? 'active' : '' } span={2}><a href="./set.html">供需管理</a></Col>
+                        <Col className={this.props.active === 'jiaoliu' ? 'active' : '' } span={2}><a href="./set.html">交流互动</a></Col>
+                        <Col className={this.props.active === 'huodong' ? 'active' : '' } span={2}><a href="./set.html">活动管理</a></Col>
+                        <Col className={this.props.active === 'jishu' ? 'active' : '' } span={2}><a href="./set.html">技术评估</a></Col>
+                        <Col className={this.props.active === 'pingshen' ? 'active' : '' } span={2}><a href="./set.html">评审管理</a></Col>
+                        <Col className={this.props.active === 'yanfa' ? 'active' : '' } span={2}><a href="./set.html">研发平台</a></Col>
+                    </Row>
+                </div>
+            </div>
+        )
+    }
+});
+
+export default TopTab;

+ 88 - 0
js/component/account/topTab.less

@@ -0,0 +1,88 @@
+    .account-top {
+        width: 100%;
+        height: 84px;
+        border-bottom: 1px solid #eee;
+        background: #fff;
+        position: absolute;
+        top: 0;
+        left: 0;
+        z-index: 1;
+        .acc-top-user {
+            height: 34px;
+            line-height: 34px;
+            background: #f8f8f8;
+            .acc-top-user-name {
+                margin-left: 10px;
+            }
+            .acc-top-user-toindex {
+                float: right;
+                margin-right: 10px;
+            }
+        }
+        .acc-index {
+            height: 90px;
+            width: 16%;
+            position: absolute;
+            top: 34px;
+            left: 0;
+            color: #fff;
+            background: #4665bf;
+            padding:27px 10px;
+            .acc-index-imgbox{
+                width: 36px;
+                height: 36px;
+                padding-top: 36px;
+                position: relative;
+                overflow: hidden;
+                float: left;
+                img {
+                    position: absolute;
+                    top: 0;
+                    left: 0;
+                    height: 36px;
+                    width: auto;
+                }
+            }
+            span {
+                margin-left: 10px;
+                font-size: 20px;
+                line-height: 36px;
+                a {
+                    color:#fff;
+                }
+            }
+        }
+        .acc-top-tab {
+            margin-left: 16%;
+            height: 50px;
+            line-height: 50px;
+            font-size: 16px;
+            text-align: center;
+            background: #4665bf;
+            color: #fff;
+            border-left: 1px solid #344c8f;
+            .ant-row {
+                padding-left: 20px;
+                border-left: 1px solid #6b84cc;
+                div {
+                    margin:0 10px;
+                    a {
+                        color:#fff;
+                    }
+                }
+                .active {
+                    font-size: 18px;
+                    &:after {
+                        content: '';
+                        position: absolute;
+                        left: 0;
+                        bottom: 0;
+                        display: block;
+                        width: 100%;
+                        height: 3px;
+                        background: #58a3ff;
+                    }
+                }
+            }
+        }
+    }

+ 122 - 0
js/component/login/login.less

@@ -0,0 +1,122 @@
+.wrap {
+    width: 960px;
+    margin: 0 auto;
+    .header {
+        .login-logo {
+            height: 80px;
+            width: 960px;
+            margin: 20px auto;
+            .logo {
+                width: 160px;
+                padding-top: 60px;
+                float: left;
+                margin-left: 40px;
+                border-right: 1px solid #eee;
+                position: relative;
+                overflow: hidden;
+                img {
+                    position: absolute;
+                    top: 0;
+                    left: 0;
+                    height: 60px;
+                    width: 120px;
+                }
+            }
+            .logo-text {
+                width: 760px;
+                float: left;
+                line-height: 60px;
+                font-size: 24px;
+                .back {
+                    float: right;
+                    font-size: 16px;
+                    line-height: 60px;
+                    a {
+                        color: #333;
+                    }
+                }
+                span {
+                    margin-left: 10px;
+                }
+            }
+        }
+    }
+    .content {
+        margin-top: 120px;
+        margin-bottom: 40px;
+        .login-left {
+            float: left;
+            margin-top: 54px;
+            img {
+                width: 520px;
+                height: 340px;
+            }
+        }
+        .login-right {
+            float: right;
+            width: 340px;
+            border: 1px solid #d8d8d8;
+            margin: 40px;
+            .tabtwo {
+                margin-left: 40px;
+            }
+        }
+        .login-form {
+            .ant-checkbox-wrapper {
+                width: 50%;
+                margin-right: 0;
+            }
+            button {
+                width: 100%;
+                margin: 20px 0;
+            }
+            .login-form-forgot {
+                float: right;
+            }
+        }
+        .login-other {
+            padding: 0 20px;
+            border-top: 1px solid #eee;
+            background: #fff;
+            ul {
+                width: 100%;
+                float: left;
+                li {
+                    cursor: pointer;
+                    width: 22%;
+                    float: left;
+                    padding: 14px 10px 14px 0px;
+                    img {
+                        height: 18px;
+                        vertical-align: middle;
+                        float: left;
+                    }
+                    p {
+                        font-size: 14px;
+                        line-height: 18px;
+                        float: left;
+                        margin-left: 4px;
+                    }
+                }
+                .join {
+                    width: 34%;
+                    padding: 14px 0 14px 12px;
+                    ;
+                    p {
+                        margin-left: 6px;
+                        font-size: 16px;
+                        color: #ea0862;
+                    }
+                }
+            }
+        }
+    }
+    .footer {
+        padding-top: 20px;
+        text-align: center;
+        p {
+            margin: 10px 0;
+        }
+    }
+    
+}

+ 52 - 0
js/component/login/loginContent.jsx

@@ -0,0 +1,52 @@
+import React from 'react';
+import { Icon, Tabs } from 'antd';
+import LoginForm from './loginForm.jsx';
+
+import loginqq from '../../../image/login_qq.png';
+import loginweixin from '../../../image/login_weixin.png';
+import loginweibo from '../../../image/login_weibo.png';
+import loginmore from '../../../image/login_more.png';
+import './login.less';
+const TabPane = Tabs.TabPane;
+
+const LoginContent = React.createClass({
+    getInitialState() {
+        return {
+            theKey:"1"
+        };
+    },
+    tabChange(key){
+        this.setState({
+            theKey:key
+        })
+    },
+    render() {
+        return (
+            <div className="content clearfix">
+                <div className="login-left">
+                    <img src="" alt="" />
+                </div>
+                <div className="login-right">
+                    <Tabs defaultActiveKey="1" onChange={this.tabChange}  className="login-from">
+                        <TabPane tab="个人登录" key="1">
+                            <LoginForm loginProp={this.state.theKey}/>
+                        </TabPane>
+                        <TabPane tab="公司登录" key="2" className="tabtwo">
+                            <LoginForm loginProp={this.state.theKey}/>
+                        </TabPane>
+                    </Tabs>
+                    <div className="login-other clearfix">
+                        <ul className="clearfix">
+                            <li><img src={loginqq} alt="" /><p>QQ</p></li>
+                            <li><img src={loginweixin} alt="" /><p>微信</p></li>
+                            <li><img src={loginweibo} alt="" /><p>微博</p></li>
+                            <li className="join"><img src={loginmore} alt="" /><p><a href="./signIn.html">立即注册</a></p></li>
+                        </ul>
+                    </div>
+                </div>
+            </div>
+        )
+    }
+});
+
+export default LoginContent;

+ 15 - 0
js/component/login/loginFooter.jsx

@@ -0,0 +1,15 @@
+import React from 'react';
+import './login.less';
+
+const LoginFooter = React.createClass({
+    render() {
+        return (
+            <div className="footer">
+                <p>Copyright © 2016-2017 阿凡提 版权所有</p>
+                <p>技术支持:湖南智明科技有限公司</p>
+            </div>
+        )
+    }
+});
+
+export default LoginFooter;

+ 83 - 0
js/component/login/loginForm.jsx

@@ -0,0 +1,83 @@
+import React from 'react';
+import { Form, Icon, Input, Button, Checkbox, Spin } from 'antd';
+import './login.less';
+import ajax from 'jquery/src/ajax/xhr.js'
+import $ from 'jquery/src/ajax';
+const FormItem = Form.Item;
+
+const LoginForm = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            loading: false
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                this.setState({
+                    loading: true
+                });
+                $.ajax({
+                    method: "POST",
+                    dataType: "json",
+                    crossDomain: false,
+                    url: globalConfig.context + "/signin",
+                    data: { 
+                        user: values.userName, 
+                        pwd: values.password, 
+                        remember:values.remember,
+                        group: this.props.loginProp === "2" ? true : false
+                     }
+                }).done(function (data) {
+                    if (!data.error.length) {
+                        window.location.href = "warning.html"
+                    } else {
+                        this.tips(data.error[0].message);
+                    }
+                }.bind(this)).always(function () {
+                    this.setState({
+                        loading: false
+                    });
+                }.bind(this));
+            }
+        });
+    },
+    render() {
+        const { getFieldDecorator } = this.props.form;
+        return (
+            <Spin spinning={this.state.loading}>
+                <Form onSubmit={this.handleSubmit} className="login-form">
+                    <FormItem>
+                        {getFieldDecorator('userName', {
+                            rules: [{ required: true, message: 'Please input your username!' }],
+                        })(
+                            <Input addonBefore={<Icon type="user" />} placeholder="Username" />
+                            )}
+                    </FormItem>
+                    <FormItem>
+                        {getFieldDecorator('password', {
+                            rules: [{ required: true, message: 'Please input your Password!' }],
+                        })(
+                            <Input addonBefore={<Icon type="lock" />} type="password" placeholder="Password" />
+                            )}
+                    </FormItem>
+                    <FormItem>
+                        {getFieldDecorator('remember', {
+                            valuePropName: 'checked',
+                            initialValue: true,
+                        })(
+                            <Checkbox>记住我</Checkbox>
+                            )}
+                        <a className="login-form-forgot">忘记密码</a>
+                        <Button type="primary" htmlType="submit" className="login-form-button">
+                            登录
+                    </Button>
+                    </FormItem>
+                </Form>
+            </Spin>
+        );
+    },
+}));
+
+export default LoginForm;

+ 0 - 53
js/component/login/loginFrom.jsx

@@ -1,53 +0,0 @@
-import React from 'react';
-import { Form, Icon, Input, Button, Checkbox } from 'antd';
-const FormItem = Form.Item;
-
-const LoginForm = Form.create()(React.createClass({
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                console.log('Received values of form: ', values);
-            }
-        });
-    },
-    render() {
-        const { getFieldDecorator } = this.props.form;
-        return (
-            <Form onSubmit={this.handleSubmit} className="login-form">
-                <FormItem>
-                    {getFieldDecorator('userName', {
-                        rules: [{ required: true, message: 'Please input your username!' }],
-                    })(
-                        <div>
-                            <span>用 &nbsp;&nbsp; 户 :</span><Input placeholder="Username" />
-                        </div>
-                        )}
-                </FormItem>
-                <FormItem>
-                    {getFieldDecorator('password', {
-                        rules: [{ required: true, message: 'Please input your Password!' }],
-                    })(
-                        <div>
-                            <span>密 &nbsp;&nbsp; 码 :</span><Input type="password" placeholder="Password" />
-                        </div>
-                        )}
-                </FormItem>
-                <FormItem>
-                    {getFieldDecorator('remember', {
-                        valuePropName: 'checked',
-                        initialValue: true,
-                    })(
-                        <Checkbox>记住我</Checkbox>
-                        )}
-                    <Button type="primary" htmlType="submit" className="login-form-button">
-                        登录
-                    </Button>
-                    <p className="reg"><a className="login-form-forgot">忘记密码</a><a>加入我们</a></p>
-                </FormItem>
-            </Form>
-        );
-    },
-}));
-
-export default LoginForm;

+ 22 - 0
js/component/login/loginTop.jsx

@@ -0,0 +1,22 @@
+import React from 'react';
+import './login.less';
+
+const LoginTop = React.createClass({
+    render() {
+        return (
+            <div className="header">
+                <div className="login-logo">
+                    <div className="logo">
+                        <img src="" alt="" />
+                    </div>
+                    <div className="logo-text">
+                        <span>logo-text</span>
+                        <span className="back"><a href="./index.html">返回首页</a></span>
+                    </div>
+                </div>
+            </div>
+        )
+    }
+});
+
+export default LoginTop;

+ 212 - 0
js/component/sign/account.jsx

@@ -0,0 +1,212 @@
+import React from 'react';
+import { Form, Input, Tooltip, Icon, Cascader, Select, Row, Col, Checkbox, Button, Spin } from 'antd';
+import "./account.less";
+import ajax from 'jquery/src/ajax/xhr.js'
+import $ from 'jquery/src/ajax';
+
+import weixin from '../../../image/weixin-w.png';
+import qq from '../../../image/qq-w.png';
+import weibo from '../../../image/weibo-w.png';
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+
+
+const LoginContent = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            passwordDirty: false,
+            loading: false
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFieldsAndScroll((err, values) => {
+            debugger
+            if (!err) {
+                this.setState({
+                    loading: true
+                });
+                $.ajax({
+                    method: "POST",
+                    dataType: "json",
+                    crossDomain: false,
+                    url: globalConfig.context + "/signin",
+                    data: { email: this.state.user, pwd: this.state.password }
+                }).done(function (data) {
+                    if (!data.error.length) {
+                        window.location.href = "warning.html"
+                    } else {
+                        this.tips(data.error[0].message);
+                    }
+                }.bind(this)).always(function () {
+                    this.setState({
+                        loading: false
+                    });
+                }.bind(this));
+            }
+        });
+    },
+    handlePasswordBlur(e) {
+        const value = e.target.value;
+        this.setState({ passwordDirty: this.state.passwordDirty || !!value });
+    },
+    checkPassowrd(rule, value, callback) {
+        const form = this.props.form;
+        if (value && value !== form.getFieldValue('password')) {
+            callback('两次密码输入必须相同!');
+        } else {
+            callback();
+        }
+    },
+    checkPhone(rule, value, callback) {
+        const form = this.props.form;
+        if (!(/^1[34578]\d{9}$/.test(value))) {
+            callback('请输入正确的手机号码!');
+        } else {
+            callback();
+        }
+    },
+    checkConfirm(rule, value, callback) {
+        const form = this.props.form;
+        if (value.length < 6) {
+            callback('密码长度必须大于或者等于6位!');
+        };
+        if (value && this.state.passwordDirty) {
+            form.validateFields(['confirm'], { force: true });
+        }
+        callback();
+    },
+    render() {
+        const { getFieldDecorator } = this.props.form;
+        const formItemLayout = {
+            labelCol: { span: 6 },
+            wrapperCol: { span: 14 },
+        };
+        const tailFormItemLayout = {
+            wrapperCol: {
+                span: 14,
+                offset: 6,
+            },
+        };
+        return (
+            <div className="account-content clearfix">
+                <Spin spinning={this.state.loading} >
+                    <Form className="account-left" horizontal onSubmit={this.handleSubmit}>
+                        <FormItem
+                            {...formItemLayout}
+                            label="密码"
+                            extra={<span><Icon type="exclamation-circle" /> 建议字母、数字和符号两种以上组合,6-20个字符</span>}
+                            hasFeedback
+                            >
+                            {getFieldDecorator('password', {
+                                rules: [{
+                                    required: true, message: '请输入密码!',
+                                }, {
+                                    validator: this.checkConfirm,
+                                }],
+                            })(
+                                <Input type="password" onBlur={this.handlePasswordBlur} />
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="确认密码"
+                            extra={<span><Icon type="exclamation-circle" /> 请再次输入密码</span>}
+                            hasFeedback
+                            >
+                            {getFieldDecorator('confirm', {
+                                rules: [{
+                                    required: true, message: '请再次输入密码!',
+                                }, {
+                                    validator: this.checkPassowrd,
+                                }],
+                            })(
+                                <Input type="password" />
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="手机号码"
+                            extra={<span><Icon type="exclamation-circle" /> 请输入正确的手机号码</span>}
+                            hasFeedback
+                            >
+                            {getFieldDecorator('phone', {
+                                rules: [{ required: true, message: '请输入手机号码!' },
+                                {
+                                    validator: this.checkPhone,
+                                }],
+                            })(
+                                <Input size="large" />
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="验证码"
+                            extra={<span className="redFont"><Icon type="exclamation-circle" /> 看不清?点击图片更换验证码</span>}
+                            >
+                            <Row gutter={8}>
+                                <Col span={16}>
+                                    {getFieldDecorator('captcha', {
+                                        rules: [{ required: true, message: '请输入图片中的验证码' }],
+                                    })(
+                                        <Input size="large" />
+                                        )}
+                                </Col>
+                                <Col span={8}>
+                                    <Button size="large">图片</Button>
+                                </Col>
+                            </Row>
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="手机验证码"
+                            extra={<span><Icon type="exclamation-circle" /> 点击获取后我们将发送验证码到上面手机号</span>}
+                            >
+                            <Row gutter={8}>
+                                <Col span={16}>
+                                    {getFieldDecorator('phonecaptcha', {
+                                        rules: [{ required: true, message: '请输入手机获取到的验证码' }],
+                                    })(
+                                        <Input size="large" />
+                                        )}
+                                </Col>
+                                <Col span={8}>
+                                    <Button size="large">获取验证码</Button>
+                                </Col>
+                            </Row>
+                        </FormItem>
+                        <FormItem {...tailFormItemLayout} style={{ marginBottom: 8 }}>
+                            {getFieldDecorator('agreement', {
+                                valuePropName: 'checked',
+                            })(
+                                <Checkbox>同意 <a> 阿凡提会员服务协议条款</a></Checkbox>
+                                )}
+                        </FormItem>
+                        <FormItem {...tailFormItemLayout}>
+                            <Button type="primary" htmlType="submit" size="large">提 交</Button>
+                        </FormItem>
+                    </Form>
+                    <div className="account-right">
+                        <p className="haveID title">已有账号 <Icon type="right" /> <a href="./login.html">直接登录</a></p>
+                        <div className="relateID">
+                            <p className="title">关联账号</p>
+                            <p><Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button></p>
+                            <p><Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button></p>
+                            <p><Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button></p>
+                        </div>
+                        <div className="about">
+                            <p className="title">关于阿凡提通行证</p>
+                            <p className="about-content">
+                                阿凡提通行证推出的统一账号管理系统,注册阿凡提通行证的用户可以使用同一通行证账号及密码登录阿凡提网及其他关联互联网平台。
+                        </p>
+                        </div>
+                    </div>
+                </Spin>
+            </div>
+        );
+    },
+}));
+
+
+export default LoginContent;

+ 66 - 0
js/component/sign/account.less

@@ -0,0 +1,66 @@
+.account-content {
+    margin-top:50px;
+    height: 580px;
+    .account-left {
+        width: 540px;
+        float: left;
+        .ant-form-extra {
+            color:#ccc;
+            span {
+                margin-left: 2px;
+            }
+        }
+        .redFont {
+            color:#ea0862;
+        }
+        button {width: 100%;}
+        .ant-checkbox-wrapper {
+            span {
+                line-height: 32px;
+            }
+        }
+    }
+    .account-right {
+        width: 400px;
+        float:left;
+        .title {
+            color:#333;
+        }
+        button {
+            width: 132px;
+            border-radius: 4px;
+            margin-top:10px; 
+        }
+        .haveID {
+            margin-bottom: 60px;
+        }
+        .relateID {
+            margin-bottom: 30px;
+            p {
+                img {
+                    width:20px;
+                    vertical-align: middle;
+                }
+                span {
+                    margin-left: 4px;
+                }
+            }
+            .relateqq {
+                color:#fff;
+                background: #3174c2;
+            }
+            .relateweibo {
+                color:#fff;
+                background: #ce321c;
+            }
+            .relateweixin {
+                color:#fff;
+                background: #13bb20;
+            }
+        }
+        .about{
+            padding-right: 40px;
+            p { margin-bottom: 10px;}
+        }
+    }
+}

+ 22 - 0
js/component/sign/group.less

@@ -0,0 +1,22 @@
+.group {
+    margin:50px 210px 0;
+    height: 680px;
+    .account-left {
+        width: 540px;
+        .ant-form-extra {
+            color:#ccc;
+            span {
+                margin-left: 2px;
+            }
+        }
+        .redFont {
+            color:#ea0862;
+        }
+        button {width: 100%;}
+        .ant-checkbox-wrapper {
+            span {
+                line-height: 32px;
+            }
+        }
+    }
+}

+ 191 - 0
js/component/sign/groupAccount.jsx

@@ -0,0 +1,191 @@
+import React from 'react';
+import { Form, Input, Tooltip, Icon, Cascader, Select, Row, Col, Checkbox, Button } from 'antd';
+import "./group.less";
+
+
+const FormItem = Form.Item;
+const Option = Select.Option;
+
+
+const Group = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            passwordDirty: false,
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFieldsAndScroll((err, values) => {
+            if (!err) {
+                console.log('Received values of form: ', values);
+            }
+        });
+    },
+    handlePasswordBlur(e) {
+        const value = e.target.value;
+        this.setState({ passwordDirty: this.state.passwordDirty || !!value });
+    },
+    checkPassowrd(rule, value, callback) {
+        const form = this.props.form;
+        if (value && value !== form.getFieldValue('password')) {
+            callback('两次密码输入必须相同!');
+        } else {
+            callback();
+        }
+    },
+    checkPhone(rule, value, callback){
+        const form = this.props.form;
+        if ( !(/^1[34578]\d{9}$/.test(value))) {
+            callback('请输入正确的手机号码!');
+        } else {
+            callback();
+        }
+    },
+    checkConfirm(rule, value, callback) {
+        const form = this.props.form;
+        if ( value.length < 6) {
+            callback('密码长度必须大于或者等于6位!');
+        };
+        if (value && this.state.passwordDirty) {
+            form.validateFields(['confirm'], { force: true });
+        }
+        callback();
+    },
+    render() {
+        const { getFieldDecorator } = this.props.form;
+        const formItemLayout = {
+            labelCol: { span: 6 },
+            wrapperCol: { span: 14 },
+        };
+        const tailFormItemLayout = {
+            wrapperCol: {
+                span: 14,
+                offset: 6,
+            },
+        };
+        return (
+            <div className="group clearfix">
+                <Form className="account-left" horizontal onSubmit={this.handleSubmit}>
+                    <FormItem
+                        {...formItemLayout}
+                        label="密码"
+                        extra={<span><Icon type="exclamation-circle" /> 建议字母、数字和符号两种以上组合,6-20个字符</span>}
+                        hasFeedback
+                        >
+                        {getFieldDecorator('password', {
+                            rules: [{
+                                required: true, message: '请输入密码!',
+                            }, {
+                                validator: this.checkConfirm,
+                            }],
+                        })(
+                            <Input type="password" onBlur={this.handlePasswordBlur} />
+                            )}
+                    </FormItem>
+                    <FormItem
+                        {...formItemLayout}
+                        label="确认密码"
+                        extra={<span><Icon type="exclamation-circle" /> 请再次输入密码</span>}
+                        hasFeedback
+                        >
+                        {getFieldDecorator('confirm', {
+                            rules: [{
+                                required: true, message: '请再次输入密码!',
+                            }, {
+                                validator: this.checkPassowrd,
+                            }],
+                        })(
+                            <Input type="password" />
+                            )}
+                    </FormItem>
+                    <FormItem
+                        {...formItemLayout}
+                        label="手机号码"
+                        hasFeedback
+                        extra={<span><Icon type="exclamation-circle" /> 请输入正确的手机号码</span>}
+                        >
+                        {getFieldDecorator('phone', {
+                            rules: [{ required: true, message: '请输入手机号码!' },{
+                                validator: this.checkPhone,
+                            }],
+                        })(
+                            <Input size="large" />
+                            )}
+                    </FormItem>
+                    <FormItem
+                        {...formItemLayout}
+                        label="验证码"
+                        extra={<span className="redFont"><Icon type="exclamation-circle" /> 看不清?点击图片更换验证码</span>}
+                        >
+                        <Row gutter={8}>
+                            <Col span={16}>
+                                {getFieldDecorator('captcha', {
+                                    rules: [{ required: true, message: '请输入图片中的验证码' }],
+                                })(
+                                    <Input size="large" />
+                                    )}
+                            </Col>
+                            <Col span={8}>
+                                <Button size="large">图片</Button>
+                            </Col>
+                        </Row>
+                    </FormItem>
+                    <FormItem
+                        {...formItemLayout}
+                        label="手机验证码"
+                        extra={<span><Icon type="exclamation-circle" /> 点击获取后我们将发送验证码到上面手机号</span>}
+                        >
+                        <Row gutter={8}>
+                            <Col span={16}>
+                                {getFieldDecorator('phonecaptcha', {
+                                    rules: [{ required: true, message: '请输入手机获取到的验证码' }],
+                                })(
+                                    <Input size="large" />
+                                    )}
+                            </Col>
+                            <Col span={8}>
+                                <Button size="large">获取验证码</Button>
+                            </Col>
+                        </Row>
+                    </FormItem>
+                    <FormItem
+                        {...formItemLayout}
+                        label="单位名称"
+                        hasFeedback
+                        extra={<span><Icon type="exclamation-circle" /> 请填写工商局注册的全称</span>}
+                        >
+                        {getFieldDecorator('company', {
+                            rules: [{ required: true, message: '请填写公司全称!' }],
+                        })(
+                            <Input size="large" />
+                            )}
+                    </FormItem>
+                    <FormItem
+                        {...formItemLayout}
+                        label="联系人"
+                        hasFeedback
+                        >
+                        {getFieldDecorator('user', {
+                            rules: [{ required: true, message: '请输入联系人姓名!' }],
+                        })(
+                            <Input size="large" />
+                            )}
+                    </FormItem>
+                    <FormItem {...tailFormItemLayout} style={{ marginBottom: 8 }}>
+                        {getFieldDecorator('agreement', {
+                            valuePropName: 'checked',
+                        })(
+                            <Checkbox>同意 <a> 阿凡提会员服务协议条款</a></Checkbox>
+                            )}
+                    </FormItem>
+                    <FormItem {...tailFormItemLayout}>
+                        <Button type="primary" htmlType="submit" size="large">提 交</Button>
+                    </FormItem>
+                </Form>
+            </div>
+        );
+    },
+}));
+
+
+export default Group;

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 1202 - 0
js/component/tools.js


+ 27 - 0
js/component/yearSelect.jsx

@@ -0,0 +1,27 @@
+import React from 'react';
+import { Select } from 'antd';
+
+const Option = Select.Option;
+const d = new Date();
+const thisYear = d.getFullYear();
+
+const theOption = [];
+
+for (let i = thisYear; i >= 1950; i--) {
+    theOption.push(<Option key={i.toString()} value={i.toString()}>{i}</Option>)
+};
+
+const Yearselect = React.createClass({
+    onChange(e){
+        this.props.handleyear(e);
+    },
+    render() {
+        return (
+            <Select className="year-select" onChange={this.onChange}>
+                {theOption}
+            </Select>
+        )
+    }
+});
+
+export default Yearselect;

+ 16 - 0
js/user/account/index.js

@@ -0,0 +1,16 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import '../../../css/base.less';
+
+import TopTab from '../../component/account/topTab.jsx';
+import Footer from '../../component/account/bottom.jsx';
+import Content from '../../component/account/index/content.jsx';
+
+ReactDOM.render(
+    <div className="wrap clearfix">
+        <TopTab />
+        <Content />
+        <Footer />
+    </div>,
+    document.getElementById('root')
+)

+ 16 - 0
js/user/account/set.js

@@ -0,0 +1,16 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import '../../../css/base.less';
+
+import TopTab from '../../component/account/topTab.jsx';
+import Footer from '../../component/account/bottom.jsx';
+import Content from '../../component/account/set/content.jsx';
+
+ReactDOM.render(
+    <div className="wrap clearfix">
+        <TopTab active={'set'}/>
+        <Content />
+        <Footer />
+    </div>,
+    document.getElementById('root')
+)

+ 6 - 44
js/user/login.js

@@ -1,55 +1,17 @@
 import React from 'react';
 import ReactDOM from 'react-dom';
-import { Icon, Tabs } from 'antd';
 import '../../css/base.less';
 import '../../css/login.less';
 
-import LoginFrom from '../component/login/loginFrom.jsx';
-import loginqq from '../../image/login_qq.png';
-import loginweixin from '../../image/login_weixin.png';
-import loginweibo from '../../image/login_weibo.png';
-
-const TabPane = Tabs.TabPane;
+import LoginTop from '../component/login/loginTOp.jsx';
+import LoginContent from '../component/login/loginContent.jsx';
+import LoginFooter from '../component/login/loginFooter.jsx';
 
 ReactDOM.render(
     <div className="wrap">
-        <div className="header">
-            <div className="login-logo">
-                <div className="logo">
-                    <img src="" alt="" />
-                </div>
-                <div className="logo-text">
-                    <span>logo-text</span>
-                </div>
-            </div>
-            <p className="back"><a href="./index.html"><Icon type="left" />返回首页</a></p>
-            <p className="text">卓越的能力应用与技术交易平台</p>
-        </div>
-        <div className="content clearfix">
-            <div className="login-left">
-                <img src="" alt="" />
-            </div>
-            <div className="login-right">
-                <Tabs defaultActiveKey="1" className="login-from">
-                    <TabPane tab="个人登录" key="1">
-                        <LoginFrom />
-                    </TabPane>
-                    <TabPane tab="公司登录" key="2">
-                        <LoginFrom />
-                    </TabPane>
-                </Tabs>
-                <div className="login-other">
-                    <ul className="clearfix">
-                        <li><img src={loginqq} alt="" /><p>QQ登录</p></li>
-                        <li><img src={loginweixin} alt="" /><p>微信登录</p></li>
-                        <li><img src={loginweibo} alt="" /><p>微博登录</p></li>
-                    </ul>
-                </div>
-            </div>
-        </div>
-        <div className="footer">
-            <p>Copyright © 2016-2017 阿凡提 版权所有   技术支持:湖南智明科技有限公司</p>
-        </div>
+        <LoginTop />
+        <LoginContent />
+        <LoginFooter />
     </div>,
     document.getElementById('root')
 )

+ 28 - 0
js/user/signIn.js

@@ -0,0 +1,28 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { Icon, Tabs } from 'antd';
+import '../../css/base.less';
+import '../../css/sign.less';
+
+import LoginTop from '../component/login/loginTOp.jsx';
+import Account from '../component/sign/account.jsx';
+import GroupAccount from '../component/sign/groupAccount.jsx';
+import LoginFooter from '../component/login/loginFooter.jsx';
+
+const TabPane = Tabs.TabPane;
+
+ReactDOM.render(
+    <div className="wrap">
+        <LoginTop />
+        <Tabs type="card" defaultActiveKey="1" className="accounnt-form">
+            <TabPane tab="个人注册" key="1">
+                <Account />
+            </TabPane>
+            <TabPane tab="团体注册" key="2" className="tabtwo">
+                <GroupAccount />
+            </TabPane>
+        </Tabs>
+        <LoginFooter />
+    </div>,
+    document.getElementById('root')
+)

+ 5 - 0
template/template.html

@@ -3,6 +3,11 @@
 <head>
     <meta charset="utf-8">
     <title><%= htmlWebpackPlugin.options.title %></title>
+    <script>
+        window.globalConfig = {
+	  		context: " "
+	  	}
+    </script>
 </head>
 <body>
     <div id="root"></div>

+ 40 - 5
webpack.config.js

@@ -4,9 +4,9 @@ const ExtractTextPlugin = require("extract-text-webpack-plugin");
 const HtmlWebpackPlugin = require('html-webpack-plugin');
 
 let theme = {
-    '@primary-color': '#1DA57A',
-    '@link-color': '#1DA57A',
-    '@border-radius-base': '8px'
+    '@primary-color': '#58a3ff',
+    '@link-color': '#58a3ff',
+    '@border-radius-base': '0px'
 };
 
 module.exports = {
@@ -19,6 +19,22 @@ module.exports = {
                 'webpack/hot/only-dev-server',
                 './js/user/login.js'
         ],
+        'user/signIn': ['webpack-dev-server/client?http://0.0.0.0:8080', // WebpackDevServer host and port
+                'webpack/hot/only-dev-server',
+                './js/user/signIn.js'
+        ],
+        //user-account
+            'user/account/index': ['webpack-dev-server/client?http://0.0.0.0:8080', // WebpackDevServer host and port
+                    'webpack/hot/only-dev-server',
+                    './js/user/account/index.js'
+            ],
+            'user/account/set': ['webpack-dev-server/client?http://0.0.0.0:8080', // WebpackDevServer host and port
+                    'webpack/hot/only-dev-server',
+                    './js/user/account/set.js'
+            ],
+
+
+        //admin
         'admin/index': ['webpack-dev-server/client?http://0.0.0.0:8080', // WebpackDevServer host and port
                 'webpack/hot/only-dev-server',
                 './js/admin/index.js'
@@ -72,17 +88,36 @@ module.exports = {
 
         //user
         new HtmlWebpackPlugin({
-            title: 'user_index',
+            title: '用户首页',
             filename: 'user/index.html',
             template: './template/template.html',
             chunks:['user/index','vendors']
         }),
         new HtmlWebpackPlugin({
-            title: 'user_login',
+            title: '用户登录',
             filename: 'user/login.html',
             template: './template/template.html',
             chunks:['user/login','vendors']
         }),
+        new HtmlWebpackPlugin({
+            title: '用户注册',
+            filename: 'user/signIn.html',
+            template: './template/template.html',
+            chunks:['user/signIn','vendors']
+        }),
+        //user-account
+            new HtmlWebpackPlugin({
+                title: '用户中心-首页',
+                filename: 'user/account/index.html',
+                template: './template/template.html',
+                chunks:['user/account/index','vendors']
+            }),
+            new HtmlWebpackPlugin({
+                title: '用户中心-首页',
+                filename: 'user/account/set.html',
+                template: './template/template.html',
+                chunks:['user/account/set','vendors']
+            }),
 
         //admin
         new HtmlWebpackPlugin({

+ 31 - 5
webpack.config.pro.js

@@ -4,15 +4,22 @@ const ExtractTextPlugin = require("extract-text-webpack-plugin");
 const HtmlWebpackPlugin = require('html-webpack-plugin');
 
 let theme = {
-    '@primary-color': '#1DA57A',
-    '@link-color': '#1DA57A',
-    '@border-radius-base': '8px'
+    '@primary-color': '#58a3ff',
+    '@link-color': '#58a3ff',
+    '@border-radius-base': '0px'
 };
 
 module.exports = {
     entry: {
+        //user
         'user/index': './js/user/index.js',
         'user/login': './js/user/login.js',
+        'user/signIn': './js/user/signIn.js',
+        //usre-account
+            'user/account/index': './js/user/account/index.js',
+            'user/account/set': './js/user/account/set.js',
+
+        //admin
         'admin/index':'./js/admin/index.js',
         vendors: ['jquery']
     },
@@ -69,17 +76,36 @@ module.exports = {
 
         //user
         new HtmlWebpackPlugin({
-            title: 'user_index',
+            title: '用户首页',
             filename: 'user/index.html',
             template: './template/template.html',
             chunks:['user/index','vendors']
         }),
         new HtmlWebpackPlugin({
-            title: 'user_login',
+            title: '用户登录',
             filename: 'user/login.html',
             template: './template/template.html',
             chunks:['user/login','vendors']
         }),
+        new HtmlWebpackPlugin({
+            title: '用户注册',
+            filename: 'user/signIn.html',
+            template: './template/template.html',
+            chunks:['user/signIn','vendors']
+        }),
+        //user-account
+            new HtmlWebpackPlugin({
+                title: '用户中心-首页',
+                filename: 'user/account/index.html',
+                template: './template/template.html',
+                chunks:['user/account/index','vendors']
+            }),
+            new HtmlWebpackPlugin({
+                title: '用户中心-首页',
+                filename: 'user/account/set.html',
+                template: './template/template.html',
+                chunks:['user/account/set','vendors']
+            }),
 
         //admin
         new HtmlWebpackPlugin({