pages.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "pages" : [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path" : "pages/login/login",
  6. "style" : {
  7. "navigationBarTitleText" : "",
  8. "enablePullDownRefresh" : false,
  9. "navigationStyle" : "custom"
  10. // "enablePullDownRefresh" : true
  11. }
  12. },
  13. {
  14. "path" : "pages/index/index",
  15. "style" : {
  16. // "navigationBarTitleText": "uni-app",
  17. "navigationStyle" : "custom"
  18. }
  19. },
  20. {
  21. "path" : "pages/detail/detail",
  22. "style" : {
  23. "navigationBarTitleText" : "调配详情",
  24. "navigationStyle" : "custom",
  25. "enablePullDownRefresh" : false
  26. }
  27. },
  28. {
  29. "path" : "pages/edit/edit",
  30. "style" : {
  31. "navigationBarTitleText" : "",
  32. "navigationStyle" : "custom",
  33. "enablePullDownRefresh" : false
  34. }
  35. },
  36. {
  37. "path" : "pages/review/review",
  38. "style" : {
  39. "navigationBarTitleText" : "",
  40. "enablePullDownRefresh" : false,
  41. "navigationStyle" : "custom"
  42. }
  43. },
  44. {
  45. "path" : "components/print-config/print-config",
  46. "style" : {}
  47. }
  48. ],
  49. "globalStyle" : {
  50. "navigationBarTextStyle" : "black",
  51. "navigationBarTitleText" : "中药处方煎配",
  52. "navigationBarBackgroundColor" : "#F8F8F8",
  53. "backgroundColor" : "#F8F8F8",
  54. "rpxCalcMaxDeviceWidth" : 0,
  55. // "rpxCalcIncludeWidth": 2000,
  56. "rpxCalcBaseDeviceWidth" : 686
  57. },
  58. "uniIdRouter" : {},
  59. "window": {
  60. "navigationStyle" : "custom"
  61. },
  62. "condition" : {
  63. //模式配置,仅开发期间生效
  64. "current" : 0, //当前激活的模式(list 的索引项)
  65. "list" : [
  66. {
  67. "name" : "", //模式名称
  68. "path" : "", //启动页面,必选
  69. "query" : "" //启动参数,在页面的onLoad函数里面得到
  70. }
  71. ]
  72. }
  73. }