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) }