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.
26 lines
377 B
26 lines
377 B
7 months ago
|
<template>
|
||
|
<web-view :src="src"></web-view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import back from '@/components/html/back.vue';
|
||
|
var web = require('@/components/utils/request.js');
|
||
|
export default {
|
||
|
components: {
|
||
|
back
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
src:''
|
||
|
}
|
||
|
},
|
||
|
onLoad(options) {
|
||
|
this.src = uni.getStorageSync('linkUrl');
|
||
|
},
|
||
|
methods: {
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|