pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "navigationBarTextStyle": "white",
  8. "navigationStyle":"custom"
  9. }
  10. },
  11. {
  12. "path": "pages/index/card",
  13. "style": {
  14. "navigationBarTitleText": "我的卡片临时",
  15. "navigationBarTextStyle": "white",
  16. "navigationStyle":"custom"
  17. }
  18. },
  19. {
  20. "path": "pages/mine/mine",
  21. "style": {
  22. "navigationBarTitleText": "我的",
  23. "navigationBarTextStyle": "white",
  24. "navigationStyle":"custom"
  25. }
  26. },
  27. {
  28. "path": "pages/login/updatpaw",
  29. "style": {
  30. "navigationStyle":"custom"
  31. }
  32. },
  33. {
  34. "path": "pages/login/login",
  35. "style": {
  36. "navigationBarTitleText": "登录",
  37. "navigationBarTextStyle": "black",
  38. "navigationStyle":"custom"
  39. }
  40. },
  41. {
  42. "path": "pages/code/code",
  43. "style": {
  44. "navigationBarTitleText": "二维码出示",
  45. "navigationStyle":"custom"
  46. // "navigationBarBackgroundColor": "#009FE8",
  47. // "navigationBarTextStyle": "white"
  48. }
  49. }
  50. ],
  51. "subPackages": [
  52. {
  53. "root": "mine",
  54. "pages": [
  55. {
  56. "path": "pages/card/card",
  57. "style": {
  58. "navigationBarTitleText": "我的卡片",
  59. "navigationBarTextStyle": "white",
  60. "navigationStyle":"custom"
  61. }
  62. }
  63. ]
  64. }
  65. ],
  66. "tabBar":{
  67. "color": "#AAAAAA",
  68. "selectedColor": "#343434",
  69. "borderStyle": "black",
  70. "backgroundColor": "#ffffff",
  71. "list": [{
  72. "pagePath": "pages/index/index"
  73. },
  74. {
  75. "pagePath": "pages/mine/mine"
  76. }]
  77. },
  78. "preloadRule":{
  79. "pages/index/index":{
  80. "network": "all",
  81. "packages": ["mine"]
  82. }
  83. },
  84. "globalStyle": {
  85. "navigationBarTextStyle": "black",
  86. "navigationBarTitleText": "uni-app",
  87. "navigationBarBackgroundColor": "#F8F8F8",
  88. "backgroundColor": "#F8F8F8"
  89. }
  90. }