初始化项目

This commit is contained in:
2025-11-26 17:42:45 +08:00
commit 65ecc68767
2513 changed files with 1313954 additions and 0 deletions

60
Web/app.json Normal file
View File

@@ -0,0 +1,60 @@
{
"pages": [
"pages/login/login",
"pages/autho/index",
"pages/index/index",
"pages/mycenter/index",
"pages/ColorBoxBarCode/ColorBoxBarCode",
"pages/OUtBoxBarCode/OUtBoxBarCode"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "inhaos",
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
},
"usingComponents": {
"cu-custom": "/colorui/components/cu-custom",
"van-dropdown-menu": "@vant/weapp/dropdown-menu/index",
"van-dropdown-item": "@vant/weapp/dropdown-item/index",
"van-button": "@vant/weapp/button/index",
"van-action-sheet": "@vant/weapp/action-sheet/index",
"van-popup": "@vant/weapp/popup/index"
},
"useExtendedLib": {
"weui": true
},
"lazyCodeLoading": "requiredComponents",
"sitemapLocation": "sitemap.json",
"tabBar": {
"selectedColor": "#2bab99",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "/icon/home_.png",
"selectedIconPath": "/icon/home.png"
},
{
"pagePath": "pages/ColorBoxBarCode/ColorBoxBarCode",
"text": "日志",
"iconPath": "/icon/log_.png",
"selectedIconPath": "/icon/log.png"
},
{
"pagePath": "pages/mycenter/index",
"text": "我的",
"iconPath": "/icon/usercenter_.png",
"selectedIconPath": "/icon/usercenter.png"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于记录用户信息~"
}
}
}