蓝色 贷款产品助手

app.json 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/find/find",
  5. "pages/mine/mine",
  6. "pages/details/details",
  7. "pages/questions/questions",
  8. "pages/feedback/feedback",
  9. "pages/application/application",
  10. "pages/getPhone/getPhone",
  11. "pages/getIt/getIt",
  12. "pages/signup/signup",
  13. "pages/login/login"
  14. ],
  15. "window": {
  16. "backgroundTextStyle": "dark",
  17. "navigationBarBackgroundColor": "#fff",
  18. "navigationBarTitleText": "贷款产品助手",
  19. "navigationBarTextStyle": "black",
  20. "enablePullDownRefresh": false,
  21. "onReachBottomDistance": 10
  22. },
  23. "tabBar": {
  24. "color": "#666",
  25. "selectedColor": "#333",
  26. "borderStyle": "#aaa",
  27. "backgroundColor": "#f8f8f9",
  28. "list": [
  29. {
  30. "selectedIconPath": "pages/resource/image/index-on.png",
  31. "iconPath": "pages/resource/image/index.png",
  32. "pagePath": "pages/index/index",
  33. "text": "首页"
  34. },
  35. {
  36. "selectedIconPath": "pages/resource/image/find-on.png",
  37. "iconPath": "pages/resource/image/find.png",
  38. "pagePath": "pages/find/find",
  39. "text": "贷款大全"
  40. },
  41. {
  42. "selectedIconPath": "pages/resource/image/mine-on.png",
  43. "iconPath": "pages/resource/image/mine.png",
  44. "pagePath": "pages/mine/mine",
  45. "text": "我的"
  46. }
  47. ]
  48. },
  49. "debug": true
  50. }