app.json 706 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages":[
  3. "pages/index/index",
  4. "pages/logs/logs",
  5. "pages/2048/2048"
  6. ],
  7. "window":{
  8. "navigationBarBackgroundColor":"#ffffff",
  9. "navigationBarTextStyle":"#1AAD16",
  10. "navigationBarTitleText":"微信接口功能演示",
  11. "backgroundColor":"#eeeeee",
  12. "backgroundTextStyle":"light"
  13. },
  14. "tabBar": {
  15. "color": "#353535",
  16. "selectedColor": "#3cc51f",
  17. "borderStyle": "white",
  18. "backgroundColor": "#ffffff",
  19. "list": [{
  20. "pagePath": "pages/index/index",
  21. "text": "游戏"
  22. }, {
  23. "pagePath": "pages/logs/logs",
  24. "text": "日志"
  25. }]
  26. },
  27. "networkTimeout": {
  28. "request": 10000,
  29. "downloadFile": 10000
  30. },
  31. "debug": false
  32. }