pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. // uni-ui 规则如下配置
  6. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
  7. }
  8. },
  9. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  10. {
  11. "path": "pages/user/login",
  12. "style": {
  13. "navigationBarTitleText": "登录",
  14. "navigationStyle":"custom"
  15. }
  16. },
  17. {
  18. "path": "pages/home",
  19. "style": {
  20. "navigationBarTitleText": "首页",
  21. "navigationStyle":"custom"
  22. }
  23. },
  24. {
  25. "path": "pages/production/production",
  26. "style": {
  27. "navigationBarTitleText": "首页"
  28. }
  29. },
  30. {
  31. "path": "pages/user/user",
  32. "style": {
  33. "navigationBarTitleText": "首页",
  34. "navigationStyle":"custom"
  35. }
  36. },
  37. {
  38. "path": "pages/equipment/equipment",
  39. "style": {
  40. "navigationBarTitleText": "设备",
  41. "navigationStyle":"custom"
  42. }
  43. },
  44. {
  45. "path": "pages/equipment/assemblyMachine",
  46. "style": {
  47. "navigationBarTitleText": "组装机",
  48. "navigationStyle":"custom"
  49. }
  50. },
  51. {
  52. "path": "pages/equipment/injectionMolding",
  53. "style": {
  54. "navigationBarTitleText": "注塑机",
  55. "navigationStyle":"custom"
  56. }
  57. }
  58. ],
  59. "tabBar": {
  60. "color": "#333333",
  61. "selectedColor": "#3370FF",
  62. "backgroundColor": "#fff",
  63. "borderStyle": "white",
  64. "list": [{
  65. "pagePath": "pages/home",
  66. "text": "首页",
  67. "iconPath": "static/btn_kanban_gray.png",
  68. "selectedIconPath": "static/btn_kanban_blue.png"
  69. },
  70. {
  71. "pagePath": "pages/production/production",
  72. "text": "生产",
  73. "iconPath": "static/btn_shengc_gray.png",
  74. "selectedIconPath": "static/btn_shengc_blue.png"
  75. },
  76. {
  77. "pagePath": "pages/equipment/equipment",
  78. "text": "设备",
  79. "iconPath": "static/btn_shebei_gray.png",
  80. "selectedIconPath": "static/btn_shebei_blue.png"
  81. },
  82. {
  83. "pagePath": "pages/user/user",
  84. "text": "我的",
  85. "iconPath": "static/btn_mine_gray.png",
  86. "selectedIconPath": "static/btn_mine_blue.png"
  87. }
  88. ]
  89. },
  90. "globalStyle": {
  91. "navigationBarTextStyle": "black",
  92. "navigationBarTitleText": "uni-app",
  93. "navigationBarBackgroundColor": "#F8F8F8",
  94. "backgroundColor": "#F8F8F8"
  95. }
  96. }