帮你贷的小程序

app.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. ],
  14. "window": {
  15. "backgroundTextStyle": "dark",
  16. "navigationBarBackgroundColor": "#fff",
  17. "navigationBarTitleText": "帮你贷",
  18. "navigationBarTextStyle": "black",
  19. "enablePullDownRefresh": false,
  20. "onReachBottomDistance": 10
  21. },
  22. "tabBar": {
  23. "color": "#666",
  24. "selectedColor": "#333",
  25. "borderStyle": "#aaa",
  26. "backgroundColor": "#f8f8f9",
  27. "list": [
  28. {
  29. "selectedIconPath": "pages/resource/image/index-on.png",
  30. "iconPath": "pages/resource/image/index.png",
  31. "pagePath": "pages/index/index",
  32. "text": "首页"
  33. },
  34. {
  35. "selectedIconPath": "pages/resource/image/find-on.png",
  36. "iconPath": "pages/resource/image/find.png",
  37. "pagePath": "pages/find/find",
  38. "text": "发现"
  39. },
  40. {
  41. "selectedIconPath": "pages/resource/image/mine-on.png",
  42. "iconPath": "pages/resource/image/mine.png",
  43. "pagePath": "pages/mine/mine",
  44. "text": "我的"
  45. }
  46. ]
  47. },
  48. "debug": true
  49. }