pages.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "pages": [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. //"navigationStyle": "custom" 隐藏了才能触发自定义的
  5. {
  6. "path": "pages/index/index",
  7. "style": {
  8. "navigationBarTitleText": "个人中心",
  9. "navigationBarTextStyle": "white",
  10. "navigationBarBackgroundColor": "#3F8DFD"
  11. }
  12. },
  13. {
  14. "path": "pages/login/login",
  15. "style": {
  16. "navigationBarTitleText": "登录"
  17. }
  18. },
  19. {
  20. "path": "pages/login/register",
  21. "style": {
  22. "navigationBarTitleText": "注册"
  23. }
  24. },
  25. {
  26. "path": "pages/login/forget",
  27. "style": {
  28. "navigationBarTitleText": "忘记密码"
  29. }
  30. },
  31. {
  32. "path": "pages/profile/index",
  33. "style": {
  34. "navigationBarTitleText": "修改资料"
  35. }
  36. },
  37. {
  38. "path": "pages/vcard/index",
  39. "style": {
  40. "navigationBarTitleText": "电子名片",
  41. "navigationBarBackgroundColor": "#353F5C",
  42. "navigationBarTextStyle": "white"
  43. }
  44. },
  45. {
  46. "path": "pages/actlist/index",
  47. "style": {
  48. "navigationBarTitleText": "活动列表",
  49. "enablePullDownRefresh": false
  50. }
  51. }
  52. ],
  53. "globalStyle": {
  54. "navigationBarTextStyle": "black",
  55. "navigationBarTitleText": "uni-app",
  56. "navigationBarBackgroundColor": "#FFFFFF",
  57. "backgroundColor": "#FFFFFF"
  58. },
  59. "uniIdRouter": {},
  60. "easycom": {
  61. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  62. }
  63. }