pages.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. "enablePullDownRefresh": false,
  35. "navigationStyle": "custom",
  36. // 将回弹属性关掉
  37. "bounce":"none"
  38. }
  39. },
  40. {
  41. "path": "pages/userCenter/changePwd", // 我的>修改密码
  42. "style": {
  43. "navigationBarTitleText": "修改密码"
  44. }
  45. }
  46. ,{
  47. "path" : "pages/latePlay/chooseBulk",
  48. "style" :
  49. {
  50. "navigationBarTitleText": "选择货柜",
  51. "enablePullDownRefresh": false
  52. }
  53. }
  54. ,{
  55. "path" : "pages/latePlay/chooseProduct",
  56. "style" :
  57. {
  58. "navigationBarTitleText": "补打贴签",
  59. "enablePullDownRefresh": false
  60. }
  61. }
  62. ,{
  63. "path" : "pages/shuntBackManage/shuntBackList",
  64. "style" :
  65. {
  66. "navigationBarTitleText": "调回管理",
  67. "enablePullDownRefresh": false
  68. }
  69. }
  70. ,{
  71. "path" : "pages/shuntBackManage/cancellingStocks",
  72. "style" :
  73. {
  74. "navigationBarTitleText": "调回退货",
  75. "enablePullDownRefresh": false,
  76. "titleView":false,
  77. // 将回弹属性关掉
  78. "bounce":"none"
  79. }
  80. }
  81. ,{
  82. "path" : "pages/replenishmentManage/replenishmentList",
  83. "style" :
  84. {
  85. "navigationBarTitleText": "补货管理",
  86. "enablePullDownRefresh": false
  87. }
  88. },
  89. {
  90. "path" : "pages/replenishmentManage/confirm",
  91. "style" :
  92. {
  93. "navigationBarTitleText": "补货确认",
  94. "enablePullDownRefresh": false
  95. }
  96. }
  97. ,{
  98. "path" : "pages/common/printTag/printTag",
  99. "style" :
  100. {
  101. "navigationBarTitleText": "打印标签",
  102. "enablePullDownRefresh": false
  103. }
  104. }
  105. ],
  106. "globalStyle": {
  107. "navigationBarTextStyle": "black",
  108. "navigationBarTitleText": "iscm",
  109. "navigationBarBackgroundColor": "#FFFFFF",
  110. "backgroundColor": "#f2f2f2",
  111. "app-plus": {
  112. // 将回弹属性关掉
  113. "bounce": "none",
  114. "scrollIndicator": "none"
  115. }
  116. },
  117. "tabBar": {
  118. "fontSize": "14px",
  119. "list": [
  120. {
  121. "pagePath": "pages/index/index",
  122. "text": "首页"
  123. },
  124. {
  125. "pagePath": "pages/userCenter/index",
  126. "text": "我的"
  127. }]
  128. }
  129. }