app.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. "mallSuccess/index"
  14. ]
  15. },
  16. {
  17. "root": "pages/login",
  18. "pages": [
  19. "index"
  20. ]
  21. },
  22. {
  23. "root": "pages/system",
  24. "pages": [
  25. "index"
  26. ]
  27. },
  28. {
  29. "root": "pages/accountRecharge",
  30. "pages": [
  31. "index"
  32. ]
  33. }
  34. ],
  35. "window": {
  36. "navigationBarTextStyle": "black",
  37. "navigationBarTitleText": "uni-app",
  38. "navigationBarBackgroundColor": "#F8F8F8",
  39. "backgroundColor": "#F8F8F8"
  40. },
  41. "tabBar": {
  42. "color": "#86899B",
  43. "selectedColor": "#FB692A",
  44. "borderStyle": "black",
  45. "backgroundColor": "#ffffff",
  46. "list": [
  47. {
  48. "pagePath": "pages/gallery/index",
  49. "iconPath": "/static/image/ic_home.png",
  50. "selectedIconPath": "/static/image/ic_home_selected.png",
  51. "text": "工作台"
  52. },
  53. {
  54. "pagePath": "pages/statistics/index",
  55. "iconPath": "/static/image/ic_dingdan.png",
  56. "selectedIconPath": "/static/image/ic_dingdan_selected.png",
  57. "text": "统计"
  58. },
  59. {
  60. "pagePath": "pages/news/index",
  61. "iconPath": "/static/image/ic_product.png",
  62. "selectedIconPath": "/static/image/ic_product_selected.png",
  63. "text": "消息"
  64. },
  65. {
  66. "pagePath": "pages/my/index",
  67. "iconPath": "/static/image/ic_zhidan.png",
  68. "selectedIconPath": "/static/image/ic_zhidan_selected.png",
  69. "text": "我的"
  70. }
  71. ]
  72. },
  73. "usingComponents": {}
  74. }