pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  6. }
  7. },
  8. "pages": [
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "团蜂名片",
  13. "navigationStyle": "custom"
  14. }
  15. },
  16. {
  17. "path": "pages/user/user",
  18. "style": {
  19. "navigationBarTitleText": "我的",
  20. "navigationStyle": "custom"
  21. }
  22. },
  23. {
  24. "path": "pages/login/login",
  25. "style": {
  26. "navigationBarTitleText": "登录"
  27. }
  28. },
  29. {
  30. "path": "pages/login/register",
  31. "style": {
  32. "navigationBarTitleText": "注册"
  33. }
  34. },
  35. {
  36. "path": "pages/service-agreement/service-agreement",
  37. "style": {
  38. "navigationBarTitleText": "团蜂服务协议"
  39. }
  40. },
  41. {
  42. "path": "pages/service-agreement/privacy-policy",
  43. "style": {
  44. "navigationBarTitleText": "团蜂隐私协议"
  45. }
  46. }
  47. ],
  48. "subPackages": [
  49. {
  50. "root": "another-tf",
  51. "pages": [
  52. {
  53. "path": "another-user/calling-card/agree",
  54. "style": {
  55. "navigationBarTitleText": "用户协议"
  56. }
  57. },
  58. {
  59. "path": "another-user/calling-card/card-sharing",
  60. "style": {
  61. "navigationBarTitleText": "名片分享"
  62. // 对于APP,单独设置uniapp自带的头部导航栏,则有头部导航栏,否则没有;当然也可以不设置,而使用页面头部栏。
  63. // "app-plus": {
  64. // // #ifdef APP
  65. // "titleNView": {
  66. // "type": "default"
  67. // }
  68. // // #endif
  69. // }
  70. // 相当于全局设置的。对于小程序,如果设置导航栏自定义,则没有了小程序自身的头部导航栏,否则依然存在。
  71. // "navigationStyle": "custom",
  72. // 相当于全局设置的。
  73. // "app-plus": {
  74. // "titleNView": false
  75. // } //去掉
  76. }
  77. },
  78. {
  79. "path": "another-user/calling-card-management/calling-card-form",
  80. "style": {
  81. "navigationBarTitleText": "名片表单"
  82. }
  83. },
  84. {
  85. "path": "another-user/calling-card-management/label-list",
  86. "style": {
  87. "navigationBarTitleText": "名片标签列表"
  88. }
  89. },
  90. {
  91. "path": "another-user/calling-card-management/card-label-form",
  92. "style": {
  93. "navigationBarTitleText": "名片标签表单"
  94. }
  95. }
  96. ]
  97. }
  98. ],
  99. "tabBar": {
  100. "selectedColor": "#E95D20",
  101. "backgroundColor": "#fff",
  102. "color": "#3D3D3D",
  103. "borderStyle": "white",
  104. "iconWidth": "28px",
  105. "height": "60px",
  106. "list": [
  107. {
  108. "pagePath": "pages/index/index",
  109. "text": "名片",
  110. "iconPath": "/static/images/tabbar/furniture.png",
  111. "selectedIconPath": "/static/images/tabbar/furniture-active.png"
  112. },
  113. {
  114. "pagePath": "pages/user/user",
  115. "text": "我的",
  116. "iconPath": "/static/images/tabbar/mine.png",
  117. "selectedIconPath": "/static/images/tabbar/mine-active.png"
  118. }
  119. ]
  120. },
  121. "globalStyle": {
  122. "backgroundTextStyle": "light",
  123. "navigationBarBackgroundColor": "#FFFFFF",
  124. "navigationBarTitleText": "uni-card",
  125. "navigationBarTextStyle": "black",
  126. // "navigationStyle": "custom",
  127. // 对于小程序、APP、H5,设置了,则没有了uniapp自带的头部导航栏。
  128. "titleNView": false,
  129. "app-plus": {
  130. "animationType": "slide-in-right",
  131. "animationDuration": 300
  132. }
  133. // 无用:
  134. // "mp-weixin": {
  135. // "usingComponents": {
  136. // "tui-no-data": "/components/thorui/tui-no-data/tui-no-data" // /pages/index/index
  137. // }
  138. // }
  139. }
  140. }