| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "pages": [
- "pages/index/index",
- "pages/catalog/catalog",
- "pages/user/index"
- ],
- "subPackages": [{
- "root": "packageLogin",
- "pages": [
- "login/login"
- ]
- },
- {
- "root": "packageGoods",
- "pages": [
- "detail/detail"
- ]
- },
- {
- "root": "packageUser",
- "pages": [
- "information/information",
- "nickNameModify/nickNameModify",
- "mobileModify/mobileModify",
- "collect/collect",
- "footprint/footprint"
- ]
- },
- {
- "root": "packagePoster",
- "pages": [
- "index"
- ]
- },
- {
- "root": "packagePosterImg",
- "pages": [
- "index"
- ]
- }
-
- ],
- "window": {
- "navigationBarBackgroundColor": "#fff",
- "navigationBarTextStyle": "black",
- "backgroundColor": "#F5F5F5",
- "backgroundTextStyle": "dark"
- },
- "tabBar": {
- "backgroundColor": "#fff",
- "borderStyle": "white",
- "selectedColor": "#D32D2F",
- "color": "#50555F",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/images/home.png",
- "selectedIconPath": "static/images/home@selected.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/catalog/catalog",
- "iconPath": "static/images/category.png",
- "selectedIconPath": "static/images/category@selected.png",
- "text": "分类"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/images/my.png",
- "selectedIconPath": "static/images/my@selected.png",
- "text": "我的"
- }
- ]
- },
- "networkTimeout": {
- "request": 10000,
- "connectSocket": 10000,
- "uploadFile": 10000,
- "downloadFile": 10000
- },
- "debug": false,
- "sitemapLocation": "sitemap.json",
- "requiredBackgroundModes": ["audio", "location"],
- "usingComponents": {
- "van-icon": "@vant/weapp/icon/index",
- "van-empty": "@vant/weapp/empty/index"
- }
- }
|