From 960c49a8b3ac11dff27cad71137f986f90f00923 Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期五, 26 四月 2024 19:16:32 +0800
Subject: [PATCH] 样书申请、详情页资源显示bug修改

---
 packageBookService/pages/bookServices/detail/buyResource/index.js |   66 +++++++++++++++++++++++++++-----
 1 files changed, 55 insertions(+), 11 deletions(-)

diff --git a/packageBookService/pages/bookServices/detail/buyResource/index.js b/packageBookService/pages/bookServices/detail/buyResource/index.js
index 7e3cbad..b4032b9 100644
--- a/packageBookService/pages/bookServices/detail/buyResource/index.js
+++ b/packageBookService/pages/bookServices/detail/buyResource/index.js
@@ -86,6 +86,44 @@
     wx.navigateBack();
   },
 
+  // 鑾峰彇鎵�鏈夊瓙椤规暟閲�
+  getChildrenItem(data) {
+    let num = 0
+
+    function getNum(data) {
+      for (let index = 0; index < data.length; index++) {
+        const item = data[index];
+        if (item.sysType == 'CmsItem') {
+          num += 1
+        } else if (item.sysType == 'CmsFolder') {
+          if (item.children && item.children.length)
+            getNum(item.children)
+        }
+      }
+    }
+    getNum(data)
+    return num
+  },
+
+  // 缁櫬风洰褰曟坊鍔犲瓙椤规暟閲�
+  changeResourceChildren(list) {
+    const changeList = (list) => {
+      for (let index = 0; index < list.length; index++) {
+        const item = list[index];
+        if (item.sysType == 'CmsFolder' && item.children && item.children.length) {
+          item.childrenItem = this.getChildrenItem([item])
+          changeList(item.children)
+        } else if (item.sysType == 'CmsFolder' && item.children && !item.children.length) {
+          item.childrenItem = 0
+        } else if (item.sysType == 'CmsFolder' && !item.children) {
+          item.childrenItem = 0
+        }
+      }
+    }
+    changeList(list)
+    return list
+  },
+
   // 鎵佸钩鍖栨暟鎹浆鎹ree
   getTreeList(rootList, pathLength, newArr, path) {
     for (const item of rootList) {
@@ -103,8 +141,12 @@
           }
         }
         // newArr.push(item)
-        // 鍦ㄦ彃鍏ヨ繃绋嬩腑瀵规暟鎹繘琛屾帓搴�
-        newArr = this.insertAndSortObjectsByProductLinkPath(newArr, item)
+        // 鍦ㄦ彃鍏ヨ繃绋嬩腑瀵规暟鎹繘琛屾帓搴�  骞朵笖鍘婚櫎宸茬粡棰嗗彇鍜岃喘涔扮殑
+        if (item.sysType == 'CmsFolder') {
+          newArr = this.insertAndSortObjectsByProductLinkPath(newArr, item)
+        } else if (item.sysType == 'CmsItem' && this.resourceIsBuy(item)) {
+          newArr = this.insertAndSortObjectsByProductLinkPath(newArr, item)
+        }
       }
     }
     //缁欐暟缁勯噷闈㈠啀娣诲姞涓�涓猚hildren鐨勭┖鏁扮粍
@@ -237,16 +279,18 @@
           }
         });
         // 鏄剧ず 闇�瑕佽喘涔扮殑鍜岄渶瑕佸厤璐归鍙栫殑
-        const arr = res.datas.cmsDatas[0].datas.filter(item => this.resourceIsBuy(item))
-        if (!arr.length) {
-          return this.setData({
-            loading: false,
-            haider: true,
-            noData: true
-          })
-        }
-        this.getTreeList(arr, 17, list, '\\')
+        // const arr = res.datas.cmsDatas[0].datas.filter(item => this.resourceIsBuy(item))
+        // if (!arr.length) {
+        //   return this.setData({
+        //     loading: false,
+        //     haider: true,
+        //     noData: true
+        //   })
+        // }
+        // debugger
+        this.getTreeList(res.datas.cmsDatas[0].datas, 17, list, '\\')
         list = this.ensureTreeConsistency(list)
+        list = this.changeResourceChildren(list)
         console.log('淇敼鍚庝簯', list);
         let result = [];
         if (type.refCode == "jsek_teachingResources") {

--
Gitblit v1.9.1