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 | 49 +++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 39 insertions(+), 10 deletions(-) diff --git a/packageDomain/pages/resourceDetails/document/index.js b/packageDomain/pages/resourceDetails/document/index.js index 0ca3e50..00cbcfa 100644 --- a/packageDomain/pages/resourceDetails/document/index.js +++ b/packageDomain/pages/resourceDetails/document/index.js @@ -1,6 +1,9 @@ // pages/resourceDetails/document/index.js import Toast from 'tdesign-miniprogram/toast/index'; const app = getApp() +import { + loginInfo +} from '../../../../assets/js/login'; Page({ /** @@ -16,6 +19,7 @@ navBarHeight: '', barHeight: '', activeId: '', + storeInfo: '', bookId: '', bookName: '', cmsId: '', @@ -55,6 +59,7 @@ activeId: options.activeId, bookId: options.bookId, bookName: options.bookName, + storeInfo: options.storeInfo, cmsId: options.cmsId, parentName: options.parentName, parentProductLinkPath: options.parentProductLinkPath, @@ -62,7 +67,19 @@ applyState: options.applyState, deadline: options.deadline }) - this.resourceDetailsData() + const token = wx.getStorageSync(app.config.tokenKey) + if (!token) { + loginInfo(app, (data) => { + if (data) { + this.resourceDetailsData() + } else { + this.resourceDetailsData() + } + }) + } else { + this.resourceDetailsData() + } + }, /** @@ -142,14 +159,16 @@ /** * 鐢ㄦ埛鐐瑰嚮鍙充笂瑙掑垎浜� */ - onShareAppMessage() { - - }, + onShareAppMessage() {}, + onShareTimeline() {}, goBack() { wx.navigateBack() }, resourceDetailsData() { + wx.showLoading({ + title: '姝e湪鍔犺浇...', + }); let query = { path: '*', queryType: '*', @@ -173,6 +192,9 @@ start: 0, size: 999 } + } + if (this.data.storeInfo) { + query.storeInfo = this.data.storeInfo } app.MG.store.getProductDetail(query).then((res) => { console.log(res); @@ -264,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') { + let md5 = item.file ? item.file : item.freeFile app.MG.file.getPdfInfo({ - md5: item.file + md5: md5 }).then((res) => { + let naturalResources = [] if (res && res.totalPages) { for (let i = 0; i < 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'); + const src = app.config.requestCtx + '/file/GetPdfPageImage?md5=' + md5 + '&index=' + (i + 1) + '&dpi=300' + naturalResources.push(src) } } + this.setData({ + naturalResources + }) + wx.hideLoading(); }) } + }, handleTap: function () { -- Gitblit v1.9.1