mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-10 00:02:41 +08:00
19 lines
243 B
Vue
19 lines
243 B
Vue
![]() |
<template>
|
||
|
<web-view :src="fileUrl"></web-view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {
|
||
|
getDownloadUrl
|
||
|
} from '@/api/common'
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
fileUrl: ''
|
||
|
}
|
||
|
},
|
||
|
onLoad(e) {
|
||
|
this.fileUrl = e.data
|
||
|
}
|
||
|
}
|
||
|
</script>
|