From abe52e53bee051e3f801d001c4de58d34a3fefd7 Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期三, 23 十月 2024 09:54:09 +0800 Subject: [PATCH] wj --- packageDomain/pages/resourceDetails/document/index.js | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) diff --git a/packageDomain/pages/resourceDetails/document/index.js b/packageDomain/pages/resourceDetails/document/index.js index 13930df..00cbcfa 100644 --- a/packageDomain/pages/resourceDetails/document/index.js +++ b/packageDomain/pages/resourceDetails/document/index.js @@ -166,6 +166,9 @@ }, resourceDetailsData() { + wx.showLoading({ + title: '姝e湪鍔犺浇...', + }); let query = { path: '*', queryType: '*', @@ -287,38 +290,42 @@ this.setData({ showData: item.file ? app.config.requestCtx + '/file/api/ApiDownload?md5=' + item.file : app.config.requestCtx + '/file/api/ApiDownload?md5=' + item.freeFile, }) - console.log(this.data.showData, 'showData'); + wx.hideLoading(); } // 涓嬭浇鏂囦欢zip if (item.selectType == 'zip') { this.setData({ zipData: item }) + wx.hideLoading(); } //缃戦〉 if (item.selectType == 'webpage') { this.setData({ webpageSrc: item.jsek_link }) + wx.hideLoading(); } //鏂囨。绛� if (item.selectType == 'pdf' || item.selectType == 'document') { + let md5 = item.file ? item.file : item.freeFile app.MG.file.getPdfInfo({ - md5: item.file + md5: md5 }).then((res) => { let naturalResources = [] - if (res && JSON.parse(res).totalPages) { - for (let i = 0; i < JSON.parse(res).totalPages; i++) { - const src = app.config.requestCtx + '/file/GetPdfPageImage?md5=' + item.file + '&index=' + (i + 1) + '&dpi=300' + if (res && res.totalPages) { + for (let i = 0; i < res.totalPages; i++) { + const src = app.config.requestCtx + '/file/GetPdfPageImage?md5=' + md5 + '&index=' + (i + 1) + '&dpi=300' naturalResources.push(src) } } this.setData({ naturalResources }) - console.log('ppt', this.data.naturalResources); + wx.hideLoading(); }) } + }, handleTap: function () { -- Gitblit v1.9.1