pages.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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/index/index",
  8. "style": {
  9. "navigationBarTitleText": "承揽时代"
  10. }
  11. },
  12. {
  13. "path" : "pages/packages/index",
  14. "style" :
  15. {
  16. "navigationBarTitleText" : "接包",
  17. "enablePullDownRefresh" : false
  18. }
  19. },
  20. {
  21. "path" : "pages/user/index",
  22. "style" :
  23. {
  24. "navigationBarTitleText" : "接包",
  25. "enablePullDownRefresh" : false
  26. }
  27. },
  28. {
  29. "path" : "pages/user/login",
  30. "style" :
  31. {
  32. "navigationBarTitleText" : "用户登录",
  33. "enablePullDownRefresh" : false
  34. }
  35. },
  36. {
  37. "path" : "pages/auth/index",
  38. "style" :
  39. {
  40. "navigationBarTitleText" : "实名认证",
  41. "enablePullDownRefresh" : false
  42. }
  43. },
  44. {
  45. "path" : "pages/company/index",
  46. "style" :
  47. {
  48. "navigationBarTitleText" : "关联企业",
  49. "enablePullDownRefresh" : true
  50. }
  51. },
  52. {
  53. "path" : "pages/company/search",
  54. "style" :
  55. {
  56. "navigationBarTitleText" : "手动关联",
  57. "enablePullDownRefresh" : false
  58. }
  59. },
  60. {
  61. "path" : "pages/user/info",
  62. "style" :
  63. {
  64. "navigationBarTitleText" : "关联企业",
  65. "enablePullDownRefresh" : false
  66. }
  67. }
  68. ],
  69. "tabBar": {
  70. "color": "#7A7E83",
  71. "selectedColor": "#4581fb",
  72. "borderStyle": "black",
  73. "backgroundColor": "#F8F8F8",
  74. "list": [{
  75. "pagePath": "pages/index/index",
  76. "iconPath": "static/tab/sy.png",
  77. "selectedIconPath": "static/tab/sy_s.png",
  78. "text": "首页"
  79. },
  80. {
  81. "pagePath": "pages/packages/index",
  82. "iconPath": "static/tab/jb.png",
  83. "selectedIconPath": "static/tab/jb_s.png",
  84. "text": "接包"
  85. },
  86. {
  87. "pagePath": "pages/user/index",
  88. "iconPath": "static/tab/my.png",
  89. "selectedIconPath": "static/tab/my_s.png",
  90. "text": "我的"
  91. }
  92. ]
  93. },
  94. "globalStyle": {
  95. "navigationBarTextStyle": "black",
  96. "navigationBarTitleText": "承揽时代",
  97. "navigationBarBackgroundColor": "#f8f8f8"
  98. }
  99. }