feat: move project

This commit is contained in:
ckaaaa 2025-09-16 13:41:49 +08:00
commit 4a940f28ba
97 changed files with 5047 additions and 0 deletions

13
pages/webview/webview.js Normal file
View file

@ -0,0 +1,13 @@
Page({
data: {
url: '',
},
onLoad(options) {
let { url } = options;
console.log('url',url);
const user_id = wx.getStorageSync('user_id');
url = url.replace('${user_id}', user_id);
this.setData({ url: decodeURIComponent(url) });
},
})