previewPdf.vue 364 B

123456789101112131415161718192021
  1. <template>
  2. <view>
  3. <web-view class="web-view" :src="pdfUrl"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. pdfUrl: ''
  11. };
  12. },
  13. onLoad(options) {
  14. const { fileUrl } = options;
  15. if (fileUrl) {
  16. this.pdfUrl = `/static/pdf/web/viewer.html?file=${ encodeURIComponent(fileUrl) }`;
  17. }
  18. },
  19. };
  20. </script>