39 lines
625 B
39 lines
625 B
<template> |
|
<div class="wrap"> |
|
<iframe class="fileIframe" id="fileIframe" :src="src" frameborder="0"></iframe> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data () { |
|
return { |
|
src: '' |
|
} |
|
}, |
|
watch: { |
|
'$route.query': { |
|
handler () { |
|
const { src } = this.$route.query |
|
this.src = 'https://view.officeapps.live.com/op/view.aspx?src=' + src |
|
}, |
|
deep: true, |
|
immediate: true |
|
} |
|
}, |
|
mounted () { |
|
|
|
}, |
|
methods: { |
|
|
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
iframe { |
|
width: 100vw; |
|
height: calc(100vh + 160px) !important; |
|
margin-top: -160px; |
|
} |
|
</style> |