You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<iframe :src="url" frameborder="0" width="100%"></iframe>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Setting from '@/setting'
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
url: ''
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
const cache = localStorage.getItem('reviewPath') // 理论考试平台每次跳转都会往localStorage存路径
|
|
|
|
let url = `${location.origin}/reviewCenter/`
|
|
|
|
if (Setting.isDev) url = `http://192.168.31.125:8099/`
|
|
|
|
if (cache) {
|
|
|
|
url += `#${cache}${cache.includes('?') ? `&` : '?'}token=${sessionStorage.getItem('token')}`
|
|
|
|
} else {
|
|
|
|
url += `#/myReview?token=${sessionStorage.getItem('token')}`
|
|
|
|
}
|
|
|
|
url += `&v=${Date.now()}`
|
|
|
|
localStorage.setItem('review_token', sessionStorage.getItem('token'))
|
|
|
|
this.url = url
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
iframe {
|
|
|
|
height: calc(100vh - 167px);
|
|
|
|
}
|
|
|
|
</style>
|