Rap 原分销系统代码Web
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

493425f4f3a788286997d0cb986a48a3e761c86e.svn-base 646B

pirms 5 mēnešiem
123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div v-loading="loading" :style="'height:'+ height">
  3. <iframe :src="src" frameborder="no" style="width: 100%;height: 100%" scrolling="auto" />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. src: {
  10. type: String,
  11. required: true
  12. }
  13. },
  14. data() {
  15. return {
  16. height: document.documentElement.clientHeight - 94.5 + 'px;',
  17. loading: true
  18. }
  19. },
  20. mounted: function() {
  21. setTimeout(() => {
  22. this.loading = false
  23. }, 230)
  24. const that = this
  25. window.onresize = function temp() {
  26. that.height = document.documentElement.clientHeight - 94.5 + 'px;'
  27. }
  28. }
  29. }
  30. </script>