From 0abec15bdca899b4c0ad0052825cb984168966ba Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 16 Jan 2026 15:02:51 +0800 Subject: [PATCH] =?UTF-8?q?fix(MmInventory):=20=E4=BF=AE=E5=A4=8D=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E8=AE=B0=E5=BD=95=E6=97=B6=E5=8A=A0=E8=BD=BD=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E6=9C=AA=E6=AD=A3=E7=A1=AE=E8=AE=BE=E7=BD=AE=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 调整表格高度动态计算逻辑,并在查询记录时正确设置和清除加载状态 --- .../materialManagement/productionMaterial/MmInventory.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/materialManagement/productionMaterial/MmInventory.vue b/src/views/materialManagement/productionMaterial/MmInventory.vue index 0fc9c88..3f8346c 100644 --- a/src/views/materialManagement/productionMaterial/MmInventory.vue +++ b/src/views/materialManagement/productionMaterial/MmInventory.vue @@ -72,7 +72,7 @@ { const { code, data } = res if (code == 200) { @@ -948,6 +948,7 @@ function queryRecord() { title.value = '查看出入库记录' recordTotal.value = data.totalNum state.recordData = data.result + loading.value = false } }) }