pages.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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/authentication/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. "tabBar": {
  62. "color": "#7A7E83",
  63. "selectedColor": "#4581fb",
  64. "borderStyle": "black",
  65. "backgroundColor": "#F8F8F8",
  66. "list": [{
  67. "pagePath": "pages/index/index",
  68. "iconPath": "static/tab/sy.png",
  69. "selectedIconPath": "static/tab/sy_s.png",
  70. "text": "首页"
  71. },
  72. {
  73. "pagePath": "pages/packages/index",
  74. "iconPath": "static/tab/jb.png",
  75. "selectedIconPath": "static/tab/jb_s.png",
  76. "text": "接包"
  77. },
  78. {
  79. "pagePath": "pages/user/index",
  80. "iconPath": "static/tab/my.png",
  81. "selectedIconPath": "static/tab/my_s.png",
  82. "text": "我的"
  83. }
  84. ]
  85. },
  86. "globalStyle": {
  87. "navigationBarTextStyle": "black",
  88. "navigationBarTitleText": "承揽时代",
  89. "navigationBarBackgroundColor": "#f8f8f8"
  90. }
  91. }