pdf.vue 454 B

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