affiche.vue 510 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="iframe-content">
  3. <headContent borderBottom>
  4. <template #left>
  5. <reverse-back />
  6. </template>
  7. <template #content>
  8. <view class="haed-title">
  9. </view>
  10. </template>
  11. </headContent>
  12. <view class="iframe-box">
  13. <iframe :src="iframeUrl" frameborder="0"></iframe>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. iframeUrl: ''
  22. };
  23. },
  24. onLoad(opt) {
  25. this.iframeUrl = opt.link
  26. }
  27. }
  28. </script>
  29. <style lang="scss">
  30. </style>