pages.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
  4. "^wf-(.*)": "@/components/wf-ui/components/wf-$1/wf-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/index/index",
  9. "style": {
  10. "navigationBarTitleText": "辖区概况",
  11. "enablePullDownRefresh": true,
  12. "app-plus": {
  13. "bounce": "vertical",
  14. "titleNView": {
  15. "buttons": [{
  16. "text": "\ue534",
  17. "title":"关闭小程序", //注意:title 为 uni小程序中显示的按钮标题,如果没有设置则显示 text 字段
  18. "fontSrc": "/static/font/DINPro-Bold.otf",
  19. "fontSize": "22px",
  20. "color": "#333"
  21. }]
  22. }
  23. }
  24. }
  25. }, {
  26. "path": "pages/service/service",
  27. "style": {
  28. "navigationBarTitleText": "服务",
  29. "enablePullDownRefresh": false,
  30. "navigationStyle": "custom"
  31. }
  32. },
  33. {
  34. "path": "pages/rich/index",
  35. "style": {
  36. "navigationBarTitleText": "",
  37. "navigationStyle": "custom"
  38. }
  39. }
  40. ],
  41. "globalStyle": {
  42. "navigationBarTextStyle": "black",
  43. "navigationBarTitleText": "",
  44. "navigationBarBackgroundColor": "#fff",
  45. "backgroundColor": "#fff"
  46. },
  47. "tabBar": {
  48. "color": "#AFB8C3",
  49. "selectedColor": "#5086FA",
  50. "borderStyle": "white",
  51. "backgroundColor": "#ffffff",
  52. "list": []
  53. }
  54. }