pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "tabBar": {
  46. "color": "#7A7E83",
  47. "selectedColor": "#4581fb",
  48. "borderStyle": "black",
  49. "backgroundColor": "#F8F8F8",
  50. "list": [{
  51. "pagePath": "pages/index/index",
  52. "iconPath": "static/tab/sy.png",
  53. "selectedIconPath": "static/tab/sy_s.png",
  54. "text": "首页"
  55. },
  56. {
  57. "pagePath": "pages/packages/index",
  58. "iconPath": "static/tab/jb.png",
  59. "selectedIconPath": "static/tab/jb_s.png",
  60. "text": "接包"
  61. },
  62. {
  63. "pagePath": "pages/user/index",
  64. "iconPath": "static/tab/my.png",
  65. "selectedIconPath": "static/tab/my_s.png",
  66. "text": "我的"
  67. }
  68. ]
  69. },
  70. "globalStyle": {
  71. "navigationBarTextStyle": "black",
  72. "navigationBarTitleText": "承揽时代",
  73. "navigationBarBackgroundColor": "#f8f8f8"
  74. }
  75. }