pages.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. "tabBar": {
  106. "color": "#909399",
  107. "selectedColor": "#000000",
  108. "borderStyle": "black",
  109. "backgroundColor": "#ffffff",
  110. "list": [{
  111. "pagePath": "pages/work/index",
  112. "iconPath": "static/img/tabbar/center.png",
  113. "selectedIconPath": "static/img/tabbar/center_art.png",
  114. "text": "工作台"
  115. }, {
  116. "pagePath": "pages/center/index",
  117. "iconPath": "static/img/tabbar/user.png",
  118. "selectedIconPath": "static/img/tabbar/user_art.png",
  119. "text": "我的"
  120. }]
  121. },
  122. "globalStyle": {
  123. "navigationBarTextStyle": "black",
  124. "navigationBarTitleText": "uni-app",
  125. "navigationBarBackgroundColor": "#F8F8F8",
  126. "backgroundColor": "#F8F8F8",
  127. "app-plus": {
  128. "softinputMode": "adjustResize"
  129. }
  130. },
  131. "easycom": {
  132. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  133. }
  134. }