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/twist/receive/plate/form.vue | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/pages/production/twist/receive/plate/form.vue b/src/pages/production/twist/receive/plate/form.vue
index 1d4c19e..ed1b5e1 100644
--- a/src/pages/production/twist/receive/plate/form.vue
+++ b/src/pages/production/twist/receive/plate/form.vue
@@ -136,7 +136,7 @@
// 鍔犺浇鍘傚瀛楀吀鏁版嵁
const loadSupplierDict = async () => {
try {
- const res = await ManageApi.dictAPI("factory");
+ const res = await ManageApi.dictAPI("reel_factory");
if (res.data && Array.isArray(res.data)) {
supplierOptions.value = res.data.map((item: any) => ({
label: item.dictLabel || "",
--
Gitblit v1.9.3