app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "pages": [
  3. "pages/gallery/index",
  4. "pages/statistics/index",
  5. "pages/news/index",
  6. "pages/my/index"
  7. ],
  8. "subPackages": [
  9. {
  10. "root": "pages/mall",
  11. "pages": [
  12. "mallRecharge/index"
  13. ]
  14. }
  15. ],
  16. "window": {
  17. "navigationBarTextStyle": "black",
  18. "navigationBarTitleText": "uni-app",
  19. "navigationBarBackgroundColor": "#F8F8F8",
  20. "backgroundColor": "#F8F8F8"
  21. },
  22. "tabBar": {
  23. "color": "#7A7E83",
  24. "selectedColor": "#3cc51f",
  25. "borderStyle": "black",
  26. "backgroundColor": "#ffffff",
  27. "list": [
  28. {
  29. "pagePath": "pages/gallery/index",
  30. "iconPath": "",
  31. "selectedIconPath": "",
  32. "text": "工作台"
  33. },
  34. {
  35. "pagePath": "pages/statistics/index",
  36. "iconPath": "",
  37. "selectedIconPath": "",
  38. "text": "统计"
  39. },
  40. {
  41. "pagePath": "pages/news/index",
  42. "iconPath": "",
  43. "selectedIconPath": "",
  44. "text": "消息"
  45. },
  46. {
  47. "pagePath": "pages/my/index",
  48. "iconPath": "",
  49. "selectedIconPath": "",
  50. "text": "我的"
  51. }
  52. ]
  53. },
  54. "usingComponents": {}
  55. }