pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. // 注意一定要放在custom里,否则无效,https://ask.dcloud.net.cn/question/131175
  5. "custom": {
  6. "^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
  7. "^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
  8. "^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue",
  9. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
  10. }
  11. },
  12. "pages": [
  13. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  14. {
  15. "path": "pages/system/login/login1.vue",
  16. "style": {
  17. "navigationBarTitleText": "测试页面"
  18. }
  19. },
  20. {
  21. "path": "pages/home",
  22. "style": {
  23. "navigationBarTitleText": "项目列表"
  24. }
  25. },
  26. {
  27. "path": "pages/system/login/index",
  28. "style": {
  29. "navigationBarTitleText": "登录"
  30. }
  31. },
  32. {
  33. "path": "pages/work/index",
  34. "style": {
  35. "navigationBarTitleText": "工作台"
  36. }
  37. },
  38. {
  39. "path": "pages/mine/index",
  40. "style": {
  41. "navigationBarTitleText": "我的"
  42. }
  43. },
  44. {
  45. "path": "pages/work/projectImage/projectImage",
  46. "style": {
  47. "navigationBarTitleText": "",
  48. "enablePullDownRefresh": true
  49. }
  50. },
  51. {
  52. "path": "pages/work/uploadProjectImage",
  53. "style": {
  54. "navigationBarTitleText": "上传项目图片"
  55. }
  56. }
  57. ],
  58. "tabBar": {
  59. "color": "#000000",
  60. "selectedColor": "#000000",
  61. "borderStyle": "white",
  62. "backgroundColor": "#ffffff",
  63. "list": [
  64. {
  65. "pagePath": "pages/home",
  66. "iconPath": "static/images/tabbar/home.png",
  67. "selectedIconPath": "static/images/tabbar/home_.png",
  68. "text": "首页"
  69. },
  70. {
  71. "pagePath": "pages/work/index",
  72. "iconPath": "static/images/tabbar/work.png",
  73. "selectedIconPath": "static/images/tabbar/work_.png",
  74. "text": "工作台"
  75. },
  76. {
  77. "pagePath": "pages/mine/index",
  78. "iconPath": "static/images/tabbar/mine.png",
  79. "selectedIconPath": "static/images/tabbar/mine_.png",
  80. "text": "我的"
  81. }
  82. ]
  83. },
  84. "globalStyle": {
  85. "navigationBarTextStyle": "black",
  86. "navigationBarTitleText": "uni-app",
  87. "navigationBarBackgroundColor": "#F8F8F8",
  88. "backgroundColor": "#F8F8F8"
  89. }
  90. // "subPackages": [
  91. // {
  92. // "root": "pages",
  93. // "pages": []
  94. // }
  95. // ]
  96. }