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.
29 lines
455 B
29 lines
455 B
2 years ago
|
<template>
|
||
|
<web-view :src="daolanurl"></web-view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
daolanurl:"",
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
},
|
||
|
onLoad(option) {
|
||
|
this.daolanurl = "https://ceo.unitracing.com/timeline/37";
|
||
|
// this.daolanurl = "http://weblive.labpano.com/?streamid=2008065f2b6c9d65148171776990";
|
||
|
},
|
||
|
onReady() {
|
||
|
setTimeout(function() {
|
||
|
uni.hideLoading();
|
||
|
}, 500);
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|