From a1131357b9e38c86e734816bae42d2fafcd48222 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期一, 23 三月 2026 11:01:41 +0800
Subject: [PATCH] fix: 客户3.22提出的修改需求

---
 src/pages/consumablesLogistics/stockManagement/index.vue |   11 ++++-------
 1 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/src/pages/consumablesLogistics/stockManagement/index.vue b/src/pages/consumablesLogistics/stockManagement/index.vue
index a18ef5f..6fff930 100644
--- a/src/pages/consumablesLogistics/stockManagement/index.vue
+++ b/src/pages/consumablesLogistics/stockManagement/index.vue
@@ -231,13 +231,10 @@
 const goDetail = (item) => {
   if (!item) return;
   try {
-    uni.setStorageSync(
-      "stockDetailItem",
-      JSON.stringify({
-        item,
-        type: isQualified() ? "0" : "1",
-      })
-    );
+    uni.setStorageSync('stockDetailItem', JSON.stringify({
+      item,
+      type: '0'
+    }))
   } catch (e) {}
   if (!item.id) {
     uni.navigateTo({ url: "/pages/consumablesLogistics/stockManagement/view" });

--
Gitblit v1.9.3