132 rivejä
2.9 KiB

  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. //这个pages里只放这五个页面,新增页面时请对应的放到下面的分包里
  6. "pages": [{
  7. "path": "pages/index/guide",
  8. "style": {
  9. "navigationBarBackgroundColor": "#008EF2",
  10. "navigationBarTextStyle": "white",
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/index/index",
  16. "style": {
  17. "navigationBarTitleText": "首页",
  18. "navigationBarBackgroundColor": "#008EF2",
  19. "navigationBarTextStyle": "white"
  20. }
  21. },
  22. {
  23. "path": "pages/index/customer",
  24. "style": {
  25. "navigationBarTitleText": "接待",
  26. "navigationBarBackgroundColor": "#008EF2",
  27. "navigationBarTextStyle": "white"
  28. }
  29. },{
  30. "path": "pages/index/learning",
  31. "style": {
  32. "navigationBarTitleText": "学习",
  33. "navigationBarBackgroundColor": "#008EF2",
  34. "navigationBarTextStyle": "white"
  35. }
  36. },{
  37. "path": "pages/index/personal",
  38. "style": {
  39. "navigationBarTitleText": "个人",
  40. "navigationBarBackgroundColor": "#008EF2",
  41. "navigationBarTextStyle": "white"
  42. }
  43. }
  44. ],
  45. //这下面是分包
  46. "subPackages": [
  47. {
  48. "root": "pages/login",//登录相关
  49. "name": "login",
  50. "pages": [
  51. {
  52. "path": "index",
  53. "style": {
  54. "navigationBarBackgroundColor": "#008EF2",
  55. "navigationBarTextStyle": "white"
  56. }
  57. }
  58. ]
  59. },
  60. {
  61. "root": "pages/mine",//个人中心
  62. "name": "mine",
  63. "pages": [
  64. ]
  65. },
  66. {
  67. "root": "pages/learning",//学习
  68. "name": "learning",
  69. "pages": [
  70. ]
  71. },
  72. {
  73. "root": "pages/center",//中心逻辑的模块都放到这里
  74. "name": "center",
  75. "pages": [
  76. ]
  77. }
  78. ],
  79. "permission": {
  80. "scope.userLocation": {
  81. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  82. }
  83. },
  84. "networkTimeout": {
  85. "request": 10000,
  86. "downloadFile": 10000
  87. },
  88. "debug": false,
  89. "tabBar": {
  90. "color": "#8E8E8E",
  91. "selectedColor": "#1296db",
  92. "borderStyle": "white",
  93. "list": [{
  94. "pagePath": "pages/index/index",
  95. "iconPath": "/static/images/tabBar/home.png",
  96. "selectedIconPath": "/static/images/tabBar/homeActive.png",
  97. "text": "楼盘"
  98. },
  99. {
  100. "pagePath": "pages/index/customer",
  101. "iconPath": "/static/images/tabBar/customer.png",
  102. "selectedIconPath": "/static/images/tabBar/customerActive.png",
  103. "text": "接待"
  104. },
  105. {
  106. "pagePath": "pages/index/learning",
  107. "iconPath": "/static/images/tabBar/voice.png",
  108. "selectedIconPath": "/static/images/tabBar/voiceActive.png",
  109. "text": "学习"
  110. },
  111. {
  112. "pagePath": "pages/index/personal",
  113. "iconPath": "/static/images/tabBar/user.png",
  114. "selectedIconPath": "/static/images/tabBar/userActive.png",
  115. "text": "个人"
  116. }
  117. ]
  118. },
  119. "sitemapLocation": "sitemap.json",
  120. "globalStyle": {
  121. "backgroundColor": "#F6F6F6",
  122. "backgroundTextStyle": "dark",
  123. "navigationBarBackgroundColor": "#fff",
  124. "navigationBarTitleText": "数智工牌",
  125. "navigationBarTextStyle": "black"
  126. }
  127. }