pages.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. }, {
  9. "path": "pages/tabbar/user",
  10. "style": {
  11. "navigationBarTitleText": "我的",
  12. "navigationStyle": "custom"
  13. }
  14. }, {
  15. "path": "pages/auth/login",
  16. "style": {
  17. "navigationBarTitleText": "登录",
  18. "navigationStyle":"custom",
  19. "app-plus": {
  20. "animationType": "slide-in-bottom"
  21. }
  22. }
  23. }, {
  24. "path" : "pages/set/userInfo",
  25. "style" : {
  26. "navigationBarTitleText": "个人资料"
  27. }
  28. }
  29. ],
  30. "globalStyle": {
  31. "navigationBarTextStyle": "black",
  32. "navigationBarTitleText": "uni-app",
  33. "navigationBarBackgroundColor": "#F8F8F8",
  34. "backgroundColor": "#F8F8F8"
  35. },
  36. "tabBar": {
  37. "color": "#666",
  38. "selectedColor": "#FF5A5F",
  39. "borderStyle": "black",
  40. "list": [{
  41. "text": "首页",
  42. "pagePath": "pages/index/index",
  43. "iconPath": "static/tarbar/index.png",
  44. "selectedIconPath": "static/tarbar/index-active.png"
  45. }, {
  46. "text": "商品",
  47. "pagePath": "pages/product/list",
  48. "iconPath": "static/tarbar/product.png",
  49. "selectedIconPath": "static/tarbar/product-active.png"
  50. }, {
  51. "text": "我的",
  52. "pagePath": "pages/tabbar/user",
  53. "iconPath": "static/tarbar/ucenter.png",
  54. "selectedIconPath": "static/tarbar/ucenter-active.png"
  55. }]
  56. }
  57. }