預覽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)
      // 監(jiān)聽滾動條事件
      this.listenerFunction()
    },
    data () {
      return {
        // ----- loading -----
        remindText: {
          loading: '加載文件中,文件較大請耐心等待...',
          refresh: '若卡住不動扇救,可刷新頁面重新加載...'
        },
        remindShow: '加載文件中刑枝,文件較大請耐心等待...',
        intervalID: '',
        // ----- vuepdf -----
        // src靜態(tài)路徑: /static/xxx.pdf
        // src服務器路徑: 'http://.../xxx.pdf'
        src: 'https://xiaoyong.fun/luota.pdf',
        // 當前頁數(shù)
        currentPage: 0,
        // 總頁數(shù)
        pageCount: 0,
        // 加載進度
        loadedRatio: 0
      }
    },
    methods: {
      // 監(jiān)聽滾動條事件
      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
        }
      },
      // 切換頁數(shù)
      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;
  }
  
  /* 右側功能按鈕區(qū) */
  .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
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末迅腔,一起剝皮案震驚了整個濱河市装畅,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌沧烈,老刑警劉巖掠兄,帶你破解...
    沈念sama閱讀 211,348評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異掺出,居然都是意外死亡徽千,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評論 2 385
  • 文/潘曉璐 我一進店門汤锨,熙熙樓的掌柜王于貴愁眉苦臉地迎上來双抽,“玉大人,你說我怎么就攤上這事闲礼‰剐冢” “怎么了?”我有些...
    開封第一講書人閱讀 156,936評論 0 347
  • 文/不壞的土叔 我叫張陵柬泽,是天一觀的道長慎菲。 經(jīng)常有香客問我,道長锨并,這世上最難降的妖魔是什么露该? 我笑而不...
    開封第一講書人閱讀 56,427評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮第煮,結果婚禮上解幼,老公的妹妹穿的比我還像新娘抑党。我一直安慰自己,他們只是感情好撵摆,可當我...
    茶點故事閱讀 65,467評論 6 385
  • 文/花漫 我一把揭開白布底靠。 她就那樣靜靜地躺著,像睡著了一般特铝。 火紅的嫁衣襯著肌膚如雪暑中。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評論 1 290
  • 那天鲫剿,我揣著相機與錄音鳄逾,去河邊找鬼。 笑死牵素,一個胖子當著我的面吹牛严衬,可吹牛的內容都是我干的。 我是一名探鬼主播笆呆,決...
    沈念sama閱讀 38,931評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼嚎杨,長吁一口氣:“原來是場噩夢啊……” “哼脏款!你這毒婦竟也來了衬衬?” 一聲冷哼從身側響起狱从,我...
    開封第一講書人閱讀 37,696評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎榕堰,沒想到半個月后竖慧,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡逆屡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,483評論 2 327
  • 正文 我和宋清朗相戀三年圾旨,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片魏蔗。...
    茶點故事閱讀 38,625評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡砍的,死狀恐怖,靈堂內的尸體忽然破棺而出莺治,到底是詐尸還是另有隱情廓鞠,我是刑警寧澤,帶...
    沈念sama閱讀 34,291評論 4 329
  • 正文 年R本政府宣布谣旁,位于F島的核電站床佳,受9級特大地震影響,放射性物質發(fā)生泄漏榄审。R本人自食惡果不足惜砌们,卻給世界環(huán)境...
    茶點故事閱讀 39,892評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧怨绣,春花似錦角溃、人聲如沸拷获。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽匆瓜。三九已至赢笨,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間驮吱,已是汗流浹背茧妒。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留左冬,地道東北人桐筏。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像拇砰,于是被迫代替她去往敵國和親梅忌。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,492評論 2 348

推薦閱讀更多精彩內容