mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-09 07:42:43 +08:00
23 lines
356 B
Vue
23 lines
356 B
Vue
<template>
|
|
<view>
|
|
<web-view :src="url"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: ''
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
this.url = decodeURIComponent(option.url)
|
|
const title = option.fullName || ''
|
|
if (option.type == 5 || !title) return
|
|
uni.setNavigationBarTitle({
|
|
title
|
|
})
|
|
}
|
|
}
|
|
</script> |