app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/orders/orders",
  5. "pages/me/me",
  6. "pages/login/login",
  7. "pages/register/register",
  8. "pages/preOrder/preOrder"
  9. ],
  10. "subPackages": [],
  11. "window": {
  12. "navigationBarTextStyle": "white",
  13. "navigationBarTitleText": "校园综合服务平台",
  14. "navigationBarBackgroundColor": "#006eff",
  15. "backgroundColor": "#F8F8F8"
  16. },
  17. "tabBar": {
  18. "backgroundColor": "#fff",
  19. "selectedColor": "#006eff",
  20. "color": "#666",
  21. "list": [
  22. {
  23. "iconPath": "/static/icons/home.png",
  24. "selectedIconPath": "static/icons/home-active.png",
  25. "text": "首页",
  26. "pagePath": "pages/index/index"
  27. },
  28. {
  29. "iconPath": "/static/icons/orders.png",
  30. "selectedIconPath": "static/icons/orders-active.png",
  31. "text": "订单",
  32. "pagePath": "pages/orders/orders"
  33. },
  34. {
  35. "iconPath": "/static/icons/me.png",
  36. "selectedIconPath": "static/icons/me-active.png",
  37. "text": "我的",
  38. "pagePath": "pages/me/me"
  39. }
  40. ]
  41. },
  42. "usingComponents": {}
  43. }