pages.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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/print/print",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "",
  42. "enablePullDownRefresh": false
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "中药处方煎配",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8",
  51. "rpxCalcMaxDeviceWidth": 0,
  52. // "rpxCalcIncludeWidth": 2000,
  53. "rpxCalcBaseDeviceWidth": 1200
  54. },
  55. "uniIdRouter": {}
  56. }