From e5f45ec9c2eabaa3e4241caad2d49c3629eaf0c8 Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期一, 30 九月 2024 14:18:40 +0800 Subject: [PATCH] loading --- packageDomain/pages/resourceDetails/document/index.js | 27 ++++++++++++++++++--------- 1 files changed, 18 insertions(+), 9 deletions(-) diff --git a/packageDomain/pages/resourceDetails/document/index.js b/packageDomain/pages/resourceDetails/document/index.js index 84a9d8e..c33b79b 100644 --- a/packageDomain/pages/resourceDetails/document/index.js +++ b/packageDomain/pages/resourceDetails/document/index.js @@ -159,14 +159,16 @@ /** * 鐢ㄦ埛鐐瑰嚮鍙充笂瑙掑垎浜� */ - onShareAppMessage() { - - }, + onShareAppMessage() {}, + onShareTimeline() {}, goBack() { wx.navigateBack() }, resourceDetailsData() { + wx.showLoading({ + title: '姝e湪鍔犺浇...', + }); let query = { path: '*', queryType: '*', @@ -284,39 +286,46 @@ //鍒氳繘鏉ョ殑鏃跺�欒皟鐢� handleTeachData(item) { //鍥剧墖 - console.log(item, 'item11111'); + if (item.selectType == 'picture') { 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') { app.MG.file.getPdfInfo({ md5: item.file }).then((res) => { - if (res && res.totalPages) { - for (let i = 0; i < res.totalPages; i++) { + 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' - this.data.naturalResources.push(src) - // console.log(this.data.naturalResources, ' this.data.naturalResources'); + naturalResources.push(src) } } + this.setData({ + naturalResources + }) + wx.hideLoading(); }) } + }, handleTap: function () { -- Gitblit v1.9.1