pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "首页",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/work/index",
  19. "style": {
  20. "navigationBarTitleText": "工作台",
  21. "navigationStyle": "custom"
  22. }
  23. },
  24. {
  25. "path": "pages/work/user/list",
  26. "style": {
  27. "navigationBarTitleText": "用户管理",
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/work/user/edit",
  33. "style": {
  34. "navigationBarTitleText": "用户详情",
  35. "navigationStyle": "custom"
  36. }
  37. },
  38. {
  39. "path": "pages/work/notice/list",
  40. "style": {
  41. "navigationBarTitleText": "通知公告",
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path": "pages/work/notice/manage",
  47. "style": {
  48. "navigationBarTitleText": "公告管理",
  49. "navigationStyle": "custom"
  50. }
  51. },
  52. {
  53. "path": "pages/work/notice/detail",
  54. "style": {
  55. "navigationBarTitleText": "公告详情",
  56. "navigationStyle": "custom"
  57. }
  58. },
  59. {
  60. "path": "pages/work/notice/edit",
  61. "style": {
  62. "navigationBarTitleText": "公告详情",
  63. "navigationStyle": "custom"
  64. }
  65. },
  66. {
  67. "path": "pages/center/index",
  68. "style": {
  69. "navigationBarTitleText": "我的",
  70. "navigationStyle": "custom"
  71. }
  72. },
  73. {
  74. "path": "pages/center/profile",
  75. "style": {
  76. "navigationBarTitleText": "个人资料",
  77. "navigationStyle": "custom"
  78. }
  79. },
  80. {
  81. "path": "pages/center/log",
  82. "style": {
  83. "navigationBarTitleText": "操作日志",
  84. "navigationStyle": "custom"
  85. }
  86. },
  87. {
  88. "path": "pages/work/approve/list",
  89. "style": {
  90. "navigationBarTitleText": "审批",
  91. "navigationBarBackgroundColor": "#FFFFFF",
  92. "enablePullDownRefresh": true,
  93. "navigationStyle": "custom"
  94. }
  95. },
  96. {
  97. "path": "pages/work/approve/bargainDtl",
  98. "style": {
  99. "navigationBarTitleText": "议价详情",
  100. "navigationBarBackgroundColor": "#FFFFFF",
  101. "navigationStyle": "custom"
  102. }
  103. },
  104. {
  105. "path": "pages/work/approve/contractDtl",
  106. "style": {
  107. "navigationBarTitleText": "合同详情",
  108. "navigationBarBackgroundColor": "#FFFFFF",
  109. "navigationStyle": "custom"
  110. }
  111. },
  112. {
  113. "path": "pages/work/approve/contractAduit",
  114. "style": {
  115. "navigationBarTitleText": "合同审批履历",
  116. "navigationBarBackgroundColor": "#FFFFFF",
  117. "navigationStyle": "custom"
  118. }
  119. },
  120. {
  121. "path": "pages/work/approve/bargainAduit",
  122. "style": {
  123. "navigationBarTitleText": "议价审批履历",
  124. "navigationBarBackgroundColor": "#FFFFFF",
  125. "navigationStyle": "custom"
  126. }
  127. }
  128. ],
  129. "tabBar": {
  130. "color": "#909399",
  131. "selectedColor": "#000000",
  132. "borderStyle": "black",
  133. "backgroundColor": "#ffffff",
  134. "list": [{
  135. "pagePath": "pages/work/index",
  136. "iconPath": "static/img/tabbar/center.png",
  137. "selectedIconPath": "static/img/tabbar/center_art.png",
  138. "text": "工作台"
  139. }, {
  140. "pagePath": "pages/center/index",
  141. "iconPath": "static/img/tabbar/user.png",
  142. "selectedIconPath": "static/img/tabbar/user_art.png",
  143. "text": "我的"
  144. }]
  145. },
  146. "globalStyle": {
  147. "navigationBarTextStyle": "black",
  148. "navigationBarTitleText": "uni-app",
  149. "navigationBarBackgroundColor": "#F8F8F8",
  150. "backgroundColor": "#F8F8F8",
  151. "app-plus": {
  152. "softinputMode": "adjustResize"
  153. }
  154. },
  155. "easycom": {
  156. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  157. }
  158. }