This commit is contained in:
wwz
2025-01-14 16:56:07 +08:00
parent a4c26b4801
commit 4c0766d92b
3 changed files with 33 additions and 5 deletions

17
pages/me/webview.vue Normal file
View File

@@ -0,0 +1,17 @@
<template>
<web-view :src="url"></web-view>
</template>
<script>
export default {
data() {
return {
url: 'https://chatbot.aliyuncs.com/intl/index.htm?from=pfW5XoA9gt&locale=zh-CN',
};
},
async onLoad(options) {
this.url = uni.getStorageSync('kefuPhone');
console.log(options)
// this.url = options.url
}
};
</script>