hookehuyr

feat(plan): 添加提取方式字段映射

- 在提交数据映射中添加 withdrawal_method 字段
- 确保提取方式正确提交到后端

影响文件:
- src/components/plan/PlanFormContainer.vue
...@@ -279,8 +279,9 @@ const submit = async () => { ...@@ -279,8 +279,9 @@ const submit = async () => {
279 withdrawal_period: 'withdrawal_period', // 提取期 279 withdrawal_period: 'withdrawal_period', // 提取期
280 currency_type: 'currency_type', // 币种类型 280 currency_type: 'currency_type', // 币种类型
281 // 新增字段映射 281 // 新增字段映射
282 + withdrawal_method: 'withdrawal_method', // 提取方式
282 annual_withdrawal_amount: 'annual_withdrawal_amount', // 每年提取金额 283 annual_withdrawal_amount: 'annual_withdrawal_amount', // 每年提取金额
283 - annual_increase_percentage: 'annual_increase_percentage' // 每年递增提取百分比 284 + annual_increase_percentage: 'annual_increase_percentage', // 每年递增提取百分比
284 } 285 }
285 286
286 // 构建请求数据 287 // 构建请求数据
......