Files
jnpf_app/pages/workFlow/webView/index.vue

19 lines
243 B
Vue
Raw Permalink Normal View History

2026-01-04 11:09:06 +08:00
<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>