软测宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
keysass_app/pages/index/customerservice.vue

28 lines
367 B

7 months ago
<template>
<view>
<web-view :src="externalLink" />
</view>
</template>
<script>
export default {
data() {
return {
externalLink:''
}
},
onLoad(options) {
// 在页面加载时获取外部链接地址
console.log('url---',options)
this.externalLink = options.url || '';
},
methods: {
}
}
</script>
<style>
</style>