feat(wms/acid): 出口卷实绩新增筛选条件并优化搜索功能

1.  为出口卷实绩接口新增钢卷号模糊搜索和时间范围过滤能力
2.  给入场/当前卷号输入框添加清除按钮
3.  优化酸洗实绩页面的布局样式
4.  重构实绩列表分页和搜索逻辑
This commit is contained in:
2026-05-28 13:24:58 +08:00
parent 1c272792f7
commit d9f9c948cc
6 changed files with 90 additions and 49 deletions

View File

@@ -127,19 +127,20 @@ export function getRollHistoryCount(rollId, standId) {
}
// 出口卷实绩列表分页PLTCM_PDO_EXCOIL
export function getExcoilList(page = 1, pageSize = 50) {
export function getExcoilList(page = 1, pageSize = 50, coilId, startDate, endDate) {
return request({
url: '/sql-server-api/excoil',
method: 'get',
params: { page, pageSize }
params: { page, pageSize, coilId, startDate, endDate }
})
}
// 出口卷实绩总数
export function getExcoilCount() {
export function getExcoilCount(coilId, startDate, endDate) {
return request({
url: '/sql-server-api/excoil/count',
method: 'get'
method: 'get',
params: { coilId, startDate, endDate }
})
}