|
@@ -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)
|
|
|
}
|