pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. "titleView":false,
  75. // 将回弹属性关掉
  76. "bounce":"none"
  77. }
  78. }
  79. ,{
  80. "path" : "pages/replenishmentManage/replenishmentList",
  81. "style" :
  82. {
  83. "navigationBarTitleText": "补货管理",
  84. "enablePullDownRefresh": false
  85. }
  86. }
  87. ,{
  88. "path" : "pages/common/printTag/printTag",
  89. "style" :
  90. {
  91. "navigationBarTitleText": "打印标签",
  92. "enablePullDownRefresh": false
  93. }
  94. }
  95. ],
  96. "globalStyle": {
  97. "navigationBarTextStyle": "black",
  98. "navigationBarTitleText": "iscm",
  99. "navigationBarBackgroundColor": "#FFFFFF",
  100. "backgroundColor": "#f2f2f2",
  101. "app-plus": {
  102. // 将回弹属性关掉
  103. "bounce": "none",
  104. "scrollIndicator": "none"
  105. }
  106. },
  107. "tabBar": {
  108. "fontSize": "14px",
  109. "list": [
  110. {
  111. "pagePath": "pages/index/index",
  112. "text": "首页"
  113. },
  114. {
  115. "pagePath": "pages/userCenter/index",
  116. "text": "我的"
  117. }]
  118. }
  119. }