Commit 8967b965 by wusiyi

fix:修复接收到其他配货区信息导致箱子列表展示错乱bug #1001961

parent 97b2d714
......@@ -815,6 +815,14 @@ const messageChange = (data: WebSocketMessage) => {
if (!data) return
const { code, ...more } = data
// 过滤非本配货区的数据
if (
sortingAreaId.value &&
JSON.parse(more.txt as string).packingId !== sortingAreaId.value
) {
return
}
// 扫码进箱
if (
(props.wallType === 'us' && code === 'POD_PRINT_ORDER') ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment