app.json 900 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "pages":[
  3. "pages/index/index",
  4. "pages/submitPhone/index",
  5. "pages/list/index",
  6. "pages/record/index",
  7. "pages/recharge/index",
  8. "pages/bill/index"
  9. ],
  10. "tabBar": {
  11. "color": "#2c2c2c",
  12. "selectedColor": "#1296db",
  13. "borderStyle": "black",
  14. "list": [
  15. {
  16. "selectedIconPath": "./utils/images/home.png",
  17. "iconPath": "./utils/images/home-1.png",
  18. "pagePath": "pages/index/index",
  19. "text": "首页"
  20. },
  21. {
  22. "selectedIconPath": "./utils/images/list.png",
  23. "iconPath": "./utils/images/list-1.png",
  24. "pagePath": "pages/list/index",
  25. "text": "列表"
  26. }
  27. ]
  28. },
  29. "window":{
  30. "backgroundTextStyle":"light",
  31. "navigationBarBackgroundColor": "#fff",
  32. "navigationBarTitleText": "电费",
  33. "navigationBarTextStyle":"black"
  34. },
  35. "style": "v2",
  36. "sitemapLocation": "sitemap.json"
  37. }