app.json 858 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "pages":[
  3. "pages/index/index",
  4. "pages/login/index"
  5. ],
  6. "tabBar": {
  7. "list": [{
  8. "pagePath": "pages/index/index",
  9. "text": "菜单",
  10. "iconPath": "./assets/tabber/menu.png",
  11. "selectedIconPath": "./assets/tabber/menu_copy.png"
  12. },{
  13. "pagePath": "pages/login/index",
  14. "text":"我的",
  15. "iconPath": "./assets/tabber/my.png",
  16. "selectedIconPath": "./assets/tabber/my_copy.png"
  17. }
  18. ],
  19. "color": "#fff",
  20. "selectedColor": "#1296db",
  21. "backgroundColor": "#333"
  22. },
  23. "window":{
  24. "backgroundTextStyle":"light",
  25. "navigationBarBackgroundColor": "#fff",
  26. "navigationBarTitleText": "金融小程序",
  27. "navigationBarTextStyle":"white",
  28. "navigationStyle": "custom"
  29. },
  30. "usingComponents": {
  31. "cu-custom": "/colorui/components/cu-custom"
  32. },
  33. "sitemapLocation": "sitemap.json"
  34. }