From f2e14fbd69737ca7717835fcc4e02c0f01de10d4 Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期一, 02 二月 2026 10:12:42 +0800
Subject: [PATCH] fix: 修复扫码时code参数格式不一致导致的解析错误

---
 src/pages/production/detail/twistDetail.vue |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/pages/production/detail/twistDetail.vue b/src/pages/production/detail/twistDetail.vue
index ed3d10f..b5c9d27 100644
--- a/src/pages/production/detail/twistDetail.vue
+++ b/src/pages/production/detail/twistDetail.vue
@@ -9,6 +9,7 @@
         totalAmount: 'totalAmount',
         amount: 'amount',
         unAmount: 'unAmount',
+        segmentLengthNote: 'segmentLengthNote',
       }"
     />
     <view class="mx-3">
@@ -46,12 +47,14 @@
 
 const paramsId = ref();
 const cardData = reactive({
+  type: "缁炵嚎",
   deviceModel: undefined,
   model: undefined,
   systemNo: undefined,
   totalAmount: undefined,
   amount: undefined,
   unAmount: undefined,
+  segmentLengthNote: undefined,
 });
 const detailData = ref<any>({});
 
@@ -66,6 +69,7 @@
   cardData.totalAmount = data.totalLength;
   cardData.amount = data.length;
   cardData.unAmount = data.unLength;
+  cardData.segmentLengthNote = data.segmentLengthNote;
 };
 
 // 鑾峰彇骞剁紦瀛樼敓浜у噯澶嘔D

--
Gitblit v1.9.3