202 :'kefu' 4

206:’kefuPhone‘ 链接
This commit is contained in:
wwz
2025-01-14 13:26:46 +08:00
parent 08a4983e92
commit 93bf0f35ff
3 changed files with 32 additions and 4 deletions

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

@@ -0,0 +1,18 @@
<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>