app.json 734 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages":[
  3. "pages/login/login",
  4. "pages/index/index"
  5. ],
  6. "window":{
  7. "backgroundTextStyle":"light",
  8. "navigationBarBackgroundColor": "#fff",
  9. "navigationBarTitleText": "Weixin",
  10. "navigationBarTextStyle":"black"
  11. },
  12. "tabBar": {
  13. "color": "#333",
  14. "selectedColor": "#d43c33",
  15. "backgroundColor": "#fff",
  16. "list": [
  17. {
  18. "pagePath": "pages/login/login",
  19. "iconPath": "static/img/login.png",
  20. "selectedIconPath": "static/img/login-select.png",
  21. "text": "登录"
  22. },
  23. {
  24. "pagePath": "pages/index/index",
  25. "iconPath": "static/img/picture.png",
  26. "selectedIconPath": "static/img/picture-select.png",
  27. "text": "详情"
  28. }
  29. ]
  30. },
  31. "style": "v2",
  32. "sitemapLocation": "sitemap.json"
  33. }