From 0c4429a719f5c95a7690fae51efaaa799ef4e77d Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期一, 25 五月 2026 10:02:48 +0800
Subject: [PATCH] fix: 投入重量改成投入重量/数量
---
src/views/qualityManagement/processInspection/index.vue | 21 ++++++++++-----------
1 files changed, 10 insertions(+), 11 deletions(-)
diff --git a/src/views/qualityManagement/processInspection/index.vue b/src/views/qualityManagement/processInspection/index.vue
index b022b1b..467294c 100644
--- a/src/views/qualityManagement/processInspection/index.vue
+++ b/src/views/qualityManagement/processInspection/index.vue
@@ -118,6 +118,10 @@
prop: "model",
},
{
+ label: "鏂欏彿",
+ prop: "materialCode",
+ },
+ {
label: "鍗曚綅",
prop: "unit",
},
@@ -136,11 +140,11 @@
prop: "quantity",
width: 100
},
- {
- label: "妫�娴嬪崟浣�",
- prop: "checkCompany",
- width: 120
- },
+ // {
+ // label: "妫�娴嬪崟浣�",
+ // prop: "checkCompany",
+ // width: 120
+ // },
{
label: "妫�娴嬬粨鏋�",
prop: "checkResult",
@@ -281,12 +285,7 @@
params.entryDate = undefined
qualityInspectListPage({...params, inspectType: 1}).then(res => {
tableLoading.value = false;
- tableData.value = res.data.records.map(item => {
- return {
- ...item,
- qualifiedQuantity: item.quantity - item.defectiveQuantity
- };
- });
+ tableData.value = res.data.records
page.total = res.data.total;
}).catch(err => {
tableLoading.value = false;
--
Gitblit v1.9.3