Commit d5f60d46cc282da747a418977cce4f8a4d1b7c11

Authored by wuxw
1 parent 1cfc4fea

v1.9 优化 费用台账中费用项无法选择的问题

src/views/report/reportProficientList.vue
... ... @@ -116,8 +116,8 @@ export default {
116 116 feeTypeCd: this.reportProficientInfo.conditions.feeTypeCd,
117 117 valid: '1'
118 118 }
119   - const { data } = await getFeeConfigList(params)
120   - this.reportProficientInfo.feeConfigDtos = data
  119 + const { feeConfigs } = await getFeeConfigList(params)
  120 + this.reportProficientInfo.feeConfigDtos = feeConfigs
121 121 } catch (error) {
122 122 console.error('获取收费项失败:', error)
123 123 }
... ...