From 87919146de2b2d4c76cf5c55f361b854e98cf847 Mon Sep 17 00:00:00 2001 From: yueli Date: Wed, 2 Sep 2026 18:39:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=9F=BA=E7=A1=80=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=8F=82=E8=80=83=E4=BB=B7=E6=A0=BC=E5=8F=AF=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E2=80=94=E2=80=94=E8=84=8F=E6=A3=80=E6=9F=A5=E7=99=BD=E5=90=8D?= =?UTF-8?q?=E5=8D=95=E8=A1=A5=E5=85=A8=20referencePrice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inventory-web/src/views/material/list.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inventory-web/src/views/material/list.vue b/inventory-web/src/views/material/list.vue index 12607d2..284e60d 100644 --- a/inventory-web/src/views/material/list.vue +++ b/inventory-web/src/views/material/list.vue @@ -1473,7 +1473,7 @@ const isArraysEqual = (a: any[], b: any[]): boolean => { const buildPartialPayload = (current: any, original: any): any => { const payload: any = { id: current.id }; - const compareFields = ['name', 'commonName', 'category', 'type', 'spec', 'unit', 'visibilityLevel', 'isEnabled', 'isInspectionRequired', 'generalImage', 'generalManual', 'companyName', 'productImageRemark', 'manualLinkRemark']; + const compareFields = ['name', 'commonName', 'category', 'type', 'spec', 'unit', 'referencePrice', 'visibilityLevel', 'isEnabled', 'isInspectionRequired', 'generalImage', 'generalManual', 'companyName', 'productImageRemark', 'manualLinkRemark']; for (const key of compareFields) { const currentVal = current[key];