dyqc_hdapp/packageB/outWeb.vue
wangzimeng 234af32a1a 1、首页的肆野轮播图跳转外链
2、详情页面的报名信息的静态页面
2025-08-12 18:19:02 +08:00

25 lines
297 B
Vue

<template>
<web-view :src="url"></web-view>
</template>
<script>
export default {
components: {
//MySwiper,
},
data: {
url: ''
},
onLoad: function(options) {
this.setData({
url: decodeURIComponent(options.url)
})
},
methods: {
},
};
</script>
<style>
</style>