liting2017 6 years ago
parent
commit
30541ffed5

+ 8 - 20
js/component/account/index/leftMenu.jsx

@@ -1,14 +1,11 @@
 import React from 'react';
-import { Menu, Icon, Layout, message } from 'antd';
+import { Menu, Icon, message } from 'antd';
 import '@/account/leftTab.less';
 const SubMenu = Menu.SubMenu;
-const MenuItemGroup = Menu.ItemGroup;
 import { Link } from 'react-router';
-import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
-import { menu } from '@/account/menu';
+import { menu,menuInit } from '@/account/menu';
 import logo from 'img/acc-logo.png';
-const { Sider } = Layout;
 
 const LeftTab = React.createClass({
 	getInitialState() {
@@ -116,33 +113,24 @@ const LeftTab = React.createClass({
 				children: [ { name: '科技成果列表', url: 'achievement' } ]
 			}
 		];
-		let menuList = [],newMenu=[],noExpert=[];
+		let menuList = [],newMenu=[];
 		let menuNO = menu[1].children;
 		menuNO.map((item) => {
-			if(item.url!='expert'){
-				noExpert.push(item);
-			};
 			if (this.state.type == '0') {
-				if (item.name != '企业资料') {
+				if (item.url != 'unit') {
 					menuList.push(item);
 				}
 			} else if (this.state.type == '1') {
-				if (item.name != '个人资料') {
+				if (item.url != 'personal') {
 					menuList.push(item);
 				}
-			} else {
-				menuList.push(item);
-			}
+			} 
 		});
-		if(this.state.type=='undefined'){
-			menu[1].children= noExpert;
-		}else{
-			menu[1].children = menuList;
-		}
 		if (this.state.type == '0' || this.state.type == '1') {
+			menu[1].children = menuList;
 			newMenu = menu.concat(demandList);
 		}else{
-			newMenu=menu;
+			newMenu=menuInit
 		}
 		return (
 			<div>

+ 26 - 1
js/component/account/menu.jsx

@@ -20,7 +20,32 @@ module.exports = {
             { name: '账号管理', url: 'account' },
             { name: '企业资料', url: 'unit' },
             { name: '个人资料', url: 'personal' },
-            { name: '专家资料', url: 'expert' },
+            { name: '专家资料  ', url: 'expert' },
+            { name: '常用联系人', url: 'contacts' },
+          ]
+        },
+    ],
+    menuInit:[
+      {
+        name: '会员中心',
+        url: 'sub1',
+        icon: 'home',
+        children: [
+          { name: '常用功能', url: 'normal' },
+          { name: '我的收藏', url: 'collection' },
+          { name: '科技订单', url: 'techList' },
+          { name: '服务订单', url: 'serviceList' },
+          { name: '咨询订单', url: 'consultList' },
+        ]
+      },
+         {
+          name: '账号设置',
+          url: 'sub2',
+          icon: 'setting',
+          children: [
+            { name: '账号管理', url: 'account' },
+            { name: '企业资料', url: 'unit' },
+            { name: '个人资料', url: 'personal' },
             { name: '常用联系人', url: 'contacts' },
           ]
         },

+ 1 - 1
js/component/account/setAccount/personal.jsx

@@ -281,7 +281,7 @@ const Personal = React.createClass({
 				});
 				if (!data.error.length) {
 					if(this.state.type!='0'){
-						message.warning('个人认证成功,1s后回到首页.')
+						message.success('个人认证成功,1s后回到首页.')
 						setTimeout(()=>{
 							window.location.href = globalConfig.context + "/user/account/index.html";
 						},1000)  

+ 1 - 1
js/component/account/setAccount/unit.jsx

@@ -304,7 +304,7 @@ const Unit = React.createClass({
 				});
 				if (!data.error.length) {
 					if(this.state.type!='1'){
-						message.warning('企业认证成功,1s后回到首页.')
+						message.success('企业认证成功,1s后回到首页.')
 						setTimeout(()=>{
 							window.location.href = globalConfig.context + "/user/account/index.html";
 						},1000)