feat(wms): 新增应收货物计划批量删除和清空功能,优化表格配置
1. 后端添加批量删除应收计划接口 2. 前端新增批量删除、清空按钮和多选功能 3. 优化表格高度和字段文案,调整分页查询大小
This commit is contained in:
@@ -51,3 +51,14 @@ export function checkReceivePlan(data) {
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 大批量删除应收货物计划明细
|
||||
*/
|
||||
export function delReceivePlanBatch(receiveIdList) {
|
||||
return request({
|
||||
url: '/wms/receivePlan/batchDelete',
|
||||
method: 'delete',
|
||||
data: receiveIdList || []
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user