From 5a813f3b28f3cbf1db3a3657ccf83267c6e0d315 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期四, 24 十月 2024 11:22:02 +0800
Subject: [PATCH] 工艺路线相关优化

---
 src/store/modules/multipleTab.ts |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/store/modules/multipleTab.ts b/src/store/modules/multipleTab.ts
index deb7ea7..9885459 100644
--- a/src/store/modules/multipleTab.ts
+++ b/src/store/modules/multipleTab.ts
@@ -88,7 +88,11 @@
       const name = route.name;
       const useProdRoute = useProdRouteStore();
       useProdRoute.setChangeToCPPage(false);
-      useProdRoute.setCurProdRotTree([]);
+      // 浠巗essionStorage涓鍙栧弬鏁板苟杞崲鍥炲璞�
+      const savedParams = sessionStorage.getItem(`${JSON.parse(decodeURI(route.params.id[0]))['sName']}_params`);
+      const objParams = savedParams ? JSON.parse(decodeURI(savedParams)) : {};
+      useProdRoute.setCurProdRotTree({ name: objParams['CODE'], treeInfo: [] });
+      useProdRoute.setCurSelectedNodes({ name: objParams['CODE'], SelectedNodes: [] });
 
       const findTab = this.getCachedTabList.find((item) => item === name);
       if (findTab) {
@@ -138,7 +142,9 @@
       // Existing pages, do not add tabs repeatedly
       const tabHasExits = this.tabList.some((tab, index) => {
         updateIndex = index;
-        return decodeURIComponent(tab.fullPath || tab.path) === decodeURIComponent(fullPath || path);
+        return (
+          decodeURIComponent(tab.fullPath || tab.path) === decodeURIComponent(fullPath || path)
+        );
       });
 
       // If the tab already exists, perform the update operation

--
Gitblit v1.9.3