app.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/statDetail/statDetail",
  5. "pages/stat/stat",
  6. "pages/authentication/authentication",
  7. "pages/index/index",
  8. "pages/my/my",
  9. "pages/ruleSet/ruleSet",
  10. "pages/powerSet/powerSet",
  11. "pages/group/group",
  12. "pages/cardRecord/cardRecord",
  13. "pages/addRules/addRules",
  14. "pages/ruleName/ruleName",
  15. "pages/editRules/editRules",
  16. "pages/location/location"
  17. ],
  18. "subPackages": [],
  19. "window": {
  20. "navigationBarTextStyle": "black",
  21. "navigationBarTitleText": "uni-app",
  22. "navigationBarBackgroundColor": "#F8F8F8",
  23. "backgroundColor": "#F8F8F8"
  24. },
  25. "tabBar": {
  26. "color": "#000",
  27. "selectedColor": "#0082FC",
  28. "backgroundColor": "#ffffff",
  29. "list": [
  30. {
  31. "pagePath": "pages/home/home",
  32. "iconPath": "static/home.png",
  33. "selectedIconPath": "static/home_active.png",
  34. "text": "首页"
  35. },
  36. {
  37. "pagePath": "pages/stat/stat",
  38. "iconPath": "static/stat.png",
  39. "selectedIconPath": "static/stat_active.png",
  40. "text": "统计"
  41. },
  42. {
  43. "pagePath": "pages/my/my",
  44. "iconPath": "static/my.png",
  45. "selectedIconPath": "static/my_active.png",
  46. "text": "我的"
  47. }
  48. ]
  49. },
  50. "permission": {},
  51. "usingComponents": {}
  52. }