pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. }
  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. "navigationBarTitleText" : "调配详情",
  23. "navigationStyle" : "custom",
  24. "enablePullDownRefresh" : false
  25. }
  26. },
  27. {
  28. "path" : "pages/edit/edit",
  29. "style" : {
  30. "navigationBarTitleText" : "",
  31. "navigationStyle" : "custom",
  32. "enablePullDownRefresh" : false
  33. }
  34. },
  35. {
  36. "path" : "pages/review/review",
  37. "style" : {
  38. "navigationBarTitleText" : "",
  39. "enablePullDownRefresh" : false,
  40. "navigationStyle" : "custom"
  41. }
  42. },
  43. {
  44. "path" : "components/print-config/print-config",
  45. "style" : {}
  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. "condition" : {
  59. //模式配置,仅开发期间生效
  60. "current" : 0, //当前激活的模式(list 的索引项)
  61. "list" : [
  62. {
  63. "name" : "", //模式名称
  64. "path" : "", //启动页面,必选
  65. "query" : "" //启动参数,在页面的onLoad函数里面得到
  66. }
  67. ]
  68. }
  69. }