Initial commit

This commit is contained in:
2026-06-05 17:46:51 +08:00
commit c04c890186
96 changed files with 6477 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
Page({
data: { url: '' },
onLoad(query: { url?: string }) {
const url = decodeURIComponent(query.url || '')
this.setData({ url })
wx.setNavigationBarTitle({ title: '汪圈' })
},
onMessage() {},
})