pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "navigationBarTitleText": "首页"
  6. }
  7. },
  8. {
  9. "path": "pages/shop/index",
  10. "style": {
  11. "navigationBarTitleText": "商城"
  12. }
  13. },
  14. {
  15. "path": "pages/cart/cart",
  16. "style": {
  17. "navigationBarTitleText": "购物车"
  18. }
  19. },
  20. {
  21. "path": "pages/user/index",
  22. "style": {
  23. "navigationBarTitleText": "个人"
  24. }
  25. }
  26. ],
  27. "subPackages": [{
  28. "root": "pagesGood",
  29. "pages": [{
  30. "path": "goodDetails",
  31. "style": {
  32. "navigationBarTitleText": "商品详情"
  33. }
  34. }, {
  35. "path": "goodList",
  36. "style": {
  37. "navigationBarTitleText": "商品列表"
  38. }
  39. }, {
  40. "path": "shopDetails",
  41. "style": {
  42. "navigationBarTitleText": "商铺详情"
  43. }
  44. }, {
  45. "path": "orderPay",
  46. "style": {
  47. "navigationBarTitleText": "填写订单"
  48. }
  49. }]
  50. },{ "root": "pagesOrder", "pages": [{ "path": "index", "style": { "navigationBarTitleText": "我的订单" } }] }],
  51. "globalStyle": {
  52. "navigationStyle": "default",
  53. "navigationBarTextStyle": "black",
  54. "navigationBarTitleText": "千家地",
  55. "navigationBarBackgroundColor": "#ffffff",
  56. "backgroundColor": "#F8F8F8"
  57. },
  58. "tabBar": {
  59. "borderStyle": "black",
  60. "backgroundColor": "#fff",
  61. "color": "#9A9A9A",
  62. "selectedColor": "#52A63A",
  63. "list": [{
  64. "pagePath": "pages/index/index",
  65. "iconPath": "static/images/icon-index.png",
  66. "selectedIconPath": "static/images/icon-index-active.png",
  67. "text": "首页"
  68. },{
  69. "pagePath": "pages/shop/index",
  70. "iconPath": "static/images/icon-shop.png",
  71. "selectedIconPath": "static/images/icon-shop-active.png",
  72. "text": "商城"
  73. },{
  74. "pagePath": "pages/cart/cart",
  75. "iconPath": "static/images/icon-cart.png",
  76. "selectedIconPath": "static/images/icon-cart-active.png",
  77. "text": "购物车"
  78. },{
  79. "pagePath": "pages/user/index",
  80. "iconPath": "static/images/icon-mine.png",
  81. "selectedIconPath": "static/images/icon-mine-active.png",
  82. "text": "个人"
  83. }
  84. ]
  85. }
  86. }