pages.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/common/launch",
  8. "style": {
  9. "navigationBarBackgroundColor":"#ffffff",
  10. "navigationBarTitleText": ""
  11. }
  12. },
  13. {
  14. "path": "pages/user/index",
  15. "style": {
  16. "navigationBarBackgroundColor": "#115296",
  17. "navigationBarTextStyle": "white",
  18. "navigationBarTitleText": "客户资料",
  19. "navigationStyle": "custom",
  20. "enablePullDownRefresh": false
  21. }
  22. },
  23. {
  24. "path": "pages/user/qwSop/sopLogsList",
  25. "style": {
  26. "navigationBarBackgroundColor": "#fff",
  27. "navigationBarTextStyle": "black",
  28. "navigationBarTitleText": "SOP记录",
  29. "enablePullDownRefresh": false
  30. }
  31. },
  32. {
  33. "path": "pages/user/qwSop/sopLogsDetails",
  34. "style": {
  35. "navigationBarBackgroundColor": "#fff",
  36. "navigationBarTextStyle": "black",
  37. "navigationBarTitleText": "SOP详情",
  38. "enablePullDownRefresh": false
  39. }
  40. },
  41. {
  42. "path": "pages/course/index",
  43. "style": {
  44. "navigationBarBackgroundColor": "#fff",
  45. "navigationBarTextStyle": "black",
  46. "navigationBarTitleText": "课程库",
  47. "enablePullDownRefresh": false
  48. }
  49. },
  50. {
  51. "path": "pages/course/courseVideo",
  52. "style": {
  53. "navigationBarBackgroundColor": "#fff",
  54. "navigationBarTextStyle": "black",
  55. "navigationBarTitleText": "课程详情",
  56. "enablePullDownRefresh": false
  57. }
  58. },
  59. {
  60. "path" : "pages/user/customerDetail",
  61. "style" :
  62. {
  63. "navigationBarTitleText" : "客户详情",
  64. "navigationBarBackgroundColor": "#fff",
  65. "navigationBarTextStyle": "black",
  66. "navigationStyle": "custom",
  67. "app-plus": {
  68. "titleNView": false
  69. }
  70. }
  71. },
  72. {
  73. "path" : "pages/user/UrgeClasses",
  74. "style" :
  75. {
  76. "navigationBarTitleText" : "催课面板",
  77. "navigationBarBackgroundColor": "#fff",
  78. "navigationBarTextStyle": "black"
  79. }
  80. },
  81. {
  82. "path" : "pages/user/courseManage",
  83. "style" :
  84. {
  85. "navigationBarTitleText" : "课程管理",
  86. "navigationBarBackgroundColor": "#fff",
  87. "navigationBarTextStyle": "black"
  88. }
  89. },
  90. {
  91. "path" : "pages/course/urgeclassDetail",
  92. "style" :
  93. {
  94. "navigationBarTitleText" : "催课详情",
  95. "navigationBarBackgroundColor": "#fff",
  96. "navigationBarTextStyle": "black"
  97. }
  98. },
  99. {
  100. "path" : "pages/user/editUser",
  101. "style" :
  102. {
  103. "navigationBarTitleText" : "修改用户信息",
  104. "navigationBarBackgroundColor": "#fff",
  105. "navigationBarTextStyle": "black"
  106. }
  107. }
  108. ],
  109. "globalStyle": {
  110. "navigationBarTitleText": "企微助手",
  111. "navigationBarBackgroundColor": "#115296",
  112. "backgroundColor": "#ffffff"
  113. }
  114. // "tabBar": {
  115. // "color": "#7e7e7e",
  116. // "selectedColor": "#115296",
  117. // "borderStyle": "white",
  118. // "backgroundColor": "#ffffff",
  119. // "height": "64px",
  120. // "fontSize":"12px",
  121. // "iconWidth":"18px",
  122. // "spacing": "4px",
  123. // "list": [
  124. // {
  125. // "pagePath": "pages/user/index",
  126. // "iconPath": "/static/images/my.png",
  127. // "selectedIconPath": "/static/images/my_select.png",
  128. // "text": "企微助手"
  129. // }
  130. // ]
  131. // }
  132. }