litian
2024-06-28 232e4dcf0fc80bdcfff1bdf45431e67c25831fb6
pages/index/resourceCover.js
@@ -112,18 +112,12 @@
          "/file/api/ApiDownload?md5=" +
          book.freeFile;
        console.log(fileLink, "fileLink");
        // wx.redirectTo({
        //   url: "/packageBookService/pages/bookServices/webView/index?url=" + fileLink
        // });
        //提示加载中
        // 单次下载允许的最大文件为 200MB
        wx.downloadFile({
          url: fileLink,
          filePath: wx.env.USER_DATA_PATH + `/${book.name}.${book.selectType}`,
          success: function (res) {
            console.log(res, "wx.downloadFile success res");
            if (res.statusCode != 200) {
              return false;
            }
          }
        });
      }
    })
  },