Commit d892fc1f authored by Marcus's avatar Marcus

后台-入仓储位选择文案错误

http://zentao.jdshangmen.com/bug-view-951.html
parent 01195b03
......@@ -210,10 +210,10 @@ export default {
if (f.selected) result.push(f.code)
else f.positionList?.forEach(g => {
// 位置
if (g.selected) result.push(g.code)
if (g.selected) result.push(f.code + g.code)
else if(g.children) g.children?.forEach(k => {
// 子位置
if (k.selected) result.push(k.code)
if (k.selected) result.push(f.code + k.code)
})
})
})
......
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