| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "pages": [
- "pages/splash/splash",
- "pages/login/login",
- "pages/index/index",
- "pages/customer/list",
- "pages/message/list",
- "pages/stats/index",
- "pages/mine/index",
- "pages/test/debug"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "permission": {},
- "tabBar": {
- "color": "#999999",
- "selectedColor": "#667eea",
- "backgroundColor": "#ffffff",
- "borderStyle": "black",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/tabbar-home.png",
- "selectedIconPath": "static/tabbar-home-active.png"
- },
- {
- "pagePath": "pages/customer/list",
- "text": "客户",
- "iconPath": "static/tabbar-customer.png",
- "selectedIconPath": "static/tabbar-customer-active.png"
- },
- {
- "pagePath": "pages/message/list",
- "text": "消息",
- "iconPath": "static/tabbar-message.png",
- "selectedIconPath": "static/tabbar-message-active.png"
- },
- {
- "pagePath": "pages/stats/index",
- "text": "统计",
- "iconPath": "static/tabbar-stats.png",
- "selectedIconPath": "static/tabbar-stats-active.png"
- },
- {
- "pagePath": "pages/mine/index",
- "text": "我的",
- "iconPath": "static/tabbar-mine.png",
- "selectedIconPath": "static/tabbar-mine-active.png"
- }
- ]
- },
- "usingComponents": {}
- }
|