From ce92cb3a3645ca473798698522f477c8c2eb2e7f Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 24 三月 2026 11:51:09 +0800
Subject: [PATCH] fix: 仓储物流和耗材物流可编辑删除
---
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