From 626e1bcfb9297d066f75d1ab207e9e14f8ec7c00 Mon Sep 17 00:00:00 2001
From: wtt <1985833171@qq.com>
Date: 星期三, 12 十一月 2025 16:58:32 +0800
Subject: [PATCH] 添加小卫组托单打印和列表强制隐藏功能

---
 utils/menuListApp.js |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/utils/menuListApp.js b/utils/menuListApp.js
index 14d15eb..e176ca5 100644
--- a/utils/menuListApp.js
+++ b/utils/menuListApp.js
@@ -51,16 +51,16 @@
 	let oMain = ""
 	let oMainSub = []
 	Array.from(payload).forEach((one, index) => {
-		if (one.hidden == true) {
-			oMainSub.push({
-				HEntryID: one.id,
-				HIndex: index,
-				HName: one.text,
-				HPicNum: one.img,
-				HShowMode: !one.hidden,
-				HMenuName: menuName,
-			})
-		}
+		
+		oMainSub.push({
+			HEntryID: one.id,
+			HIndex: index,
+			HName: one.text,
+			HPicNum: one.img,
+			HShowMode: !one.hidden,
+			HMenuName: menuName,
+		})
+		
 	})
 	oMain = JSON.stringify(oMainSub) + ";" + user + ";" + menuName + ";" +
 		deviceType

--
Gitblit v1.9.1