pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/tabbar/index/index",
  8. "style": {
  9. "navigationBarTitleText": "商城",
  10. "navigationStyle": "custom"
  11. }
  12. },
  13. {
  14. "path": "pages/tabbar/mine/mine",
  15. "style": {
  16. "navigationBarTitleText": "我的"
  17. }
  18. }
  19. ,{
  20. "path" : "pages/login/login/login",
  21. "style" :
  22. {
  23. "navigationBarTitleText": "密码登录"
  24. }
  25. }
  26. ,{
  27. "path" : "pages/login/forgot/forgot",
  28. "style" :
  29. {
  30. "navigationBarTitleText": "忘记密码"
  31. }
  32. }
  33. ,{
  34. "path" : "pages/release/production/production",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "生产订单",
  38. "enablePullDownRefresh": false
  39. }
  40. }
  41. ,{
  42. "path" : "pages/release/purchase/purchase",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "采购订单",
  46. "enablePullDownRefresh": false
  47. }
  48. }
  49. ,{
  50. "path" : "pages/release/waixie/waixie",
  51. "style" :
  52. {
  53. "navigationBarTitleText": "外协订单",
  54. "enablePullDownRefresh": false
  55. }
  56. }
  57. ,{
  58. "path" : "pages/release/ocean/ocean",
  59. "style" :
  60. {
  61. "navigationBarTitleText": "海运订单",
  62. "enablePullDownRefresh": false
  63. }
  64. }
  65. ],
  66. "tabBar": {
  67. "custom": true,
  68. "list": [
  69. {
  70. "pagePath": "pages/tabbar/index/index"
  71. },
  72. {
  73. "pagePath": "pages/tabbar/mine/mine"
  74. }
  75. ]
  76. },
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "uni-app",
  80. "navigationBarBackgroundColor": "#F8F8F8",
  81. "backgroundColor": "#F8F8F8"
  82. },
  83. "uniIdRouter": {}
  84. }