From 7f6beb1f4d7a027b6391e54bd9e5f3efb06921a1 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期三, 15 四月 2026 17:40:09 +0800
Subject: [PATCH] feat(qualityManagement): 最终检验页面添加销售单号字段并优化界面布局 - 在表格中新增销售单号列显示

---
 src/plugins/cache.js |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/plugins/cache.js b/src/plugins/cache.js
index 6f71b8e..4d29dfe 100644
--- a/src/plugins/cache.js
+++ b/src/plugins/cache.js
@@ -26,9 +26,10 @@
     if (value != null) {
       return JSON.parse(value)
     }
+    return null
   },
   remove (key) {
-    sessionStorage.removeItem(key);
+    sessionStorage.removeItem(key)
   }
 }
 const localCache = {
@@ -59,9 +60,10 @@
     if (value != null) {
       return JSON.parse(value)
     }
+    return null
   },
   remove (key) {
-    localStorage.removeItem(key);
+    localStorage.removeItem(key)
   }
 }
 

--
Gitblit v1.9.3