first commit

This commit is contained in:
lingxiao865
2025-09-18 12:39:54 +08:00
parent b2e8461792
commit 6c6fe3d0d6
1898 changed files with 30918 additions and 0 deletions

52
app.json Normal file
View File

@@ -0,0 +1,52 @@
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/cart/index",
"pages/usercenter/index",
"pages/category/index",
"pages/appointment/index"
],
"window": {
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"backgroundColor": "#f8f8f8",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"custom": true,
"color": "#666666",
"selectedColor": "#FF5F15",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/category/index",
"text": "分类"
},
{
"pagePath": "pages/appointment/index",
"text": "预约"
},
{
"pagePath": "pages/usercenter/index",
"text": "我的"
}
]
},
"style": "v2",
"useExtendedLib": {
"weui": true
},
"usingComponents": {
"t-tab-bar": "tdesign-miniprogram/tab-bar/tab-bar",
"t-tab-bar-item": "tdesign-miniprogram/tab-bar-item/tab-bar-item"
},
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents"
}