pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/login/login",
  8. "style": {
  9. "navigationBarTitleText": "登录",
  10. "enablePullDownRefresh": false,
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/index/index",
  16. "style": {
  17. "navigationBarTitleText": "装箱方式选择"
  18. }
  19. },
  20. {
  21. "path": "pages/index/index",
  22. "style": {
  23. "navigationBarTitleText": "装箱类型选择"
  24. }
  25. },
  26. {
  27. "path": "pages/index/scan-box",
  28. "style": {
  29. "navigationBarTitleText": "扫描箱号条形码"
  30. }
  31. },
  32. {
  33. "path": "pages/index/scan-clothing",
  34. "style": {
  35. "navigationBarTitleText": "扫描成衣"
  36. }
  37. },
  38. {
  39. "path": "pages/index/scan-set",
  40. "style": {
  41. "navigationBarTitleText": "参数配置"
  42. }
  43. }
  44. ],
  45. "globalStyle": {
  46. "navigationBarTextStyle": "black",
  47. "navigationBarTitleText": "uni-app",
  48. "navigationBarBackgroundColor": "#F8F8F8",
  49. "backgroundColor": "#F8F8F8"
  50. },
  51. "uniIdRouter": {}
  52. }