From b9d08f45e3dc1fce9b8ae37ae8b95562843d4cbe Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期四, 19 九月 2024 14:23:26 +0800 Subject: [PATCH] pdf --- packageDomain/pages/resourceDetails/document/index.js | 22 +++++++++++++++------- 1 files changed, 15 insertions(+), 7 deletions(-) diff --git a/packageDomain/pages/resourceDetails/document/index.js b/packageDomain/pages/resourceDetails/document/index.js index 4808f57..ef0ca54 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({ /** @@ -67,10 +70,16 @@ const token = wx.getStorageSync(app.config.tokenKey) if (!token) { loginInfo(app, (data) => { - if (data) {} else {} + if (data) { + this.resourceDetailsData() + } else { + this.resourceDetailsData() + } }) + } else { + this.resourceDetailsData() } - this.resourceDetailsData() + }, /** @@ -150,9 +159,8 @@ /** * 鐢ㄦ埛鐐瑰嚮鍙充笂瑙掑垎浜� */ - onShareAppMessage() { - - }, + onShareAppMessage() {}, + onShareTimeline() {}, goBack() { wx.navigateBack() }, @@ -299,8 +307,8 @@ app.MG.file.getPdfInfo({ md5: item.file }).then((res) => { - if (res && res.totalPages) { - for (let i = 0; i < res.totalPages; i++) { + 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'); -- Gitblit v1.9.1