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