12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <div class="pageDetail">
- <yx-navbar :isBack="true" :title="title"></yx-navbar>
- <iframe class="iframe" id="iframe" :src="src" frameborder="0"></iframe>
- </div>
- </template>
- <script>
- import Cookies from 'js-cookie'
- export default {
- data() {
- return {
- title: '详情',
- src: window._CONFIG.APP_READY + '#/newbi/h5',
- id: ''
- }
- },
- onLoad(options) {
- this.title = options.title
- this.id = options.id
- },
- mounted() {
- let iframe = document.getElementById('iframe')
- console.log('mounted')
- iframe.onload = () => {
- console.log('onload')
- let token = Cookies.get('congress')
- iframe.contentWindow.postMessage({token: token, id: this.id}, '*')
- console.log('sent')
- }
- },
- }
- </script>
- <style>
- </style>
|