pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "globalStyle": {
  57. "navigationBarTextStyle": "black",
  58. "navigationBarTitleText": "门店学院",
  59. "navigationBarBackgroundColor": "#F8F8F8",
  60. "backgroundColor": "#F8F8F8"
  61. }
  62. }