|
@@ -126,9 +126,11 @@ const cacheManager = (function() {
|
|
|
let obj = get(key) || {};
|
|
|
let result = {}
|
|
|
obj.zhangList.map(item => item.zList.forEach(jie => {
|
|
|
- if (jie.jieId == currentJieId) {
|
|
|
- result = jie;
|
|
|
- }
|
|
|
+ jie.jieList.forEach(cItem => {
|
|
|
+ if (cItem.jieId == currentJieId) {
|
|
|
+ result = cItem;
|
|
|
+ }
|
|
|
+ })
|
|
|
}))
|
|
|
return result
|
|
|
}
|