开封医疗随访移动端

pages.json 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/login/login",
  11. "style": {}
  12. },
  13. {
  14. "path": "pages/login/forget",
  15. "style": {}
  16. }, {
  17. "path": "pages/login/register",
  18. "style": {}
  19. },
  20. {
  21. "path" : "pages/personal/personal",
  22. "style" :
  23. {
  24. "navigationBarTitleText" : "我的",
  25. "enablePullDownRefresh" : false
  26. }
  27. },
  28. {
  29. "path" : "pages/notice/notice",
  30. "style" :
  31. {
  32. "navigationBarTitleText" : "公告列表"
  33. }
  34. },
  35. {
  36. "path" : "pages/addressBook/addressBook",
  37. "style" :
  38. {
  39. "navigationBarTitleText" : "通讯录"
  40. }
  41. },
  42. {
  43. "path" : "pages/orderList/orderList",
  44. "style" :
  45. {
  46. "navigationBarTitleText" : "工单列表",
  47. // "enablePullDownRefresh" : false,
  48. "onReachBottomDistance": 50
  49. }
  50. },
  51. {
  52. "path" : "pages/orderDetail/orderDetail",
  53. "style" :
  54. {
  55. "navigationBarTitleText" : "工单详情",
  56. "enablePullDownRefresh" : false
  57. }
  58. },
  59. {
  60. "path" : "pages/personal/editPass/editPass",
  61. "style" :
  62. {
  63. "navigationBarTitleText" : "修改密码"
  64. }
  65. }
  66. ],
  67. "globalStyle": {
  68. "navigationBarTextStyle": "black",
  69. "navigationBarTitleText": "人医服务",
  70. "navigationBarBackgroundColor": "#F8F8F8",
  71. "backgroundColor": "#F8F8F8"
  72. },
  73. "tabBar": {
  74. "color": "#7e837d",
  75. "selectedColor": "#0066ec",
  76. "backgroundColor": "#FFFFFF",
  77. "borderStyle": "black",
  78. "list": [
  79. {
  80. "pagePath": "pages/index/index",
  81. "iconPath": "./static/task.png",
  82. "selectedIconPath": "./static/task_active.png",
  83. "text": "首页"
  84. },
  85. // {
  86. // "pagePath": "pages/notice/notice",
  87. // "iconPath": "./static/workbench.png",
  88. // "selectedIconPath": "./static/workbench_active.png",
  89. // "text": "公告"
  90. // },
  91. // {
  92. // "pagePath": "pages/addressBook/addressBook",
  93. // "iconPath": "./static/addressBook.png",
  94. // "selectedIconPath": "./static/addressBook_active.png",
  95. // "text": "通讯录"
  96. // },
  97. {
  98. "pagePath": "pages/personal/personal",
  99. "iconPath": "./static/person.png",
  100. "selectedIconPath": "./static/person_active.png",
  101. "text": "我的"
  102. }
  103. ]
  104. // "midButton": {
  105. // "iconPath": "./static/workbench.png",
  106. // "selectedIconPath": "./static/workbench_active.png",
  107. // "width": "80px",
  108. // "height": "50px",
  109. // "text": "工作台"
  110. // }
  111. },
  112. "uniIdRouter": {}
  113. }