Commit afbeb180 by wusiyi

feat: 工厂订单new新增全部tab下的状态筛选 #1006853

parent d49f01a7
...@@ -1112,7 +1112,7 @@ const { ...@@ -1112,7 +1112,7 @@ const {
}) })
// 查询状态树 // 查询状态树
const statusTreeChildren = computed(() => { const statusTreeChildren = computed(() => {
const tree = statusTree.value?.[0]?.children const tree = JSON.parse(JSON.stringify(statusTree.value?.[0]?.children))
if (!tree) return [] if (!tree) return []
tree.forEach((item) => { tree.forEach((item) => {
if (item.status === 'PICKING') item.children = [] if (item.status === 'PICKING') item.children = []
......
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