pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "pages": [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/home/home",
  6. "style": {
  7. "navigationBarTitleText": "首页",
  8. "enablePullDownRefresh": true
  9. }
  10. },
  11. {
  12. "path": "pages/mintir/index",
  13. "style": {
  14. "navigationBarTitleText": "数据检测",
  15. "enablePullDownRefresh": true
  16. }
  17. },
  18. {
  19. "path": "pages/login/index",
  20. "style": {
  21. "navigationBarTitleText": "登录",
  22. "enablePullDownRefresh": true
  23. }
  24. },
  25. {
  26. "path": "pages/homeList/homeList",
  27. "style": {
  28. "navigationBarTitleText": "个人中心",
  29. "enablePullDownRefresh": true
  30. }
  31. }
  32. ],
  33. "tabBar": {
  34. "color": "#919191",
  35. "selectedColor": "#1890FF",
  36. "borderStyle": "black",
  37. "backgroundColor": "#FFFFFF",
  38. "height": "50px",
  39. "fontSize": "10px",
  40. "iconWidth": "24px",
  41. "spacing": "3px",
  42. "list": [{
  43. "pagePath": "pages/mintir/index",
  44. "text": "数据检测",
  45. "iconPath": "static/home.jpg",
  46. "selectedIconPath": "static/homeset.jpg"
  47. }, {
  48. "pagePath": "pages/homeList/homeList",
  49. "text": "我的",
  50. "iconPath": "static/my.jpg",
  51. "selectedIconPath": "static/myset.jpg"
  52. }]
  53. },
  54. "globalStyle": {
  55. "navigationBarTextStyle": "black",
  56. "navigationBarTitleText": "云流药耗",
  57. "navigationBarBackgroundColor": "#90ffe4",
  58. "backgroundColor": "#F8F8F8"
  59. },
  60. "uniIdRouter": {},
  61. "condition": { //模式配置,仅开发期间生效
  62. "current": 0, //当前激活的模式(list 的索引项)
  63. "list": [{
  64. "name": "", //模式名称
  65. "path": "", //启动页面,必选
  66. "query": "" //启动参数,在页面的onLoad函数里面得到
  67. }]
  68. }
  69. }