pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/login/login",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "",
  8. "enablePullDownRefresh": false,
  9. "navigationStyle": "custom"
  10. }
  11. },
  12. {
  13. "path": "pages/index/index",
  14. "style": {
  15. // "navigationBarTitleText": "uni-app",
  16. "navigationStyle": "custom"
  17. }
  18. }
  19. ,{
  20. "path" : "pages/detail/detail",
  21. "style" :
  22. {
  23. "navigationBarTitleText": "调配详情",
  24. "navigationStyle": "custom",
  25. "enablePullDownRefresh": false
  26. }
  27. }
  28. ,{
  29. "path" : "pages/edit/edit",
  30. "style" :
  31. {
  32. "navigationBarTitleText": "",
  33. "navigationStyle": "custom",
  34. "enablePullDownRefresh": false
  35. }
  36. }
  37. ,{
  38. "path" : "pages/review/review",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "",
  42. "enablePullDownRefresh": false,
  43. "navigationStyle": "custom"
  44. }
  45. }
  46. ],
  47. "globalStyle": {
  48. "navigationBarTextStyle": "black",
  49. "navigationBarTitleText": "中药处方煎配",
  50. "navigationBarBackgroundColor": "#F8F8F8",
  51. "backgroundColor": "#F8F8F8",
  52. "rpxCalcMaxDeviceWidth": 0,
  53. // "rpxCalcIncludeWidth": 2000,
  54. "rpxCalcBaseDeviceWidth": 686
  55. },
  56. "uniIdRouter": {}
  57. }