Initial commit

Made-with: Cursor
This commit is contained in:
Daniel
2026-02-28 18:39:00 +08:00
commit a94bd44c3a
49 changed files with 917 additions and 0 deletions

27
srde/miniprogram/app.json Normal file
View File

@@ -0,0 +1,27 @@
{
"pages": [
"pages/dashboard/dashboard",
"pages/create/create",
"pages/trade-detail/trade-detail",
"pages/review/review",
"pages/statistics/statistics",
"pages/profile/profile"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#2a2a2a",
"navigationBarTitleText": "SRDE 风控",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#999",
"selectedColor": "#5a9",
"backgroundColor": "#2a2a2a",
"list": [
{ "pagePath": "pages/dashboard/dashboard", "text": "首页" },
{ "pagePath": "pages/create/create", "text": "创建" },
{ "pagePath": "pages/statistics/statistics", "text": "统计" },
{ "pagePath": "pages/profile/profile", "text": "我的" }
]
}
}