app.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/news/news",
  5. "pages/shoppingCard/shoppingCard",
  6. "pages/my/my",
  7. "pages/artInfo/artInfo",
  8. "pages/myorders/myorders",
  9. "pages/productInfo/productInfo"
  10. ],
  11. "window": {
  12. "backgroundTextStyle": "light",
  13. "navigationBarBackgroundColor": "#fff",
  14. "navigationBarTitleText": "WeChat",
  15. "navigationBarTextStyle": "black"
  16. },
  17. "style": "v2",
  18. "sitemapLocation": "sitemap.json",
  19. "tabBar": {
  20. "color": "#999999",
  21. "selectedColor": "#FF0036",
  22. "list": [
  23. {
  24. "pagePath": "pages/index/index",
  25. "text": "商城",
  26. "iconPath": "static/mall.png",
  27. "selectedIconPath": "static/mall-a.png"
  28. },
  29. {
  30. "pagePath": "pages/news/news",
  31. "text": "资讯",
  32. "iconPath": "static/news.png",
  33. "selectedIconPath": "static/news-a.png"
  34. },
  35. {
  36. "pagePath": "pages/shoppingCard/shoppingCard",
  37. "text": "购物车",
  38. "iconPath": "static/scart.png",
  39. "selectedIconPath": "static/scart-a.png"
  40. },
  41. {
  42. "pagePath": "pages/my/my",
  43. "text": "我的",
  44. "iconPath": "static/my.png",
  45. "selectedIconPath": "static/my-a.png"
  46. }
  47. ]
  48. }
  49. }