pages.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. {
  14. "navigationBarTitleText": "登录都能运",
  15. "enablePullDownRefresh": false
  16. }
  17. },
  18. {
  19. "path" : "pages/index/tabbar",
  20. "style" :
  21. {
  22. "navigationBarTitleText": "工作台",
  23. "enablePullDownRefresh": true
  24. }
  25. },
  26. {
  27. "path" : "pages/feedback/scanOrderCode",
  28. "style" :
  29. {
  30. "navigationBarTitleText": "连续扫码装车",
  31. "enablePullDownRefresh": false
  32. }
  33. },
  34. {
  35. "path" : "pages/feedback/print",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "支线交接",
  39. "enablePullDownRefresh": false
  40. }
  41. },
  42. {
  43. "path": "pages/index/index",
  44. "style": {
  45. "navigationBarTitleText": "都能运"
  46. }
  47. }
  48. ],
  49. "globalStyle": {
  50. "navigationBarTextStyle": "black",
  51. "navigationBarTitleText": "uni-app",
  52. "navigationBarBackgroundColor": "#F8F8F8",
  53. "backgroundColor": "#F8F8F8"
  54. },
  55. "uniIdRouter": {},
  56. //底部导航
  57. "tabBar":{
  58. }
  59. }