pages.json 675 B

123456789101112131415161718192021222324252627
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^u-(.*)": "@/components/uview-ui/components/u-$1/u-$1.vue"
  6. }
  7. },
  8. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  9. {
  10. "path" : "pages/index/indexForm",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "首页",
  14. "enablePullDownRefresh": false
  15. }
  16. }
  17. ],
  18. "globalStyle": {
  19. "navigationBarTextStyle": "black",
  20. "navigationBarTitleText": "uni-app",
  21. "navigationBarBackgroundColor": "#F8F8F8",
  22. "backgroundColor": "#F8F8F8"
  23. }
  24. }