12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "pages": [
- "pages/index/index",
- "pages/orders/orders",
- "pages/me/me",
- "pages/login/login",
- "pages/register/register",
- "pages/preOrder/preOrder"
- ],
- "subPackages": [],
- "window": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "校园综合服务平台",
- "navigationBarBackgroundColor": "#006eff",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "backgroundColor": "#fff",
- "selectedColor": "#006eff",
- "color": "#666",
- "list": [
- {
- "iconPath": "/static/icons/home.png",
- "selectedIconPath": "static/icons/home-active.png",
- "text": "首页",
- "pagePath": "pages/index/index"
- },
- {
- "iconPath": "/static/icons/orders.png",
- "selectedIconPath": "static/icons/orders-active.png",
- "text": "订单",
- "pagePath": "pages/orders/orders"
- },
- {
- "iconPath": "/static/icons/me.png",
- "selectedIconPath": "static/icons/me-active.png",
- "text": "我的",
- "pagePath": "pages/me/me"
- }
- ]
- },
- "usingComponents": {}
- }
|