smartswrtch-app/page_fenbao/webview.vue
2024-07-17 17:59:51 +08:00

38 lines
663 B
Vue

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