accessory_app.vue 510 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="content">
  3. <iframe :src="fileUrl"></iframe>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. fileName: '',
  11. fileUrl: '',
  12. }
  13. },
  14. onLoad(opt) {
  15. this.fileName = opt.fileName;
  16. this.fileUrl = opt.fileUrl;
  17. uni.setNavigationBarTitle({
  18. title: this.fileName
  19. })
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style>
  26. .content {
  27. height: 100%;
  28. width: 100%;
  29. background-color: #FFFFFF;
  30. }
  31. </style>