pages.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. // 如果您是通过uni_modules形式引入uView,可以忽略此配置
  3. "easycom": {
  4. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/index/index",
  9. "style": {
  10. "navigationBarTitleText": "",
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/index/login",
  16. "style": {
  17. "navigationBarTitleText": "",
  18. "navigationStyle": "custom"
  19. }
  20. },
  21. {
  22. "path" : "pages/fill-in/index",
  23. "style" :
  24. {
  25. "navigationBarTitleText": "",
  26. "navigationStyle": "custom"
  27. }
  28. },
  29. {
  30. "path" : "pages/fill-in/safeThingsType",
  31. "style" :
  32. {
  33. "navigationBarTitleText": "",
  34. "navigationStyle": "custom"
  35. }
  36. },
  37. {
  38. "path" : "pages/fill-in/checkboxPage",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "",
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path" : "pages/fill-in/behaviorThingsPlaceVo",
  47. "style" :
  48. {
  49. "navigationBarTitleText": "",
  50. "navigationStyle": "custom"
  51. }
  52. },
  53. {
  54. "path" : "pages/fill-in/briefDetails",
  55. "style" :
  56. {
  57. "navigationBarTitleText": "",
  58. "navigationStyle": "custom"
  59. }
  60. },
  61. {
  62. "path" : "pages/my-fillin/index",
  63. "style" :
  64. {
  65. "navigationBarTitleText": "",
  66. "navigationStyle": "custom",
  67. "enablePullDownRefresh": true
  68. }
  69. },
  70. {
  71. "path" : "pages/my-fillin/detail",
  72. "style" :
  73. {
  74. "navigationBarTitleText": "",
  75. "navigationStyle": "custom"
  76. }
  77. }
  78. ],
  79. "globalStyle": {
  80. "navigationBarTextStyle": "black",
  81. "navigationBarTitleText": "uni-app",
  82. "navigationBarBackgroundColor": "#F8F8F8",
  83. "backgroundColor": "#F8F8F8"
  84. }
  85. }