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] v1.9 优化支付没法设置费用项bug --- 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 71efcca..414f0e4 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 3910a26..55ecb54 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) } -- libgit2 0.21.4