feat(miniapp): scaffold WeChat mini program MVP

This commit is contained in:
john
2026-07-11 08:46:08 +08:00
parent 32fb2cdeaf
commit 9e5a59b7d9
29 changed files with 948 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
Page({
data: {
url: ''
},
onLoad(query) {
this.setData({ url: decodeURIComponent(query.url || '') });
}
});
+3
View File
@@ -0,0 +1,3 @@
{
"navigationBarTitleText": "页面预览"
}
+1
View File
@@ -0,0 +1 @@
<web-view src="{{url}}" />