23 lines
452 B
Vue
23 lines
452 B
Vue
<template>
|
|
<view class="pages">
|
|
<web-view ref="webview" :src="https"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
https: "",
|
|
};
|
|
},
|
|
onLoad(option) {
|
|
this.id = decodeURIComponent(option.id);
|
|
// this.https = "http://192.168.2.129:4500/guide?id=" + this.id;
|
|
this.https = "https://tech-ape.top/guide?id=" + this.id;
|
|
console.log("id:" + option.id);
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|