From 048b90a969db55aabf57d61ef9edc80d91bb6489 Mon Sep 17 00:00:00 2001 From: wuxw <928255095@qq.com> Date: Tue, 2 Sep 2025 15:37:59 +0800 Subject: [PATCH] =?UTF-8?q?v1.9=20=E4=BC=98=E5=8C=96=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E6=B2=A1=E6=B3=95=E8=AE=BE=E7=BD=AE=E8=B4=B9=E7=94=A8=E9=A1=B9?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/system/addPaymentPool.vue | 4 ++-- src/components/system/editPaymentPool.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/system/addPaymentPool.vue b/src/components/system/addPaymentPool.vue index 71efccada..414f0e43e 100644 --- a/src/components/system/addPaymentPool.vue +++ b/src/components/system/addPaymentPool.vue @@ -150,8 +150,8 @@ export default { isDefault: 'F', communityId: this.formData.communityId } - const { data } = await listFeeConfigs(params) - this.feeConfigs = data + const { feeConfigs } = await listFeeConfigs(params) + this.feeConfigs = feeConfigs } catch (error) { console.error('获取费用配置失败:', error) } diff --git a/src/components/system/editPaymentPool.vue b/src/components/system/editPaymentPool.vue index 3910a2682..55ecb549d 100644 --- a/src/components/system/editPaymentPool.vue +++ b/src/components/system/editPaymentPool.vue @@ -154,8 +154,8 @@ export default { isDefault: 'F', communityId: this.formData.communityId } - const { data } = await listFeeConfigs(params) - this.feeConfigs = data + const { feeConfigs } = await listFeeConfigs(params) + this.feeConfigs = feeConfigs } catch (error) { console.error('获取费用配置失败:', error) }