From 87c29614f629792d69058462701c392cce382588 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Tue, 17 Dec 2024 15:31:26 +0800 Subject: [PATCH] =?UTF-8?q?ppt=E9=A2=84=E8=A7=88=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- course/courseDetail/courseDetail.vue | 35 ++++------------------------ 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/course/courseDetail/courseDetail.vue b/course/courseDetail/courseDetail.vue index f300541..c8b0f68 100644 --- a/course/courseDetail/courseDetail.vue +++ b/course/courseDetail/courseDetail.vue @@ -358,38 +358,11 @@ // 判断文件是图片/视频/pdf等 handleFileType(row) { const type = row.fileType - const platform = uni.getSystemInfoSync().platform - console.log(444, platform) - // ppt安卓下没法用webview或者用微软的office服务预览(皆会没法显示),因此下载到本地查看 - if ((type === 'pptx' || type === 'ppt') && platform === 'android') { - this.curRow = {} + // ppt安卓下没法用webview或者用微软的office服务预览(皆会没法显示),因此用h5嵌套显示(该地址是慧教云舟官网地址) + if (type === 'pptx' || type === 'ppt') { + row.isDoc = true row.viewUrl = 'https://eduvessel.com/#/previewPPT?src=' + row.fileUrl - row.isAndroidPreviewPPT = true - // uni.showLoading({ - // title: '加载中', - // mask: true - // }) - // uni.downloadFile({ - // url: row.fileUrl, - // success: function(res) { - // console.log(11, res) - // // 新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。 - // uni.openDocument({ - // filePath: res.tempFilePath, - // fileType: row.fileType, - // showMenu: true, // 允许出现分享功能 - // success: res => { - // uni.hideLoading() - // }, - // fail: openError => { - // uni.hideLoading() - // } - // }) - // }, - // fail: function(err) { - // uni.hideLoading() - // } - // }) + this.curRow = row } else { if (this.$util.exts.video.includes(type)) { row.isVideo = true