From 76ece8aa5ef6a6c61f29f0c660dd6e923dc04412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AD=A3=E6=98=93?= Date: Mon, 24 Mar 2025 14:27:49 +0800 Subject: [PATCH] 123 --- src/views/wmsManagement/WmPolishInventory/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/wmsManagement/WmPolishInventory/index.vue b/src/views/wmsManagement/WmPolishInventory/index.vue index e445686..75c4b77 100644 --- a/src/views/wmsManagement/WmPolishInventory/index.vue +++ b/src/views/wmsManagement/WmPolishInventory/index.vue @@ -52,7 +52,7 @@
当前抛光品总数:{{ RealQuantitySum }} 上次导入盘点总数:{{ StocktakingTotal }} - + 上次导入盘点日期:{{ MinStocktakingTime }}
@@ -369,6 +369,7 @@ export default { StocktakingTotal: 0, QuantitySum: 0, RealQuantitySum: 0, + MinStocktakingTime: '', } }, // computed: { @@ -398,6 +399,7 @@ export default { this.StocktakingTotal = res.data.stocktakingTotal this.QuantitySum = res.data.quantitySum this.RealQuantitySum = res.data.realQuantitySum + this.MinStocktakingTime = res.data.minStocktakingTime this.loading = false } })