|
|
@ -249,6 +249,7 @@ const currentChange = val => { |
|
|
|
// 刷新按钮 |
|
|
|
// 刷新按钮 |
|
|
|
const searchChangeS = () => { |
|
|
|
const searchChangeS = () => { |
|
|
|
details.search = false; //关闭搜索 |
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
|
|
|
onLoad(); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 顶部搜索 |
|
|
|
// 顶部搜索 |
|
|
|
const searchHide = () => { |
|
|
|
const searchHide = () => { |
|
|
@ -276,26 +277,35 @@ const onLoad = () => { |
|
|
|
size: details.page.pageSize, |
|
|
|
size: details.page.pageSize, |
|
|
|
...details.query, |
|
|
|
...details.query, |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
details.loadingObj.list = true; |
|
|
|
$_warehouseRetentionRecordPage(data).then(res => { |
|
|
|
$_warehouseRetentionRecordPage(data).then(res => { |
|
|
|
console.log(res, '返回值'); |
|
|
|
console.log(res, '返回值'); |
|
|
|
details.data = res.data.data.records; |
|
|
|
if (res.data.code == 200) { |
|
|
|
details.data.forEach(item => { |
|
|
|
details.data = res.data.data.records || []; |
|
|
|
if (item.retentionWay == 1) { |
|
|
|
if (details.data?.length) { |
|
|
|
item.retentionWayNameS = '扫描'; |
|
|
|
details.data.forEach(item => { |
|
|
|
} else if (item.retentionWay == 2) { |
|
|
|
if (item.retentionWay == 1) { |
|
|
|
item.retentionWayNameS = '文员'; |
|
|
|
item.retentionWayNameS = '扫描'; |
|
|
|
} |
|
|
|
} else if (item.retentionWay == 2) { |
|
|
|
if (item.scanType == 1) { |
|
|
|
item.retentionWayNameS = '文员'; |
|
|
|
item.scanType = '包件'; |
|
|
|
} |
|
|
|
} else if (item.scanTypeS == 2) { |
|
|
|
if (item.scanType == 1) { |
|
|
|
item.scanTypeName = '订单'; |
|
|
|
item.scanType = '包件'; |
|
|
|
} else if (item.scanType == 3) { |
|
|
|
} else if (item.scanTypeS == 2) { |
|
|
|
item.scanTypeNameS = '托盘'; |
|
|
|
item.scanTypeName = '订单'; |
|
|
|
|
|
|
|
} else if (item.scanType == 3) { |
|
|
|
|
|
|
|
item.scanTypeNameS = '托盘'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
details.page.total = res.data.data.total||0; |
|
|
|
details.page.total = res.data.data.total; |
|
|
|
} |
|
|
|
|
|
|
|
}).catch(()=>{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}).finally(()=>{ |
|
|
|
details.loadingObj.list = false; |
|
|
|
details.loadingObj.list = false; |
|
|
|
}); |
|
|
|
}) |
|
|
|
}; |
|
|
|
}; |
|
|
|
onLoad(); |
|
|
|
onLoad(); |
|
|
|
const view = row => { |
|
|
|
const view = row => { |
|
|
|