app.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages":[
  3. "pages/index/index",
  4. "pages/category/category",
  5. "pages/oders/oders",
  6. "pages/users/users",
  7. "pages/home/home",
  8. "pages/search/search"
  9. ],
  10. "window": {
  11. "backgroundTextStyle": "dark",
  12. "navigationBarBackgroundColor": "#ddd",
  13. "navigationBarTitleText": "宜家家具",
  14. "navigationBarTextStyle": "black",
  15. "backgroundColor": "#ff0000",
  16. "enablePullDownRefresh": true,
  17. "backgroundColorTop": "red"
  18. },
  19. "tabBar": {
  20. "color": "#000000",
  21. "borderStyle": "black",
  22. "selectedColor": "#00BFFF",
  23. "list": [
  24. {
  25. "pagePath": "pages/index/index",
  26. "text": "首页",
  27. "iconPath": "./image/shouye.png",
  28. "selectedIconPath": "./image/shouye_selected.png"
  29. },
  30. {
  31. "pagePath": "pages/category/category",
  32. "text": "分类",
  33. "iconPath": "./image/category.png",
  34. "selectedIconPath": "./image/category_selected.png"
  35. },
  36. {
  37. "pagePath": "pages/oders/oders",
  38. "text": "订单",
  39. "iconPath": "./image/dingdan.png",
  40. "selectedIconPath": "./image/dingdan_selected.png"
  41. },
  42. {
  43. "pagePath": "pages/users/users",
  44. "text": "我的",
  45. "iconPath": "./image/wd.png",
  46. "selectedIconPath": "./image/wd_selected.png"
  47. }
  48. ]
  49. }
  50. }