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.
30 lines
536 B
30 lines
536 B
|
1 year ago
|
<template>
|
||
|
|
<view>
|
||
|
|
<web-view :src="link"></web-view>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default{
|
||
|
|
data(){
|
||
|
|
return{
|
||
|
|
link:''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
onLoad(options) {
|
||
|
|
if(options.type==1){
|
||
|
|
this.link = 'https://szsatbc2024.mc002.langye.net/about/aboutinfo/?from=wx'
|
||
|
|
}else if(options.type==2){
|
||
|
|
this.link = `https://szsatbc2024.mc002.langye.net/news/?from=wx`
|
||
|
|
}else if(options.type==3){
|
||
|
|
this.link = `https://szsatbc2024.mc002.langye.net${options.url}?from=wx`
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods:{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
</style>
|