bigdata.vue 564 B

123456789101112131415161718192021222324
  1. <template>
  2. <div style="height: 100vh">
  3. <yx-navbar :isBack="true" :title="title"></yx-navbar>
  4. <iframe v-if="url" :src="url" style="width: 100vw;height: 100vh;" frameborder="0"></iframe>
  5. </div>
  6. </template>
  7. <script>
  8. import Cookies from 'js-cookie'
  9. export default {
  10. data() {
  11. return {
  12. title: '详情',
  13. url: '',
  14. token: Cookies.get('congress')
  15. }
  16. },
  17. onLoad(options) {
  18. this.title = options.title
  19. this.url = `${window._CONFIG.APP_READY}?token=${this.token}#/newbi/fullscreen/${options.id}`
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>