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

修改不显示的问题

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