pages.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "navigationBarTitleText": "uni-app"
  6. }
  7. } ,{
  8. "path" : "pages/mine/mine",
  9. "style" :
  10. {
  11. "navigationBarTitleText": "",
  12. "enablePullDownRefresh": false
  13. }
  14. }
  15. ,{
  16. "path" : "pages/shoppingMall/shoppingMall",
  17. "style" :
  18. {
  19. "navigationBarTitleText": "",
  20. "enablePullDownRefresh": false
  21. }
  22. }
  23. ,{
  24. "path" : "pages/knapsack/knapsack",
  25. "style" :
  26. {
  27. "navigationBarTitleText": "",
  28. "enablePullDownRefresh": false
  29. }
  30. }
  31. ],
  32. "globalStyle": {
  33. "navigationBarTextStyle": "black",
  34. "navigationBarTitleText": "uni-app",
  35. "navigationBarBackgroundColor": "#F8F8F8",
  36. "backgroundColor": "#F8F8F8",
  37. "app-plus": {
  38. "background": "#efeff4"
  39. }
  40. },
  41. "tabBar": {
  42. "color": "#B4C9DA",
  43. "selectedColor": "#FBB434",
  44. "height": "220px",
  45. "list": [{
  46. "pagePath": "pages/index/index",
  47. "iconPath": "static/img/tabBar1.png",
  48. "selectedIconPath": "static/img/tabBar1_s.png",
  49. "text": "首页"
  50. }
  51. , {
  52. "pagePath": "pages/shoppingMall/shoppingMall",
  53. "iconPath": "static/img/tabBar2.png",
  54. "selectedIconPath": "static/img/tabBar2_s.png",
  55. "text": "商城"
  56. }
  57. , {
  58. "pagePath": "pages/knapsack/knapsack",
  59. "iconPath": "static/img/tabBar3.png",
  60. "selectedIconPath": "static/img/tabBar3_s.png",
  61. "text": "背包"
  62. }, {
  63. "pagePath": "pages/mine/mine",
  64. "iconPath": "static/img/tabBar4.png",
  65. "selectedIconPath": "static/img/tabBar4_s.png",
  66. "text": "我的"
  67. }]
  68. }
  69. }