app.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. ],
  10. "subPackages": [
  11. {
  12. "root": "subPages/workarkPage",
  13. "pages": [
  14. "workarkDetail/workarkDetail"
  15. ]
  16. }
  17. ],
  18. "window": {
  19. "navigationBarTextStyle": "black",
  20. "navigationBarTitleText": "workark",
  21. "navigationBarBackgroundColor": "#fff"
  22. },
  23. "tabBar": {
  24. "color": "#7d7380",
  25. "selectedColor": "#3c9cff",
  26. "list": [
  27. {
  28. "pagePath": "pages/index/index",
  29. "iconPath": "static/images/tabbar/index.png",
  30. "selectedIconPath": "static/images/tabbar/index-active.png",
  31. "text": "首页"
  32. },
  33. {
  34. "pagePath": "pages/model/model",
  35. "iconPath": "static/images/tabbar/chat.png",
  36. "selectedIconPath": "static/images/tabbar/chat-active.png",
  37. "text": "模型"
  38. },
  39. {
  40. "pagePath": "pages/workark/workark",
  41. "iconPath": "static/images/tabbar/highseas.png",
  42. "selectedIconPath": "static/images/tabbar/highseas-active.png",
  43. "text": "workark"
  44. },
  45. {
  46. "pagePath": "pages/shopping/shopping",
  47. "iconPath": "static/images/tabbar/data.png",
  48. "selectedIconPath": "static/images/tabbar/data-active.png",
  49. "text": "商城"
  50. },
  51. {
  52. "pagePath": "pages/my/my",
  53. "iconPath": "static/images/tabbar/my.png",
  54. "selectedIconPath": "static/images/tabbar/my-active.png",
  55. "text": "我的"
  56. }
  57. ]
  58. },
  59. "lazyCodeLoading": "requiredComponents",
  60. "usingComponents": {}
  61. }