123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- // pages/file/download.js
- const util = require('../../utils/util.js');
- const api = require('../../utils/o2Api.js');
- Page({
- /**
- * Page initial data
- */
- data: {
- },
- /**
- * Lifecycle function--Called when page load
- */
- onLoad: function (options) {
- util.showLoading();
- var attId = options.attId; //附件id
- var type = options.type; // work | cms | bbs
- console.log('attId:', attId, ' type: ', type);
- if (!attId || !type) {
- util.hideLoading();
- console.log('没有传入参数!');
- wx.navigateBack({
- delta: 1,
- });
- }else {
- if (type == 'work') { // type = work
- if (options.workCompleted) {
- var url = api.workCompletedAttachementUrl(attId, options.workCompleted);
- this.downloadFileAndOpen(url);
- } else if (options.work) {
- var url = api.workAttachmentUrl(attId, options.work);
- this.downloadFileAndOpen(url);
- }else {
- util.hideLoading();
- console.log('没有传入工作id!');
- wx.navigateBack({
- delta: 1,
- });
- }
- } else if (type == 'cms') {//type = cms
- // var documentId = options.documentId;
- var url = api.cmsAttachementUrl(attId);
- this.downloadFileAndOpen(url);
- } else if (type == 'bbs') {//type = bbs
- // var subjectId = options.subjectId;
- var url = api.bbsAttachementUrl(attId);
- this.downloadFileAndOpen(url);
- }else {
- util.hideLoading();
- console.log('参数type不正确!');
- wx.navigateBack({
- delta: 1,
- });
- }
- }
- },
- //下载文件
- downloadFileAndOpen: function (url) {
- var who = wx.getStorageSync('who');
- var tokenName = wx.getStorageSync('tokenName');
- var token = '';
- if (who && who.token) {
- token = who.token;
- }
- let header = {}
- header[tokenName] = token
- console.log("url ", url)
- console.log(header)
- wx.downloadFile({
- url: url,
- header: header,
- success(res) {
- console.log(res)
- if (res.statusCode === 200) {
- console.log(res)
- var filePath = res.tempFilePath
- wx.navigateBack({
- delta: 1,
- success: function() {
- // 打开这个文件
- wx.openDocument({
- filePath: filePath,
- success: function (res) {
- console.log('打开文档成功')
- }
- });
- }
- });
- } else {
- console.log("下载失败。。。。。");
- util.hideLoading();
- util.toast('下载失败!');
- wx.navigateBack({
- delta: 1,
- });
- }
- },
- fail(res) {
- console.log(res);
- util.hideLoading();
- util.toast('下载失败!');
- wx.navigateBack({
- delta: 1,
- });
- }
- })
- },
- /**
- * Lifecycle function--Called when page is initially rendered
- */
- onReady: function () {
- },
- /**
- * Lifecycle function--Called when page show
- */
- onShow: function () {
- },
- /**
- * Lifecycle function--Called when page hide
- */
- onHide: function () {
- },
- /**
- * Lifecycle function--Called when page unload
- */
- onUnload: function () {
- },
- /**
- * Page event handler function--Called when user drop down
- */
- onPullDownRefresh: function () {
- },
- /**
- * Called when page reach bottom
- */
- onReachBottom: function () {
- },
- /**
- * Called when user click on the top right corner to share
- */
- onShareAppMessage: function () {
- }
- })
|