This commit is contained in:
lik
2026-05-30 21:09:24 +08:00
parent 212c94224b
commit 010cf160a0
1075 changed files with 67487 additions and 1 deletions

62
app.json Normal file
View File

@@ -0,0 +1,62 @@
{
"pages": [
"pages/home/index",
"pages/ai/index",
"pages/set/index",
"pages/order/index",
"pages/customer/index"
],
"usingComponents": {
"t-toast": "tdesign-miniprogram/toast/toast"
},
"subpackages": [],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#1a1f3c",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "white",
"backgroundColor": "#0f1535"
},
"tabBar": {
"color": "#8a8a8a",
"selectedColor": "#1296db",
"backgroundColor": "#0f1535",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/index",
"text": "首页",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-blue.png"
},
{
"pagePath": "pages/order/index",
"text": "订单",
"iconPath": "images/order.png",
"selectedIconPath": "images/order-blue.png"
},
{
"pagePath": "pages/customer/index",
"text": "客户",
"iconPath": "images/customer.png",
"selectedIconPath": "images/customer-blue.png"
},
{
"pagePath": "pages/ai/index",
"text": "消息",
"iconPath": "images/chat.png",
"selectedIconPath": "images/chat-blue.png"
},
{
"pagePath": "pages/set/index",
"text": "设置",
"iconPath": "images/set.png",
"selectedIconPath": "images/set-blue.png"
}
]
},
"resolveAlias": {
"~/*": "/*"
},
"sitemapLocation": "sitemap.json"
}