eros.native.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. module.exports = {
  2. 'appName': 'eros-demo',
  3. 'appBoard': '/config/index.js',
  4. // android 监听全局事件homeBack 如果为true 安卓端需要自行调用router.finish方法来关闭应用
  5. 'androidIsListenHomeBack': 'true',
  6. 'customBundleUpdate': 'false',
  7. 'version': {
  8. 'android': '1.0.0',
  9. 'iOS': '1.0.0'
  10. },
  11. 'page': {
  12. 'homePage': '/pages/login/index.js',
  13. 'mediatorPage': '/mediator/index.js',
  14. 'navBarColor': '#1DA1F2',
  15. 'navItemColor': '#ffffff'
  16. },
  17. 'url': {
  18. 'image': 'https://lev-inf.benmu-health.com/test/xxx',
  19. 'bundleUpdate': 'http://localhosts:3001/app/check'
  20. },
  21. 'zipFolder': {
  22. 'iOS': '/ios/WeexEros/WeexEros',
  23. 'android': '/android/WeexFrameworkWrapper/app/src/main/assets'
  24. },
  25. 'getui': {
  26. 'enabled': 'false',
  27. 'appId': '',
  28. 'appKey': '',
  29. 'appSecret': ''
  30. },
  31. 'tabBar': {
  32. 'color': '#777777',
  33. 'selectedColor': '#1bc3fb',
  34. 'backgroundColor': '#fafafa',
  35. 'borderColor': '#dfe1eb',
  36. 'list': [{
  37. 'pagePath': '/pages/message/index.js',
  38. 'text': '消息',
  39. 'icon': 'bmlocal://assets/imgs/tabIcon/news@3x.png',
  40. 'selectedIcon': 'bmlocal://assets/imgs/tabIcon/news-click@3x.png',
  41. 'navShow': 'true',
  42. 'navTitle': "消息"
  43. },
  44. {
  45. 'pagePath': '/pages/contact/index.js',
  46. 'text': '通讯录',
  47. 'icon': 'bmlocal://assets/imgs/tabIcon/phone@3x.png',
  48. 'selectedIcon': 'bmlocal://assets/imgs/tabIcon/phone-click@3x.png',
  49. 'navShow': 'true',
  50. 'navTitle': '通讯录'
  51. },
  52. {
  53. 'pagePath': '/pages/mine/index.js',
  54. 'text': '我的',
  55. 'icon': 'bmlocal://assets/imgs/tabIcon/mine@3x.png',
  56. 'selectedIcon': 'bmlocal://assets/imgs/tabIcon/mine-click@3x.png',
  57. 'navShow': 'true',
  58. 'navTitle': '我的'
  59. }
  60. ]
  61. }
  62. }