feat(wms/acid): 出口卷实绩新增筛选条件并优化搜索功能
1. 为出口卷实绩接口新增钢卷号模糊搜索和时间范围过滤能力 2. 给入场/当前卷号输入框添加清除按钮 3. 优化酸洗实绩页面的布局样式 4. 重构实绩列表分页和搜索逻辑
This commit is contained in:
@@ -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 }
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user