pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. }, {
  9. "path": "pages/my/index",
  10. "style": {
  11. "navigationBarTitleText": "我的"
  12. }
  13. }, {
  14. "path": "pages/login/index",
  15. "style": {
  16. "navigationBarTitleText": "登录",
  17. "navigationStyle": "custom"
  18. }
  19. }, {
  20. "path": "pages/login/serverSetting",
  21. "style": {
  22. "navigationBarTitleText": "服务器设置"
  23. }
  24. },
  25. {
  26. "path" : "pages/loborQuota/index",
  27. "style" :
  28. {
  29. "navigationBarTitleText" : "人工定额管理"
  30. }
  31. },
  32. {
  33. "path" : "pages/process/index",
  34. "style" :
  35. {
  36. "navigationBarTitleText" : "工序档案"
  37. }
  38. },
  39. {
  40. "path" : "pages/process/insert",
  41. "style" :
  42. {
  43. "navigationBarTitleText" : "新增工序档案"
  44. }
  45. }
  46. ],
  47. "globalStyle": {
  48. "navigationBarTextStyle": "black",
  49. "navigationBarTitleText": "uni-app",
  50. "navigationBarBackgroundColor": "#F8F8F8",
  51. "backgroundColor": "#F8F8F8"
  52. },
  53. "uniIdRouter": {},
  54. "tabBar": {
  55. "color": "#666666",
  56. "selectedColor": "#2185d0",
  57. "list": [
  58. {
  59. "pagePath": "pages/home/index",
  60. "text": "首页"
  61. },
  62. {
  63. "pagePath": "pages/my/index",
  64. "text": "我的"
  65. }
  66. ]
  67. }
  68. }