pages.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. }
  66. },
  67. {
  68. "path" : "pages/user/UrgeClasses",
  69. "style" :
  70. {
  71. "navigationBarTitleText" : "催课面板",
  72. "navigationBarBackgroundColor": "#fff"
  73. }
  74. },
  75. {
  76. "path" : "pages/user/courseManage",
  77. "style" :
  78. {
  79. "navigationBarTitleText" : "课程管理",
  80. "navigationBarBackgroundColor": "#fff"
  81. }
  82. },
  83. {
  84. "path" : "pages/course/urgeclassDetail",
  85. "style" :
  86. {
  87. "navigationBarTitleText" : "催课详情",
  88. "navigationBarBackgroundColor": "#fff"
  89. }
  90. },
  91. {
  92. "path" : "pages/user/editUser",
  93. "style" :
  94. {
  95. "navigationBarTitleText" : "修改用户信息",
  96. "navigationBarBackgroundColor": "#fff"
  97. }
  98. }
  99. ],
  100. "globalStyle": {
  101. "navigationBarTitleText": "企微助手",
  102. "navigationBarBackgroundColor": "#115296",
  103. "backgroundColor": "#ffffff"
  104. }
  105. // "tabBar": {
  106. // "color": "#7e7e7e",
  107. // "selectedColor": "#115296",
  108. // "borderStyle": "white",
  109. // "backgroundColor": "#ffffff",
  110. // "height": "64px",
  111. // "fontSize":"12px",
  112. // "iconWidth":"18px",
  113. // "spacing": "4px",
  114. // "list": [
  115. // {
  116. // "pagePath": "pages/user/index",
  117. // "iconPath": "/static/images/my.png",
  118. // "selectedIconPath": "/static/images/my_select.png",
  119. // "text": "企微助手"
  120. // }
  121. // ]
  122. // }
  123. }