pdf.vue 425 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <web-view v-if="fileUrl" :src="fileUrl"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. fileUrl: ''
  11. }
  12. },
  13. onLoad(body) {
  14. uni.setNavigationBarTitle({
  15. title: body.titleName
  16. });
  17. this.fileUrl = 'http://127.0.0.1:8848/webview/pdf/web/viewer.html?file=' + body.fileUrl;
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>