app.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages": [
  3. "template/home/index",
  4. "template/pay/index",
  5. "template/carts/index",
  6. "template/login/index",
  7. "template/view/index"
  8. ],
  9. "window": {
  10. "navigationBarBackgroundColor": "#39b54a",
  11. "navigationBarTitleText": "Dever",
  12. "navigationStyle": "custom",
  13. "navigationBarTextStyle": "white",
  14. "enablePullDownRefresh": true
  15. },
  16. "component": true,
  17. "tabBar": {
  18. "color": "#aaa",
  19. "selectedColor": "#39b54a",
  20. "borderStyle": "black",
  21. "backgroundColor": "#ffffff",
  22. "list": [
  23. {
  24. "pagePath": "template/home/index",
  25. "iconPath": "/static/img/tabbar/basics.png",
  26. "selectedIconPath": "/static/img/tabbar/basics_cur.png",
  27. "text": "发现"
  28. },
  29. {
  30. "pagePath": "template/pay/index",
  31. "iconPath": "/static/img/tabbar/component.png",
  32. "selectedIconPath": "/static/img/tabbar/component_cur.png",
  33. "text": "祝福"
  34. },
  35. {
  36. "pagePath": "template/carts/index",
  37. "iconPath": "/static/img/tabbar/plugin.png",
  38. "selectedIconPath": "/static/img/tabbar/plugin_cur.png",
  39. "text": "我的"
  40. }
  41. ]
  42. },
  43. "networkTimeout": {
  44. "request": 10000,
  45. "connectSocket": 10000,
  46. "uploadFile": 10000,
  47. "downloadFile": 10000
  48. },
  49. "debug": true
  50. }