v1.9 优化支付没法设置费用项bug

This commit is contained in:
wuxw 2025-09-02 15:37:59 +08:00
parent 99ac355704
commit 048b90a969
2 changed files with 4 additions and 4 deletions

View File

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

View File

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