pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/my/my",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/home/home",
  17. "style": {
  18. "navigationStyle": "custom"
  19. }
  20. },
  21. {
  22. "path": "pages/order/order",
  23. "style": {
  24. "navigationBarTitleText": "我的订单",
  25. "enablePullDownRefresh": true
  26. }
  27. }
  28. ],
  29. "tabBar": {
  30. "selectedColor": "#a09cc4",
  31. "list": [{
  32. "pagePath": "pages/home/home",
  33. "text": "首页",
  34. "iconPath": "static/home.png",
  35. "selectedIconPath": "static/home_selected.png"
  36. },
  37. {
  38. "pagePath": "pages/order/order",
  39. "text": "订单",
  40. "iconPath": "static/order.png",
  41. "selectedIconPath": "static/order_selected.png"
  42. },
  43. {
  44. "pagePath": "pages/my/my",
  45. "text": "我的",
  46. "iconPath": "static/my.png",
  47. "selectedIconPath": "static/my_selected.png"
  48. }
  49. ]
  50. },
  51. "subPackages": [{
  52. "root": "subpkg",
  53. "pages": [{
  54. "path": "protocol/protocol",
  55. "style": {
  56. "navigationBarTitleText": "使用须知"
  57. }
  58. },
  59. {
  60. "path": "extend/extend",
  61. "style": {
  62. "navigationBarTitleText": "我的订单"
  63. }
  64. },
  65. {
  66. "path": "myAccount/myAccount",
  67. "style": {
  68. "navigationBarTitleText": "我的账户"
  69. }
  70. },
  71. {
  72. "path": "updateUserInfo/updateUserInfo",
  73. "style": {
  74. "navigationBarTitleText": "修改个人信息"
  75. }
  76. }
  77. ]
  78. }],
  79. "globalStyle": {
  80. "navigationBarTextStyle": "white",
  81. "navigationBarTitleText": "uni-app",
  82. "navigationBarBackgroundColor": "#a09cc4"
  83. },
  84. "uniIdRouter": {}
  85. }