Commit f1df97de authored by “lixuyan”'s avatar “lixuyan”

修改不显示的问题

parent a7bbbf9d
...@@ -194,7 +194,7 @@ export default { ...@@ -194,7 +194,7 @@ export default {
isLeaf: true, isLeaf: true,
disabled: true, disabled: true,
level: 1, level: 1,
children: res.items.content.map((t) => { children: res.items && res.items.content.map((t) => {
// quantity += t.completeCount // quantity += t.completeCount
// total += t.carryCount // total += t.carryCount
return { return {
......
...@@ -197,7 +197,7 @@ export default { ...@@ -197,7 +197,7 @@ export default {
isLeaf: true, isLeaf: true,
disabled: true, disabled: true,
level: 1, level: 1,
children: res.items.map((t) => { children: res.items && res.items.map((t) => {
quantity += t.completeCount quantity += t.completeCount
total += t.carryCount total += t.carryCount
return { return {
......
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