pages.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. }
  10. }, {
  11. "path": "pages/menu/menu",
  12. "style": {
  13. "navigationStyle": "default",
  14. "navigationBarTitleText": "应用广场",
  15. "app-plus": {
  16. "titleNView": {
  17. "backgroundImage": "linear-gradient(to top left, #0081ff, #1cbbb4)"
  18. }
  19. },
  20. "enablePullDownRefresh": false
  21. }
  22. }, {
  23. "path": "pages/billlist/billlist",
  24. "style": {
  25. "navigationStyle": "default",
  26. "navigationBarTitleText": "质量反馈单据列表",
  27. "app-plus": {
  28. "titleNView": {
  29. "backgroundImage": "static/BasicsBg.png"
  30. }
  31. },
  32. "enablePullDownRefresh": false
  33. }
  34. }, {
  35. "path": "pages/detail/detail",
  36. "style": {
  37. //navigationStyle属性值为custom时没有导航栏,为default时有
  38. //在本文件 globalStyle 属性里设置为custom无导航栏,在单个页面中设置有导航栏
  39. "navigationStyle": "default",
  40. "navigationBarTitleText": "质量反馈明细",
  41. "app-plus": { //APP端扩展设置
  42. "titleNView": { //原生导航栏配置参数
  43. "backgroundImage": "linear-gradient(to top left, #0081ff, #1cbbb4)"
  44. }
  45. },
  46. "enablePullDownRefresh": false
  47. }
  48. }
  49. ],
  50. "globalStyle": {
  51. "mp-alipay": {
  52. /* 支付宝小程序特有相关 */
  53. "transparentTitle": "always",
  54. "allowsBounceVertical": "NO"
  55. },
  56. "navigationBarBackgroundColor": "#0081ff",
  57. "navigationBarTitleText": "ColorUi for UniApp",
  58. "navigationStyle": "custom",
  59. "navigationBarTextStyle": "white"
  60. },
  61. "usingComponts": true,
  62. "condition": { //模式配置,仅开发期间生效
  63. "current": 0, //当前激活的模式(list 的索引项)
  64. "list": [{
  65. "name": "表单", //模式名称
  66. "path": "", //TODO:“pages/login/login” "pages/component/xxx", //启动页面
  67. "query": "" //启动参数
  68. }]
  69. }
  70. }