pages.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. // uni-ui 规则如下配置
  6. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
  7. }
  8. },
  9. "pages": [
  10. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/news/index",
  19. "style": {
  20. "navigationStyle": "custom"
  21. }
  22. },
  23. {
  24. "path": "pages/mine-page/index",
  25. "style": {
  26. "navigationStyle": "custom"
  27. }
  28. },
  29. {
  30. "path": "pages/login/index",
  31. "style": {
  32. "navigationStyle": "custom"
  33. }
  34. },
  35. {
  36. "path": "pages/reset-password/index",
  37. "style": {
  38. "navigationStyle": "custom"
  39. }
  40. }
  41. ],
  42. "subPackages": [
  43. {
  44. "root": "pages-common",
  45. "pages": [
  46. {
  47. "path": "signature/index",
  48. "style": {
  49. "navigationBarTitleText": "签名",
  50. "navigationStyle": "default"
  51. }
  52. }
  53. ]
  54. },
  55. {
  56. "root": "pages-task",
  57. "pages": [
  58. {
  59. "path": "task-entry-page/index",
  60. "style": {
  61. "navigationBarTitleText": "任务录入",
  62. "navigationStyle": "default"
  63. }
  64. }
  65. ]
  66. }
  67. ],
  68. "globalStyle": {
  69. "navigationBarTextStyle": "black",
  70. "navigationBarTitleText": "uni-app",
  71. "navigationBarBackgroundColor": "#F8F8F8",
  72. "backgroundColor": "#F8F8F8"
  73. },
  74. "tabBar": {
  75. "color": "#B5B5B5",
  76. "selectedColor": "#3fa3f1",
  77. "borderStyle": "black",
  78. "backgroundColor": "#ffffff",
  79. "list": [
  80. {
  81. "pagePath": "pages/index/index",
  82. "iconPath": "static/images/tabbar/work.png",
  83. "selectedIconPath": "static/images/tabbar/workAct.png",
  84. "text": "工作台"
  85. },
  86. {
  87. "pagePath": "pages/news/index",
  88. "iconPath": "static/images/tabbar/news.png",
  89. "selectedIconPath": "static/images/tabbar/newsAct.png",
  90. "text": "资讯"
  91. },
  92. {
  93. "pagePath": "pages/mine-page/index",
  94. "iconPath": "static/images/tabbar/mine.png",
  95. "selectedIconPath": "static/images/tabbar/mineAct.png",
  96. "text": "我的"
  97. }
  98. ]
  99. }
  100. }