From 2d9c89c66cbcf87f5ff8e18c8527c8121bdf7325 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Thu, 17 Jul 2025 20:49:24 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/material/cost/component/applyHome.vue | 4 ++-- src/views/materialsStation/cost/component/applyHome.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/material/cost/component/applyHome.vue b/src/views/material/cost/component/applyHome.vue index 2f009516..a6b8dfd0 100644 --- a/src/views/material/cost/component/applyHome.vue +++ b/src/views/material/cost/component/applyHome.vue @@ -440,8 +440,8 @@ export default { } getSltAgreementInfo(params).then((response) => { - this.tableList = response.rows - this.total = response.total + this.tableList = response.data.rows + this.total = response.data.total this.loading = false }) }, diff --git a/src/views/materialsStation/cost/component/applyHome.vue b/src/views/materialsStation/cost/component/applyHome.vue index 5025cb15..5b2dc937 100644 --- a/src/views/materialsStation/cost/component/applyHome.vue +++ b/src/views/materialsStation/cost/component/applyHome.vue @@ -363,8 +363,8 @@ export default { unitIds: this.unitIds } getSltAgreementInfo(params).then(response => { - this.tableList = response.rows - this.total = response.total + this.tableList = response.data.rows + this.total = response.data.total this.loading = false }) },