pages.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. "path" : "pages/index/myTruckList",
  50. "style" :
  51. {
  52. "navigationBarTitleText": "我的车辆",
  53. "enablePullDownRefresh": true
  54. }
  55. },
  56. {
  57. "path" : "pages/index/addTruck",
  58. "style" :
  59. {
  60. "navigationBarTitleText": "新增车辆",
  61. "enablePullDownRefresh": false
  62. }
  63. }
  64. ],
  65. "globalStyle": {
  66. "navigationBarTextStyle": "black",
  67. "navigationBarTitleText": "uni-app",
  68. "navigationBarBackgroundColor": "#F8F8F8",
  69. "backgroundColor": "#F8F8F8"
  70. },
  71. "uniIdRouter": {},
  72. //底部导航
  73. "tabBar":{
  74. }
  75. }