CzRger пре 6 месеци
родитељ
комит
9ae98748c5
1 измењених фајлова са 7 додато и 3 уклоњено
  1. 7 3
      src/views/web/list/index.vue

+ 7 - 3
src/views/web/list/index.vue

@@ -604,9 +604,13 @@ const initWS = () => {
                   tag.children.forEach(type => {
                     if (type.treeId == resType.typeCode) {
                       resType.datas.forEach((index, indexI) => {
-                        type.children[indexI].__count = index.data
-                        type.__count = type.__count ? (type.__count + index.data) : index.data
-                        tag.__count = tag.__count ? (tag.__count + index.data) : index.data
+                        type.children.forEach(v => {
+                          if (v.treeId == index.indexCode) {
+                            v.__count = index.data
+                            type.__count = type.__count ? (type.__count + index.data) : index.data
+                            tag.__count = tag.__count ? (tag.__count + index.data) : index.data
+                          }
+                        })
                       })
                       type.children.sort((a, b) => b.__count - a.__count)
                     }