pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "easycom": {
  3. "^u-(.*)": "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. }
  11. },
  12. {
  13. "path": "pages/index/index", // 首页
  14. "style": {
  15. "navigationBarTitleText": "首页",
  16. "enablePullDownRefresh": false
  17. }
  18. },
  19. {
  20. "path": "pages/login/userAuthYs",
  21. "style": {
  22. "navigationBarTitleText": "注意事项及服务协议"
  23. }
  24. },
  25. {
  26. "path": "pages/login/forget-pass",
  27. "style": {
  28. "navigationBarTitleText": "忘记密码"
  29. }
  30. },
  31. {
  32. "path": "pages/userCenter/index",
  33. "style": {
  34. "navigationBarTitleText": "个人中心",
  35. "navigationBarTextStyle": "white"
  36. }
  37. },
  38. {
  39. "path": "pages/userCenter/changePwd", // 我的>修改密码
  40. "style": {
  41. "navigationBarTitleText": "修改密码"
  42. }
  43. }
  44. ,{
  45. "path" : "pages/latePlay/chooseBulk",
  46. "style" :
  47. {
  48. "navigationBarTitleText": "选择货柜",
  49. "enablePullDownRefresh": false
  50. }
  51. }
  52. ,{
  53. "path" : "pages/latePlay/chooseProduct",
  54. "style" :
  55. {
  56. "navigationBarTitleText": "补打贴签",
  57. "enablePullDownRefresh": false
  58. }
  59. }
  60. ,{
  61. "path" : "pages/shuntBackManage/shuntBackList",
  62. "style" :
  63. {
  64. "navigationBarTitleText": "调回管理",
  65. "enablePullDownRefresh": false
  66. }
  67. }
  68. ,{
  69. "path" : "pages/shuntBackManage/cancellingStocks",
  70. "style" :
  71. {
  72. "navigationBarTitleText": "调回退货",
  73. "enablePullDownRefresh": false
  74. }
  75. }
  76. ],
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "uni-app",
  80. "navigationBarBackgroundColor": "#FFFFFF",
  81. "backgroundColor": "#f2f2f2",
  82. "app-plus": {
  83. // 将回弹属性关掉
  84. "bounce": "none",
  85. "scrollIndicator": "none"
  86. }
  87. },
  88. "tabBar": {
  89. "fontSize": "14px",
  90. "list": [
  91. {
  92. "pagePath": "pages/index/index",
  93. "text": "首页"
  94. },
  95. {
  96. "pagePath": "pages/userCenter/index",
  97. "text": "我的"
  98. }]
  99. }
  100. }