From b3f2b1a71acf17438dd83401ad3c46b802be17bc Mon Sep 17 00:00:00 2001
From: zhangyanpeng <bob.zhang@highdatas.com>
Date: 星期三, 22 一月 2020 16:21:59 +0800
Subject: [PATCH] Merge branch 'master' of http://highdatas.com:9000/r/~kimi/srs

---
 src/views/Home.vue |   33 ++++++++++++++++++---------------
 1 files changed, 18 insertions(+), 15 deletions(-)

diff --git a/src/views/Home.vue b/src/views/Home.vue
index 7b3439f..53f7e01 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -70,15 +70,21 @@
   },
 	created() {
 		let userId_ = localStorage.getItem('userId');
-		let userType = localStorage.getItem('userType');
-		if (!userId_) {
+		let departId = localStorage.getItem('departId');
+		if (!userId_ || !departId) {
 			this.$router.push('/login');
 		}
 		else {
 			this.defaultActive = "mine";
 			this.$router.push('/mine');
+			let type;
+			if(departId == "100" || departId == "500") {
+				type = departId;
+			}else {
+				type = "all";
+			}
 			
-			this.getMenu(userType);
+			this.getMenu(type);
 		}
 	},
 	
@@ -89,21 +95,18 @@
 					{'id': "110", 'title': "棣栭〉", 'path': "mine"}, //杩斿洖鐨勬暟缁勫瓧娈�
 					{'id': "111", 'title': "椤圭洰绠$悊", 'path': "0_111"}, //杩斿洖鐨勬暟缁勫瓧娈�
 					{'id': "112", 'title': "浠诲姟绠$悊", 'path': "0_112"},
-					{'id': "111_1", 'title': "淇℃伅骞垮満", 'path': 'project2', 'parentId': "111"}, //
-					{'id': "111_2", 'title': "椤圭洰鎬昏", 'path': 'Overview', 'parentId': "111"}, //
-					{'id': "111_3", 'title': "椤圭洰鍒嗘瀽", 'path': 'project3', 'parentId': "111"}, //
+					{'id': "111_1", 'title': "淇℃伅骞垮満", 'path': 'square', 'parentId': "111"}, //
+					{'id': "111_2", 'title': "椤圭洰鎬昏", 'path': 'list', 'parentId': "111"}, //
+					{'id': "111_3", 'title': "椤圭洰鍒嗘瀽", 'path': 'Overview', 'parentId': "111"}, //
 					{'id': "111_4", 'title': "褰掓。鎶ュ憡", 'path': 'project4', 'parentId': "111"}, //
 					{'id': "112_1", 'title': "浠诲姟鍒楄〃", 'path': 'calendarTask', 'parentId': "112"}, //
 				],
-				role1: [
-					{'id': "110", 'title': "棣栭〉", 'path': "mine"}, //杩斿洖鐨勬暟缁勫瓧娈�
-					{'id': "111", 'title': "椤圭洰绠$悊", 'path': "0_111"}, //杩斿洖鐨勬暟缁勫瓧娈�
-					{'id': "111_1", 'title': "淇℃伅骞垮満", 'path': 'project2', 'parentId': "111"}, //
-					{'id': "111_2", 'title': "椤圭洰鎬昏", 'path': 'Overview', 'parentId': "111"}, //
-					{'id': "111_3", 'title': "椤圭洰鍒嗘瀽", 'path': 'project3', 'parentId': "111"}, //
-					{'id': "111_4", 'title': "褰掓。鎶ュ憡", 'path': 'project4', 'parentId': "111"}, //
-				],
-				role2: [
+				100: [
+						{'id': "110", 'title': "棣栭〉", 'path': "mine"}, //杩斿洖鐨勬暟缁勫瓧娈�
+						{'id': "112", 'title': "浠诲姟绠$悊", 'path': "0_112"},
+						{'id': "112_1", 'title': "浠诲姟鍒楄〃", 'path': 'calendarTask', 'parentId': "112"}, //
+					],
+				500: [
 					{'id': "110", 'title': "棣栭〉", 'path': "mine"}, //杩斿洖鐨勬暟缁勫瓧娈�
 					{'id': "112", 'title': "浠诲姟绠$悊", 'path': "0_112"},
 					{'id': "112_1", 'title': "浠诲姟鍒楄〃", 'path': 'calendarTask', 'parentId': "112"}, //

--
Gitblit v1.8.0