jsy-app/pages/common/webview/index.vue
2025-01-06 16:56:41 +08:00

35 lines
600 B
Vue

<template>
<custom-nav-bar :left="true" :title="params.title" />
<view v-if="params.url">
<web-view style="margin-top: 45px;" :webview-styles="webviewStyles" :src="`${params.url}`"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
params: {},
webviewStyles: {
progress: {
color: "#FF3333"
}
}
}
},
props: {
src: {
type: [String],
default: null
}
},
onLoad(event) {
this.params = event
// if (event.title) {
// uni.setNavigationBarTitle({
// title: event.title
// })
// }
}
}
</script>