pages.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },{
  9. "path": "pages/auth/login",
  10. "style": {
  11. "navigationBarTitleText": "登录"
  12. }
  13. },{
  14. "path": "pages/center/index",
  15. "style": {
  16. "navigationBarTitleText": "个人中心"
  17. }
  18. },{
  19. "path": "pages/center/mmxg/mmxg",
  20. "style": {
  21. "navigationBarTitleText": "密码修改"
  22. }
  23. },{
  24. "path": "pages/center/about/about",
  25. "style": {
  26. "navigationBarTitleText": "关于应用"
  27. }
  28. },{
  29. "path" : "pages/lq-upgrade/upgrade",
  30. "style" :
  31. {
  32. "navigationBarTitleText" : "APP升级",
  33. "enablePullDownRefresh" : false
  34. }
  35. },
  36. {
  37. "path" : "pages/auth/register/register",
  38. "style" :
  39. {
  40. "navigationBarTitleText" : "用户注册",
  41. "enablePullDownRefresh" : false
  42. }
  43. }
  44. ],
  45. "tabBar": {
  46. "color": "#bfbfbf",
  47. "selectedColor": "#1296db",
  48. "borderStyle": "black",
  49. "backgroundColor": "#ffffff",
  50. "list": [{
  51. "pagePath": "pages/index/index",
  52. "iconPath": "static/icon/zy1.png",
  53. "selectedIconPath": "static/icon/zy2.png",
  54. "text": "首页"
  55. },{
  56. "pagePath": "pages/myinfo/index",
  57. "iconPath": "static/icon/z1.png",
  58. "selectedIconPath": "static/icon/z2.png",
  59. "text": "YSX"
  60. },{
  61. "pagePath": "pages/gird/index",
  62. "iconPath": "static/icon/fx1.png",
  63. "selectedIconPath": "static/icon/fx2.png",
  64. "text": "宫格"
  65. }, {
  66. "pagePath": "pages/center/index",
  67. "iconPath": "static/icon/center.png",
  68. "selectedIconPath": "static/icon/center-selected.png",
  69. "text": "我"
  70. }]
  71. },
  72. "globalStyle": {
  73. "navigationBarTextStyle": "black",
  74. "navigationBarTitleText": "uni-app",
  75. "navigationBarBackgroundColor": "#F8F8F8",
  76. "backgroundColor": "#F8F8F8"
  77. },
  78. "uniIdRouter": {}
  79. }