kaiguan-zfb/page_fenbao/webview.vue

38 lines
663 B
Vue
Raw Normal View History

2024-06-05 18:08:20 +08:00
<template>
<view class="">
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
2024-07-17 17:59:51 +08:00
// 分享到好友(会话)
onShareAppMessage: function () {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function () {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
2024-06-05 18:08:20 +08:00
onLoad(item) {
this.url = decodeURIComponent(item.url)
console.log(this.url)
}
}
</script>
<style lang="scss">
</style>