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.

34 lines
624 B

<template>
<view>
<web-view :src="link"></web-view>
</view>
</template>
<script>
export default{
data(){
return{
link:''
}
},
onLoad(options) {
// http://szsatbc2024.115.langye.net
if(options.type==1){
// 关于我们
this.link = 'https://szsatbc2024.115.langye.net/about/aboutinfo/?from=wx'
}else if(options.type==2){
// 资讯
this.link = `https://szsatbc2024.115.langye.net/news/?from=wx`
}else if(options.type==3){
// 资讯详情
this.link = `https://szsatbc2024.115.langye.net${options.url}?from=wx`
}
},
methods:{
}
}
</script>
<style>
</style>