app.json 751 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [
  3. "pages/shouye/shouye",
  4. "pages/index/index",
  5. "pages/logs/logs",
  6. "pages/details/details",
  7. "pages/order/order"
  8. ],
  9. "window": {
  10. "backgroundTextStyle": "light",
  11. "navigationBarBackgroundColor": "#fff",
  12. "navigationBarTitleText": "大优惠",
  13. "navigationBarTextStyle": "black"
  14. },
  15. "tabBar": {
  16. "color": "#a9b7b7",
  17. "selectedColor": "#11cd6e",
  18. "borderStyle": "black" ,
  19. "list": [
  20. {
  21. "pagePath": "pages/shouye/shouye",
  22. "text": "首页"
  23. },
  24. {
  25. "pagePath": "pages/index/index",
  26. "text": "我的"
  27. }
  28. ]
  29. },
  30. "usingComponents": {
  31. "l-button": "/dist/button/index"
  32. },
  33. "style": "v2",
  34. "sitemapLocation": "sitemap.json"
  35. }