vue在线预览pdf、word、xls、ppt等office文件

perview(row){
      const typeArr = ['doc', 'docx', 'ppt', 'pptx', 'xls', 'xlsx']
      let arr=row.url.split('.')
      let fileType=arr[arr.length-1]
      let url = ''
      if (typeArr.indexOf(fileType) !== -1) {
        // 使用微软的office online
        url='http://view.xdocin.com/xdoc?_xdoc='+row.url
      } else {
        url = row.url
      }
      // window.open()居中打开
      const width = 1000; const height = 800
      const top = (window.screen.availHeight - height) / 2
      const left = (window.screen.availWidth - width) / 2
      window.open(url, '', 'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left)
    }
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容