liting2017 6 years ago
parent
commit
1f2b284e07

+ 1 - 1
js/component/account/bottom.jsx

@@ -6,7 +6,7 @@ const Bottom = React.createClass({
         return (
             <div className="account-bottom">
                 <p>阿凡提科技</p>
-                <p>技术支持@湖南智明</p>
+                <p>技术支持@阿凡提</p>
             </div>
         )
     }

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

@@ -12,6 +12,11 @@ import Tech from './tech.jsx';
 import Pfs from './pfs.jsx';
 import Ablt from './ablt.jsx';
 import HrSituation from './hrSituation.jsx';
+//新开发账户管理
+import Account from './newAccount/account';
+import Unit from './newAccount/unit';
+import Personal from './newAccount/personal';
+import Contacts from './newAccount/contacts';
 
 const Content = React.createClass({
     getInitialState() {
@@ -70,6 +75,14 @@ const Content = React.createClass({
                                 return <Tech />;
                             case 'hrSituation':
                                 return <HrSituation />;
+                            case 'account':
+                                return <Account />;
+                            case 'unit':
+                                return <Unit />;
+                            case 'personal':
+                                return <Personal />;
+                            case 'contacts':
+                                return <Contacts />;    
                         };
                     })()}
                 </div>

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

@@ -29,6 +29,18 @@ const LeftTab = React.createClass({
                 mode="vertical"
                 className="account-left"
                 >
+                <Menu.Item key="account">
+                    账号管理
+                </Menu.Item>
+                <Menu.Item key="unit">
+                    单位资料
+                </Menu.Item>
+                <Menu.Item key="personal">
+                    个人资料
+                </Menu.Item>
+                <Menu.Item key="contacts">
+                    常用联系人
+                </Menu.Item>
                 <Menu.Item key="base">
                     基本信息
                 </Menu.Item>

+ 1 - 1
js/component/login/login.less

@@ -62,7 +62,7 @@
             }
         }
         .login-right {
-            opacity: 0.7;
+            opacity: 1;
             width: 340px;
             .tabtwo {
                 margin-left: 40px;

+ 1 - 1
js/component/login/loginFooter.jsx

@@ -6,7 +6,7 @@ const LoginFooter = React.createClass({
         return (
             <div className="footer">
                 <p>Copyright © 2016-2017 阿凡提 版权所有</p>
-                <p>技术支持:湖南智明科技有限公司</p>
+                <p>技术支持:湖南阿凡提科技有限公司</p>
             </div>
         )
     }

+ 17 - 17
template/template.html

@@ -11,23 +11,23 @@
 
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
     <script>
-//         window.userData = {
-//             mobile: "13600000000",
-//             nickname: "Lina",
-//             number: "80000",
-//             type: "0",
-//             email: "test@aft.com",
-//             createTime: "123456789000",
-//             lvl: "0"
-//         };
-//         window.adminData = {};
-//         window.globalConfig = {
-//             //context: "//aft.hnzhiming.com:8080/aft",
-//             context: "//127.0.0.1:8080/aft",
-//             staticHost: "//aft.hnzhiming.com",
-//             uploadPath: "/data/wwwroot/aft/upload",
-//             uploadPrivatePath: "/data/upload"
-//         };
+            window.userData = {
+                mobile: "13600000000",
+                nickname: "Lina",
+                number: "80000",
+                type: "0",
+                email: "test@aft.com",
+                createTime: "123456789000",
+                lvl: "0"
+            };
+            window.adminData = {};
+            window.globalConfig = {
+                //context: "//aft.hnzhiming.com:8080/aft",
+                context: "//127.0.0.1:8080/aft",
+                staticHost: "//aft.hnzhiming.com",
+                uploadPath: "/data/wwwroot/aft/upload",
+                uploadPrivatePath: "/data/upload"
+            };
     </script>
 </head>