预览pdf

一、简单、方便
<template>
    <div>
        // 第一种方式
        <a href="https://mp-6b242e24-5f84-4668-95da-2c7804a288cd.cdn.bspapp.com/jl.pdf">第一种方法:预览</a>
        <hr>
        // 第二种方式
        <button @click="btn">点击显示</button>
        <iframe v-if="isShow" src="https://mp-6b242e24-5f84-4668-95da-2c7804a288cd.cdn.bspapp.com/jl.pdf" frameborder="0" style="width: 100%; height: 1200px;"></iframe>
    </div>
</template>
<script>
export default {
    data() {
        return {
            isShow: false
        }
    },
    methods: {
        btn() {
            this.isShow = true
        }
    }

}
</script>
<style lang="scss" scoped></style>
二、插件方式
父组件
<template>
    <div class="container">
      <excelView />
    </div>
  </template>
  
  <script>
  import excelView from "./components/pdf"
  export default {
    components: {
      excelView
    }
  }
  </script>
  
  <style scoped>
  .container {
    font-family: PingFang SC;
    width: 100%;
    height: 500px;
  }
  </style>
子组件
<template>
    <div id="container">
      <!-- 上一页、下一页 -->
      <div class="right-btn">
        <!-- 输入页码 -->
        <div class="pageNum">
          <input
  v-model.number="currentPage"
                 type="number"
                 class="inputNumber"
                 @input="inputEvent()"> / {{pageCount}}
        </div>
        <div
  @click="changePdfPage('first')"
             class="turn">
          首页
        </div>
        <!-- 在按钮不符合条件时禁用 -->
        <div @click="changePdfPage('pre')"
             class="turn-btn"
             :style="currentPage===1?'cursor: not-allowed;':''">
          上一页
        </div>
        <div @click="changePdfPage('next')"
             class="turn-btn"
             :style="currentPage===pageCount?'cursor: not-allowed;':''">
          下一页
        </div>
        <div @click="changePdfPage('last')"
             class="turn">
          尾页
        </div>
      </div>
  
      <div class="pdfArea">
        <pdf :src="src"
             ref="pdf"
             v-show="loadedRatio===1"
             :page="currentPage"
             @num-pages="pageCount=$event"
             @progress="loadedRatio = $event"
             @page-loaded="currentPage=$event"
             @loaded="loadPdfHandler"
             @link-clicked="currentPage = $event"
             style="display: inline-block;width:100%"
             id="pdfID"></pdf>
      </div>
      <!-- 加载未完成时,展示进度条组件并计算进度 -->
      <div class="progress"
           v-show="loadedRatio!==1">
        <el-progress type="circle"
                     :width="70"
                     color="#53a7ff"
                     :percentage="Math.floor(loadedRatio * 100)"></el-progress>
        <br>
        <!-- 加载提示语 -->
        <span>{{remindShow}}</span>
      </div>
    </div>
  </template>
  
  <script>
  import pdf from 'vue-pdf'
  
  export default {
    components: {
      pdf
    },
    computed: {
    },
    created () {
      this.prohibit()
    },
    destroyed () {
      // 在页面销毁时记得清空 setInterval
      clearInterval(this.intervalID)
    },
    mounted () {
      // 更改 loading 文字
      this.intervalID = setInterval(() => {
        this.remindShow === this.remindText.refresh
          ? this.remindShow = this.remindText.loading
          : this.remindShow = this.remindText.refresh
      }, 4000)
      // 监听滚动条事件
      this.listenerFunction()
    },
    data () {
      return {
        // ----- loading -----
        remindText: {
          loading: '加载文件中,文件较大请耐心等待...',
          refresh: '若卡住不动,可刷新页面重新加载...'
        },
        remindShow: '加载文件中,文件较大请耐心等待...',
        intervalID: '',
        // ----- vuepdf -----
        // src静态路径: /static/xxx.pdf
        // src服务器路径: 'http://.../xxx.pdf'
        src: 'https://xiaoyong.fun/luota.pdf',
        // 当前页数
        currentPage: 0,
        // 总页数
        pageCount: 0,
        // 加载进度
        loadedRatio: 0
      }
    },
    methods: {
      // 监听滚动条事件
      listenerFunction (e) {
        document.getElementById('container').addEventListener('scroll', true)
      },
      // 页面回到顶部
      toTop () {
        document.getElementById('container').scrollTop = 0
      },
      // 输入页码时校验
      inputEvent () {
        if (this.currentPage > this.pageCount) {
          // 1. 大于max
          this.currentPage = this.pageCount
        } else if (this.currentPage < 1) {
          // 2. 小于min
          this.currentPage = 1
        }
      },
      // 切换页数
      changePdfPage (val) {
        if (val === 'pre' && this.currentPage > 1) {
          // 切换后页面回到顶部
          this.currentPage--
          this.toTop()
        } else if (val === 'next' && this.currentPage < this.pageCount) {
          this.currentPage++
          this.toTop()
        } else if (val === 'first') {
          this.currentPage = 1
          this.toTop()
        } else if (val === 'last' && this.currentPage < this.pageCount) {
          this.currentPage = this.pageCount
          this.toTop()
        }
      },
  
      // pdf加载时
      loadPdfHandler (e) {
        // 加载的时候先加载第一页
        this.currentPage = 1
      },
  
      // 禁用鼠标右击、F12 来禁止打印和打开调试工具
      prohibit () {
        // console.log(document)
        document.oncontextmenu = function () {
          return false
        }
        document.onkeydown = function (e) {
          if (e.ctrlKey && (e.keyCode === 65 || e.keyCode === 67 || e.keyCode === 73 || e.keyCode === 74 || e.keyCode === 80 || e.keyCode === 83 || e.keyCode === 85 || e.keyCode === 86 || e.keyCode === 117)) {
            return false
          }
          if (e.keyCode === 18 || e.keyCode === 123) {
            return false
          }
        }
      }
    }
  }
  </script>
  
  <style scoped>
  #container {
    overflow: auto;
    height: 800px;
    font-family: PingFang SC;
    width: 100%;
    display: flex;
    /* justify-content: center; */
    position: relative;
  }
  
  /* 右侧功能按钮区 */
  .right-btn {
    position: fixed;
    right: 5%;
    bottom: 15%;
    width: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 99;
  }
  
  .pdfArea {
    width: 80%;
  }
  
  /* ------------------- 输入页码 ------------------- */
  .pageNum {
    margin: 10px 0;
    font-size: 18px;
  }
  /*在谷歌下移除input[number]的上下箭头*/
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
  }
  /*在firefox下移除input[number]的上下箭头*/
  input[type='number'] {
    -moz-appearance: textfield;
  }
  
  .inputNumber {
    border-radius: 8px;
    border: 1px solid #999999;
    height: 35px;
    font-size: 18px;
    width: 60px;
    text-align: center;
  }
  .inputNumber:focus {
    border: 1px solid #00aeff;
    background-color: rgba(18, 163, 230, 0.096);
    outline: none;
    transition: 0.2s;
  }
  
  /* ------------------- 切换页码 ------------------- */
  .turn {
    background-color: #888888;
    opacity: 0.7;
    color: #ffffff;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
  }
  
  .turn-btn {
    background-color: #000000;
    opacity: 0.6;
    color: #ffffff;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .turn-btn:hover,
  .turn:hover {
    transition: 0.3s;
    opacity: 0.5;
    cursor: pointer;
  }
  
  /* ------------------- 进度条 ------------------- */
  .progress {
    position: absolute;
    right: 50%;
    top: 50%;
    text-align: center;
  }
  .progress > span {
    color: #199edb;
    font-size: 14px;
  }
  </style>
  
  
简单方便的标签展示
c33c022144ba477dff3bcc0fc767b2e.png
插件展示图片
df788c0ca3ec0a256bbc1e20c66260e.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容