From eb3cf68faee31402822350045ee08f3fea28cd5c Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期五, 26 四月 2024 11:02:49 +0800
Subject: [PATCH] 资源购买页去除已购买资源

---
 packageBookService/pages/bookServices/detail/components/tree/index.js |  112 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 107 insertions(+), 5 deletions(-)

diff --git a/packageBookService/pages/bookServices/detail/components/tree/index.js b/packageBookService/pages/bookServices/detail/components/tree/index.js
index 00e10a7..da6920d 100644
--- a/packageBookService/pages/bookServices/detail/components/tree/index.js
+++ b/packageBookService/pages/bookServices/detail/components/tree/index.js
@@ -135,6 +135,8 @@
       if (token) {
         const item = e.currentTarget.dataset.item;
         const parent = e.currentTarget.dataset.parent;
+        const parentProductLinkPath = parent ? parent.productLinkPath : wx.getStorageSync('teachResourcesPath')
+        const parentName = parent ? parent.name : '鏁欏璧勬簮'
         let url;
         if (this.properties.isShowCheck && this.resourceIsBuy(item)) {
           return false;
@@ -159,18 +161,40 @@
               "璇峰厛璐拱璇ヨ祫婧�" : "璇峰厛鐐瑰嚮棰嗗彇鏌ョ湅鎸夐挳",
           });
         }
+        if (item.saleMethod.length == 0 && item.sysType == 'CmsItem' && this.properties.tab == "jsek_cloudLearning") {
+          return wx.showToast({
+            icon: 'error',
+            title: '鏆傛湭寮�濮嬮攢鍞紝璇疯仈绯荤鐞嗗憳',
+          })
+        }
+        if (this.properties.tab == "jsek_teachingResources" && item.fileMap) {
+          if (item.file && item.fileMap[item.file].protectType !== "Public") {
+            return wx.showToast({
+              icon: 'error',
+              title: '璧勬簮涓嶅彲鐢紝璇疯仈绯荤鐞嗗憳',
+            })
+          } else if (item.freeFile && item.fileMap[item.freeFile].protectType !== "Public") {
+            return wx.showToast({
+              icon: 'error',
+              title: '璧勬簮涓嶅彲鐢紝璇疯仈绯荤鐞嗗憳',
+            })
+          }
+        }
         wx.navigateTo({
-          url: `${url}?productLinkPath=${item.productLinkPath}&parentProductLinkPath=${parent.productLinkPath}&parentName=${parent.name}&activeId=${item.id}&bookId=${this.properties.bookInfo.id}&bookName=${this.properties.bookInfo.name}&cmsId=${this.properties.bookInfo.rootCmsItemId}&formPath=${this.properties.tab}`,
+          url: `${url}?productLinkPath=${item.productLinkPath}&parentProductLinkPath=${parentProductLinkPath}&parentName=${parentName}&activeId=${item.id}&bookId=${this.properties.bookInfo.id}&bookName=${this.properties.bookInfo.name}&cmsId=${this.properties.bookInfo.rootCmsItemId}&formPath=${this.properties.tab}`,
         });
+
+
         if (item.selectType == "document" || item.selectType == "pdf") {
-          const fileLink =
-            app.config.requestCtx + "/file/api/ApiDownload?md5=" + item.file;
+          // freeFile
+          const fileLink = item.file ?
+            app.config.requestCtx + "/file/api/ApiDownload?md5=" + item.file : app.config.requestCtx + "/file/api/ApiDownload?md5=" + item.freeFile
           console.log(fileLink, "fileLink");
           //鎻愮ず鍔犺浇涓�
           util.showLoading();
           // 鍗曟涓嬭浇鍏佽鐨勬渶澶ф枃浠朵负 200MB
           wx.downloadFile({
-            url: fileLink, // 鍦板潃宸叉墦鐮侊紝鑷繁鎹釜鍏朵粬鐨勫湴鍧�锛�"https://www.xxxxx.com/file/娴嬭瘯閫氱煡.pdf"锛�
+            url: fileLink,
             success: function (res) {
               console.log(res, "wx.downloadFile success res");
               if (res.statusCode != 200) {
@@ -193,6 +217,84 @@
             },
           });
         }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+        // if (item.selectType == "document" || item.selectType == "pdf") {
+        //   const fileLink = app.config.requestCtx + "/file/api/ApiDownload?md5=" + item.file;
+
+        //   let filePath = wx.env.USER_DATA_PATH + '/' + item.name
+        //   console.log(filePath, 'filePath');
+        //   //鎻愮ず鍔犺浇涓�
+        //   util.showLoading();
+        //   // 鍗曟涓嬭浇鍏佽鐨勬渶澶ф枃浠朵负 200MB
+        //   wx.downloadFile({
+        //     url: fileLink,
+        //     success: function (res) {
+
+        //       if (res.statusCode != 200) {
+        //         util.hideLoadingWithErrorTips();
+        //         return false;
+        //       }
+        //       var Path = res.tempFilePath; //杩斿洖鐨勬枃浠朵复鏃跺湴鍧�锛岀敤浜庡悗闈㈡墦寮�鏈湴棰勮鎵�鐢�
+
+        //       wx.saveFile({
+        //         tempFilePath: Path,
+        //         success: function (res) {
+        //           var savedFilePath = res.savedFilePath;
+        //           // 灏嗘枃浠朵繚瀛樹负 item.name
+        //           wx.saveFile({
+        //             tempFilePath: savedFilePath,
+        //             filePath: wx.env.USER_DATA_PATH + '/' + item.name,
+        //             success: function (res) {
+        //               wx.openDocument({
+        //                 filePath: res.savedFilePath,
+        //                 showMenu: true,
+        //                 success: function (res) {
+        //                   util.hideLoading();
+        //                 },
+        //               });
+        //             },
+        //             fail: function (err) {
+        //               util.hideLoadingWithErrorTips();
+        //             }
+        //           });
+        //         },
+        //         fail: function (err) {
+        //           util.hideLoadingWithErrorTips();
+        //         }
+        //       });
+        //     },
+        //     fail: function (err) {
+        //       util.hideLoadingWithErrorTips();
+        //     },
+        //   });
+        // }
+
+
+
+
+
         if (item.selectType == "webpage") {
           this.setData({
             webpageSrc: item.jsek_link,
@@ -201,6 +303,7 @@
         }
       }
     },
+
     // 鎷垮埌鎵�鏈夐」
     getAllChildren(id) {
       let result = [];
@@ -516,7 +619,6 @@
           item.isShopCar = false
           this.triggerEvent("updateCloudLearning")
         }
-
       }
     },
     sadd() {

--
Gitblit v1.9.1