previewPdf.vue 516 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view>
  3. <u-navbar back-text="" title="" back-icon-color="#FFFFFF" :background="{ background: '#3D5D4C' }" :border-bottom="false"></u-navbar>
  4. <web-view class="web-view" :src="pdfUrl"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. pdfUrl: ''
  12. };
  13. },
  14. onLoad(page) {
  15. if (page.fileUrl) {
  16. this.pdfUrl = `${this.config.previewPdfUrl}?src=${page.fileUrl}`;
  17. }
  18. }
  19. };
  20. </script>
  21. <style lang="scss" scoped>
  22. .web-view {
  23. top: 44px;
  24. }
  25. </style>