pages.json 961 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "easycom": {
  3. // npm安装的方式不需要前面的"@/",下载安装的方式需要"@/"
  4. // npm安装方式
  5. // "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  6. // 下载安装方式
  7. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  8. },
  9. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  10. {
  11. "path": "pages/login/login",
  12. "style": {
  13. "app-plus":{
  14. "titleNView": false
  15. }
  16. }
  17. }
  18. ,{
  19. "path" : "pages/index/index",
  20. "style" :
  21. {
  22. "app-plus":{
  23. "titleNView": false
  24. }
  25. }
  26. }
  27. ],
  28. "globalStyle": {
  29. "navigationBarTextStyle": "black",
  30. "navigationBarTitleText": "uni-app",
  31. "navigationBarBackgroundColor": "#F8F8F8",
  32. "backgroundColor": "#F8F8F8",
  33. "rpxCalcMaxDeviceWidth": 1366
  34. }
  35. }