pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. "enablePullDownRefresh": true
  18. }
  19. }
  20. ,{
  21. "path" : "pages/detail/detail",
  22. "style" :
  23. {
  24. "navigationBarTitleText": "调配详情",
  25. "navigationStyle": "custom",
  26. "enablePullDownRefresh": false
  27. }
  28. }
  29. ,{
  30. "path" : "pages/edit/edit",
  31. "style" :
  32. {
  33. "navigationBarTitleText": "",
  34. "navigationStyle": "custom",
  35. "enablePullDownRefresh": false
  36. }
  37. }
  38. ,{
  39. "path" : "pages/review/review",
  40. "style" :
  41. {
  42. "navigationBarTitleText": "",
  43. "enablePullDownRefresh": false,
  44. "navigationStyle": "custom"
  45. }
  46. }
  47. ],
  48. "globalStyle": {
  49. "navigationBarTextStyle": "black",
  50. "navigationBarTitleText": "中药处方煎配",
  51. "navigationBarBackgroundColor": "#F8F8F8",
  52. "backgroundColor": "#F8F8F8",
  53. "rpxCalcMaxDeviceWidth": 0,
  54. // "rpxCalcIncludeWidth": 2000,
  55. "rpxCalcBaseDeviceWidth": 686
  56. },
  57. "uniIdRouter": {}
  58. }