From 1fbb1bd54d5cc51f60ec36e7561be1555820d9d1 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 11 十一月 2025 14:06:40 +0800
Subject: [PATCH] feat: 1.3.0.2

---
 apps/underTakeMiniApp/src/custom-tab-bar/index.tsx |   17 ++++++++++++++---
 1 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/apps/underTakeMiniApp/src/custom-tab-bar/index.tsx b/apps/underTakeMiniApp/src/custom-tab-bar/index.tsx
index 1f52c26..6d484b0 100644
--- a/apps/underTakeMiniApp/src/custom-tab-bar/index.tsx
+++ b/apps/underTakeMiniApp/src/custom-tab-bar/index.tsx
@@ -49,7 +49,7 @@
   click: (url: string, index: number) => typeof url === 'string',
 };
 
-const whitePageList = [RouterPath.home, RouterPath.workbenches, RouterPath.mine];
+const whitePageList = [RouterPath.workbenches, RouterPath.mine];
 
 export default {
   name: 'CustomTabBar',
@@ -140,15 +140,26 @@
             index={0}
           ></TarBarItem>
           <TarBarItem
+            text="鍙戝竷"
+            icon="../assets/tabbar/icon-publish.png"
+            activeIcon="../assets/tabbar/icon-publish.png"
+            pagePath={TabBarPageRouter.Publish}
+            currentPath={_router.path}
+            active={system.activeTab === 1}
+            className="task"
+            onClick={switchTab}
+            index={1}
+          ></TarBarItem>
+          <TarBarItem
             text="鎴戠殑"
             icon="../assets/tabbar/icon-mine.png"
             activeIcon="../assets/tabbar/icon-mine-active.png"
             pagePath={TabBarPageRouter.Mine}
             currentPath={_router.path}
-            active={system.activeTab === 1}
+            active={system.activeTab === 2}
             className="mine"
             onClick={switchTab}
-            index={1}
+            index={2}
           ></TarBarItem>
         </View>
       );

--
Gitblit v1.9.1