app.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "pages": [
  3. "pages/workark/workark",
  4. "pages/index/index",
  5. "pages/model/model",
  6. "pages/shopping/shopping",
  7. "pages/my/my",
  8. "pages/login/login",
  9. "pages/message/message"
  10. ],
  11. "subPackages": [
  12. {
  13. "root": "subPages/workarkPage",
  14. "pages": [
  15. "workarkDetail/workarkDetail",
  16. "coupon/coupon",
  17. "paymentStatus/paymentStatus"
  18. ]
  19. },
  20. {
  21. "root": "subPages/chatPage",
  22. "pages": [
  23. "chat/chat"
  24. ]
  25. },
  26. {
  27. "root": "subPages/indexPage",
  28. "pages": [
  29. "orderList/orderList",
  30. "orderDetail/orderDetail"
  31. ]
  32. }
  33. ],
  34. "window": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "workark",
  37. "navigationBarBackgroundColor": "#fff"
  38. },
  39. "tabBar": {
  40. "color": "#7d7380",
  41. "selectedColor": "#3c9cff",
  42. "list": [
  43. {
  44. "pagePath": "pages/index/index",
  45. "iconPath": "static/images/tabbar/index.png",
  46. "selectedIconPath": "static/images/tabbar/index-active.png",
  47. "text": "首页"
  48. },
  49. {
  50. "pagePath": "pages/message/message",
  51. "iconPath": "static/images/tabbar/chat.png",
  52. "selectedIconPath": "static/images/tabbar/chat-active.png",
  53. "text": "消息"
  54. },
  55. {
  56. "pagePath": "pages/workark/workark",
  57. "iconPath": "static/images/tabbar/highseas.png",
  58. "selectedIconPath": "static/images/tabbar/highseas-active.png",
  59. "text": "workark"
  60. },
  61. {
  62. "pagePath": "pages/shopping/shopping",
  63. "iconPath": "static/images/tabbar/data.png",
  64. "selectedIconPath": "static/images/tabbar/data-active.png",
  65. "text": "商城"
  66. },
  67. {
  68. "pagePath": "pages/my/my",
  69. "iconPath": "static/images/tabbar/my.png",
  70. "selectedIconPath": "static/images/tabbar/my-active.png",
  71. "text": "我的"
  72. }
  73. ]
  74. },
  75. "lazyCodeLoading": "requiredComponents",
  76. "usingComponents": {}
  77. }