feat(对账): 新增批量对账功能并优化对账流程

- 添加批量对账模式,支持按金额批量选择账单
- 优化rowKey处理逻辑
- 调整对账表单验证规则,增加金额校验
- 修改时间单位从月到天,提高精确度
- 优化选中账单展示,增加标记和计数功能
- 修复SelectDropdownRender组件选项更新问题
This commit is contained in:
2026-01-16 14:21:14 +08:00
parent 32afef3e4e
commit 8971243f23
17 changed files with 219 additions and 79 deletions

View File

@@ -16,12 +16,19 @@ export const reconciliateBillsApi = {
},
/**
* 人工对账--添加订单后对账
* 人工对账--添加订单后对账 -- 单个
*/
manualCheckCreated: (data: any) => {
return requestClient.post('/common/payment/checkoffByAddOrder', { list: data });
},
/**
* 人工对账--添加订单后对账 -- 批量
*/
manualCheckCreatedBatch: (data: any) => {
return requestClient.post('/common/payment/checkoffByBatch', data);
},
/**
* 自动对账
*/