pages.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. "path": "pages/equipment/sterilization",
  60. "style": {
  61. "navigationBarTitleText": "注塑机",
  62. "navigationStyle":"custom"
  63. }
  64. }
  65. ],
  66. "tabBar": {
  67. "color": "#333333",
  68. "selectedColor": "#3370FF",
  69. "backgroundColor": "#fff",
  70. "borderStyle": "white",
  71. "list": [
  72. // {
  73. // "pagePath": "pages/home",
  74. // "text": "首页",
  75. // "iconPath": "static/btn_kanban_gray.png",
  76. // "selectedIconPath": "static/btn_kanban_blue.png"
  77. // },
  78. // {
  79. // "pagePath": "pages/production/production",
  80. // "text": "生产",
  81. // "iconPath": "static/btn_shengc_gray.png",
  82. // "selectedIconPath": "static/btn_shengc_blue.png"
  83. // },
  84. {
  85. "pagePath": "pages/equipment/equipment",
  86. "text": "设备",
  87. "iconPath": "static/btn_shebei_gray.png",
  88. "selectedIconPath": "static/btn_shebei_blue.png"
  89. },
  90. {
  91. "pagePath": "pages/user/user",
  92. "text": "我的",
  93. "iconPath": "static/btn_mine_gray.png",
  94. "selectedIconPath": "static/btn_mine_blue.png"
  95. }
  96. ]
  97. },
  98. "globalStyle": {
  99. "navigationBarTextStyle": "black",
  100. "navigationBarTitleText": "uni-app",
  101. "navigationBarBackgroundColor": "#F8F8F8",
  102. "backgroundColor": "#F8F8F8"
  103. }
  104. }