pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/mobile/index",
  11. "style": {
  12. "navigationStyle": "custom",
  13. "enablePullDownRefresh": true
  14. }
  15. },
  16. {
  17. "path": "pages/pc/index",
  18. "style": {
  19. "navigationStyle": "custom"
  20. }
  21. }, {
  22. "path": "pages/mobile/topTab",
  23. "style": {
  24. "navigationStyle": "custom",
  25. "enablePullDownRefresh": true
  26. }
  27. }, {
  28. "path": "pages/mobile/search",
  29. "style": {
  30. "navigationStyle": "custom",
  31. "enablePullDownRefresh": false
  32. }
  33. }, {
  34. "path": "pages/mobile/list",
  35. "style": {
  36. "navigationStyle": "custom",
  37. "enablePullDownRefresh": true
  38. }
  39. }
  40. // {
  41. // "path" : "pages/mobile/demo",
  42. // "style" :
  43. // {
  44. // "navigationBarTitleText": "demo",
  45. // "enablePullDownRefresh": false
  46. // }
  47. // },
  48. ,{
  49. "path" : "pages/mobile/detail",
  50. "style" :
  51. {
  52. "navigationStyle": "custom"
  53. }
  54. },
  55. {
  56. "path": "pages/pc/list",
  57. "style": {
  58. "navigationStyle": "custom"
  59. }
  60. },
  61. {
  62. "path": "pages/pc/groupingList",
  63. "style": {
  64. "navigationStyle": "custom"
  65. }
  66. },
  67. {
  68. "path": "pages/pc/detail",
  69. "style": {
  70. "navigationStyle": "custom"
  71. }
  72. }
  73. ],
  74. "globalStyle": {
  75. "navigationBarTextStyle": "black",
  76. "navigationBarTitleText": "门店学院",
  77. "navigationBarBackgroundColor": "#F8F8F8",
  78. "backgroundColor": "#F8F8F8"
  79. }
  80. }