From fdef23064b801a06bbf369785dbbc14db14b707f Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 22 Mar 2024 17:15:53 +0800
Subject: [PATCH] 回滚代码至2月28日

---
 common/common.js |  109 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 105 insertions(+), 4 deletions(-)

diff --git a/common/common.js b/common/common.js
index 0ad6457..31ff8a2 100644
--- a/common/common.js
+++ b/common/common.js
@@ -69,11 +69,16 @@
 
 // 文件路径转字符串
 export const formattingUrls = (urls) => {
-	let arr = [];
-	for (let i of urls) {
-		arr.push(i.name);
+	if (!urls.length) {
+		return ""
+	} else {
+		let arr = [];
+		for (let i of urls) {
+			arr.push(i.name);
+		}
+		return arr.join(",")
 	}
-	return arr.join(",")
+
 }
 
 //转换标签颜色
@@ -88,4 +93,100 @@
 			return obj[i]
 		}
 	}
+}
+
+
+export const getTabbarList = (roleType = 1) => {
+	if (roleType == 1) { //居民
+		return [{
+				name: '首页',
+				iconPathSelected: '/static/img/tabbar-01-selected.png',
+				iconPath: '/static/img/tabbar-01.png',
+				url: '/pages/home/index'
+			},
+			// {
+			// 	name: '圈子',
+			// 	iconPathSelected: '/static/img/tabbar-02-selected.png',
+			// 	iconPath: '/static/img/tabbar-02.png',
+			// 	url: '/pages/circle/index'
+			// },
+			{
+				name: '我的',
+				iconPathSelected: '/static/img/tabbar-03-selected.png',
+				iconPath: '/static/img/tabbar-03.png',
+				url: '/pages/user/center'
+			}
+		]
+	} else if (roleType == 2) { //民警 
+		return [{
+				name: '首页',
+				iconPathSelected: '/static/img/tabbar-04-selected.png',
+				iconPath: '/static/img/tabbar-04.png',
+				url: '/pages/home/index'
+			},
+
+			{
+				name: '驾驶舱',
+				iconPathSelected: '/static/img/tabbar-05-selected.png',
+				iconPath: '/static/img/tabbar-05.png',
+				url: '/pages/statistics/index'
+			},
+
+
+			{
+				name: '我的',
+				iconPathSelected: '/static/img/tabbar-06-selected.png',
+				iconPath: '/static/img/tabbar-06.png',
+				url: '/pages/user/center'
+			}
+		]
+	} else if (roleType == 3) { // 网格员
+		return [{
+				name: '首页',
+				iconPathSelected: '/static/img/tabbar-01-selected.png',
+				iconPath: '/static/img/tabbar-01.png',
+				url: '/pages/home/index'
+			},
+
+			// {
+			// 	name: '圈子',
+			// 	iconPathSelected: '/static/img/tabbar-02-selected.png',
+			// 	iconPath: '/static/img/tabbar-02.png',
+			// 	url: '/pages/circle/index'
+			// },
+			{
+				name: '驾驶舱',
+				iconPathSelected: '/static/img/tabbar-07-selected.png',
+				iconPath: '/static/img/tabbar-07.png',
+				url: '/pages/statistics/index'
+			},
+
+			{
+				name: '我的',
+				iconPathSelected: '/static/img/tabbar-03-selected.png',
+				iconPath: '/static/img/tabbar-03.png',
+				url: '/pages/user/center'
+			}
+		]
+	} else if (roleType == 4) { //系统管理员
+		return [{
+				name: '首页',
+				iconPathSelected: '/static/img/tabbar-01-selected.png',
+				iconPath: '/static/img/tabbar-01.png',
+				url: '/pages/home/index'
+			},
+			{
+				name: '驾驶舱',
+				iconPathSelected: '/static/img/tabbar-07-selected.png',
+				iconPath: '/static/img/tabbar-07.png',
+				url: '/pages/statistics/index'
+			},
+			{
+				name: '我的',
+				iconPathSelected: '/static/img/tabbar-03-selected.png',
+				iconPath: '/static/img/tabbar-03.png',
+				url: '/pages/user/center'
+			}
+		]
+	}
 }
\ No newline at end of file

--
Gitblit v1.9.3