feat(入库记录): 修改查询接口为POST并添加入库类型筛选

- 将listMmRecordInbound接口从GET改为POST以支持更复杂的查询条件
- 在查询表单中添加入库类型筛选下拉框
- 将创建日期选择器改为日期时间范围选择器
This commit is contained in:
Tom
2026-01-04 18:58:11 +08:00
parent fbf1bf15af
commit 0a4eedfb81
2 changed files with 22 additions and 7 deletions

View File

@@ -4,11 +4,11 @@ import request from '@/utils/request'
* 入库记录表分页查询
* @param {查询条件} data
*/
export function listMmRecordInbound(query) {
export function listMmRecordInbound(data) {
return request({
url: 'mes/productionMaterial/MmRecordInbound/list',
method: 'get',
params: query
method: 'post',
data: data
})
}