pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  6. "^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  7. "^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  8. "^CustomToast$": "@/components/CustomToast.vue"
  9. }
  10. },
  11. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  12. {
  13. "path": "pages/index/index",
  14. "style": {
  15. "navigationBarTitleText": "我的任务",
  16. "enablePullDownRefresh": true
  17. }
  18. },
  19. {
  20. "path": "pages/tabbar/my",
  21. "style": {
  22. "navigationBarTitleText": "个人中心"
  23. },
  24. "meta": {
  25. "auth": false
  26. }
  27. }, {
  28. "path": "pages/tabbar/visitor",
  29. "style": {
  30. "navigationBarTitleText": "访客中心"
  31. },
  32. "meta": {
  33. "auth": false
  34. }
  35. }
  36. ],
  37. "preloadRule": {
  38. "pages/index/index": {
  39. "network": "all",
  40. "packages": ["pagesA"]
  41. }
  42. },
  43. "subPackages": [{
  44. "root": "pagesA",
  45. "pages": [{
  46. "path": "public/login",
  47. "style": {
  48. "navigationBarTitleText": "登录",
  49. "navigationStyle": "custom"
  50. }
  51. },
  52. {
  53. "path": "public/richtext",
  54. "style": {
  55. "navigationBarTitleText": "用户协议和隐私政策"
  56. }
  57. },
  58. {
  59. "path": "public/phone-login",
  60. "style": {
  61. "navigationBarTitleText": "手机登录"
  62. }
  63. },
  64. {
  65. "path": "user/index",
  66. "style": {
  67. "navigationBarTitleText": "用户信息"
  68. }
  69. }
  70. ]
  71. }
  72. ],
  73. "tabBar": {
  74. "color": "#999999",
  75. "selectedColor": "#292C35",
  76. "borderStyle": "white",
  77. "backgroundColor": "#FFFFFF",
  78. "list": [
  79. // {
  80. // "pagePath": "pages/index/index-copy",
  81. // "text": "%index.home%"
  82. // },
  83. {
  84. "pagePath": "pages/index/index",
  85. "iconPath": "/static/tabbar/task.png",
  86. "selectedIconPath": "/static/tabbar/task-select.png",
  87. "text": "我的任务"
  88. },
  89. {
  90. "pagePath": "pages/tabbar/visitor",
  91. "iconPath": "/static/tabbar/record.png",
  92. "selectedIconPath": "/static/tabbar/record-select.png",
  93. "text": "访客记录"
  94. },
  95. {
  96. "pagePath": "pages/tabbar/my",
  97. "iconPath": "/static/tabbar/my.png",
  98. "selectedIconPath": "/static/tabbar/my-select.png",
  99. "text": "个人信息"
  100. }
  101. ]
  102. },
  103. "globalStyle": {
  104. "navigationBarTextStyle": "white",
  105. "navigationBarTitleText": "uni-app",
  106. "navigationBarBackgroundColor": "#363636",
  107. "backgroundColor": "#363636"
  108. }
  109. }