From d5f60d46cc282da747a418977cce4f8a4d1b7c11 Mon Sep 17 00:00:00 2001 From: wuxw <928255095@qq.com> Date: Mon, 3 Nov 2025 19:16:35 +0800 Subject: [PATCH] v1.9 优化 费用台账中费用项无法选择的问题 --- src/views/report/reportProficientList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/report/reportProficientList.vue b/src/views/report/reportProficientList.vue index 9ad1f7b..3352479 100644 --- a/src/views/report/reportProficientList.vue +++ b/src/views/report/reportProficientList.vue @@ -116,8 +116,8 @@ export default { feeTypeCd: this.reportProficientInfo.conditions.feeTypeCd, valid: '1' } - const { data } = await getFeeConfigList(params) - this.reportProficientInfo.feeConfigDtos = data + const { feeConfigs } = await getFeeConfigList(params) + this.reportProficientInfo.feeConfigDtos = feeConfigs } catch (error) { console.error('获取收费项失败:', error) } -- libgit2 0.21.4