pages.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "easycom": {
  3. "^u-(.*)": "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. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path" : "pages/my/my",
  15. "style" :
  16. {
  17. "navigationBarTitleText" : "个人中心",
  18. "navigationBarBackgroundColor": "#F7F7F7",
  19. "backgroundColor": "#F7F7F7",
  20. "enablePullDownRefresh" : false
  21. }
  22. },
  23. {
  24. "path" : "pages/forgetPassword/forgetPassword",
  25. "style" :
  26. {
  27. "navigationBarTitleText" : "找回密码",
  28. "enablePullDownRefresh" : false
  29. }
  30. }, {
  31. "path": "pages/login/login",
  32. "style": {
  33. "navigationBarTitleText" : "登录",
  34. "enablePullDownRefresh": false
  35. }
  36. },
  37. {
  38. "path" : "pages/register/register",
  39. "style" :
  40. {
  41. "navigationBarTitleText" : "注册",
  42. "enablePullDownRefresh" : false
  43. }
  44. }
  45. ],
  46. "tabBar": {
  47. "color": "#999999",
  48. "selectedColor": "#333333",
  49. "borderStyle": "white",
  50. "backgroundColor": "#ffffff",
  51. "list": [{
  52. "pagePath": "pages/index/index",
  53. "iconPath": "static/tabBarImg/dianzan.png",
  54. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  55. "text": "首页"
  56. }, {
  57. "pagePath": "pages/my/my",
  58. "iconPath": "static/tabBarImg/me.png",
  59. "selectedIconPath": "static/tabBarImg/me_cur.png",
  60. "text": "我的"
  61. }]
  62. },
  63. "globalStyle": {
  64. "navigationBarTextStyle": "black",
  65. // "navigationBarTitleText": "加载中",
  66. "navigationBarBackgroundColor": "#FFE05C",
  67. "backgroundColor": "#FFE05C"
  68. },
  69. "uniIdRouter": {}
  70. }