From 8ab9e91dac6bb547afe5e9a965a7a97679d0b8ea Mon Sep 17 00:00:00 2001
From: yangzifeng <2547435354@qq.com>
Date: Fri, 30 Jan 2026 10:44:59 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/wisdom/record/index.vue | 2 +-
src/views/wisdom/stock/index.vue | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/views/wisdom/record/index.vue b/src/views/wisdom/record/index.vue
index 465bdb0..2f6bf64 100644
--- a/src/views/wisdom/record/index.vue
+++ b/src/views/wisdom/record/index.vue
@@ -55,7 +55,7 @@
+ :props="{ children: 'children', label: 'warehouseName', value: 'warehouseCode' }" clearable />
diff --git a/src/views/wisdom/stock/index.vue b/src/views/wisdom/stock/index.vue
index a138754..e55ab51 100644
--- a/src/views/wisdom/stock/index.vue
+++ b/src/views/wisdom/stock/index.vue
@@ -57,7 +57,7 @@
+ :props="{ children: 'children', label: 'warehouseName', value: 'warehouseCode' }" clearable />
@@ -418,10 +418,10 @@ function getSumInfo() {
let rkInfo = JSON.parse(JSON.stringify(queryParams.value))
delete rkInfo.pageNum
delete rkInfo.pageSize
- getTotal({rkInfo: rkInfo}).then(response => {
- totalMoney.value = response.sumMoney
- pcodeCount.value = response.pcdeCount
- sumQty.value = response.sumQty
+ getTotal(rkInfo).then(response => {
+ totalMoney.value = response.data.totalAmount
+ pcodeCount.value = response.data.locationCount
+ sumQty.value = response.data.totalQuantity
});
}
getSumInfo()