app.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/video/index",
  5. "pages/order/index",
  6. "pages/my/index"
  7. ],
  8. "subPackages": [
  9. {
  10. "root": "orderPages",
  11. "pages": [
  12. "orderDetail/index",
  13. "goodsDetail/index"
  14. ]
  15. }
  16. ],
  17. "window": {
  18. "navigationBarTextStyle": "black",
  19. "navigationBarTitleText": "加载中",
  20. "navigationBarBackgroundColor": "#fff",
  21. "backgroundColor": "#F8F8F8",
  22. "titleNView": false
  23. },
  24. "tabBar": {
  25. "color": "#282828",
  26. "selectedColor": "#B22338",
  27. "borderStyle": "white",
  28. "backgroundColor": "#ffffff",
  29. "list": [
  30. {
  31. "pagePath": "pages/index/index",
  32. "iconPath": "static/imageIcon/1-001.png",
  33. "selectedIconPath": "static/imageIcon/1-002.png",
  34. "text": "首页"
  35. },
  36. {
  37. "pagePath": "pages/order/index",
  38. "iconPath": "static/imageIcon/2-001.png",
  39. "selectedIconPath": "static/imageIcon/2-002.png",
  40. "text": "订单"
  41. },
  42. {
  43. "pagePath": "pages/video/index",
  44. "iconPath": "static/imageIcon/3-001.png",
  45. "selectedIconPath": "static/imageIcon/3-002.png",
  46. "text": "视屏",
  47. "enablePullDownRefresh": false
  48. },
  49. {
  50. "pagePath": "pages/my/index",
  51. "iconPath": "static/imageIcon/4-001.png",
  52. "selectedIconPath": "static/imageIcon/4-002.png",
  53. "text": "我的"
  54. }
  55. ]
  56. },
  57. "component2": true,
  58. "usingComponents": {}
  59. }