app.json 1.0 KB

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