app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "pages": [
  3. "pages/splash/splash",
  4. "pages/login/login",
  5. "pages/index/index",
  6. "pages/customer/list",
  7. "pages/message/list",
  8. "pages/stats/index",
  9. "pages/mine/index",
  10. "pages/test/debug"
  11. ],
  12. "window": {
  13. "navigationBarTextStyle": "black",
  14. "navigationBarTitleText": "uni-app",
  15. "navigationBarBackgroundColor": "#F8F8F8",
  16. "backgroundColor": "#F8F8F8"
  17. },
  18. "permission": {},
  19. "tabBar": {
  20. "color": "#999999",
  21. "selectedColor": "#667eea",
  22. "backgroundColor": "#ffffff",
  23. "borderStyle": "black",
  24. "list": [
  25. {
  26. "pagePath": "pages/index/index",
  27. "text": "首页",
  28. "iconPath": "static/tabbar-home.png",
  29. "selectedIconPath": "static/tabbar-home-active.png"
  30. },
  31. {
  32. "pagePath": "pages/customer/list",
  33. "text": "客户",
  34. "iconPath": "static/tabbar-customer.png",
  35. "selectedIconPath": "static/tabbar-customer-active.png"
  36. },
  37. {
  38. "pagePath": "pages/message/list",
  39. "text": "消息",
  40. "iconPath": "static/tabbar-message.png",
  41. "selectedIconPath": "static/tabbar-message-active.png"
  42. },
  43. {
  44. "pagePath": "pages/stats/index",
  45. "text": "统计",
  46. "iconPath": "static/tabbar-stats.png",
  47. "selectedIconPath": "static/tabbar-stats-active.png"
  48. },
  49. {
  50. "pagePath": "pages/mine/index",
  51. "text": "我的",
  52. "iconPath": "static/tabbar-mine.png",
  53. "selectedIconPath": "static/tabbar-mine-active.png"
  54. }
  55. ]
  56. },
  57. "usingComponents": {}
  58. }