pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. {
  2. "pages": [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/login/login",
  6. "style": {
  7. "navigationStyle": "custom" // 隐藏系统导航栏
  8. }
  9. }
  10. ,{
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationStyle": "custom" // 隐藏系统导航栏
  14. }
  15. },
  16. {
  17. "path" : "pages/commonseal/addCommon",
  18. "style" : {
  19. "navigationBarTitleText": "新增拟稿申请"
  20. }
  21. },
  22. {
  23. "path" : "pages/commonseal/examineCommon",
  24. "style" : {
  25. "navigationBarTitleText": "拟稿审批"
  26. }
  27. },
  28. {
  29. "path" : "pages/commonseal/commonInfo",
  30. "style" : {
  31. "navigationBarTitleText": "拟稿详情"
  32. }
  33. },
  34. {
  35. "path" : "pages/commonseal/commonList",
  36. "style" : {
  37. "navigationBarTitleText": "列表"
  38. }
  39. },
  40. {
  41. "path" : "pages/commonseal/statistics",
  42. "style" : {
  43. "navigationBarTitleText": "用章统计"
  44. }
  45. },
  46. {
  47. "path" : "pages/fileTransmit/addFileTransmit",
  48. "style" : {
  49. "navigationBarTitleText": "新增文件传阅卡"
  50. }
  51. },
  52. {
  53. "path" : "pages/fileTransmit/examineFile",
  54. "style" : {
  55. "navigationBarTitleText": "审批页"
  56. }
  57. },
  58. {
  59. "path" : "pages/fileTransmit/fileInfo",
  60. "style" : {
  61. "navigationBarTitleText": "公文详情"
  62. }
  63. },
  64. {
  65. "path" : "pages/fileTransmit/fileTransmitList",
  66. "style" : {
  67. "navigationBarTitleText": "列表"
  68. }
  69. },
  70. {
  71. "path" : "pages/fileTransmit/statistics",
  72. "style" : {
  73. "navigationBarTitleText": "公文统计"
  74. }
  75. },
  76. {
  77. "path" : "pages/pdfPreview/pdfPreview",
  78. "style" : {
  79. "navigationBarTitleText": "预览"
  80. }
  81. },
  82. {
  83. "path": "pages/user/setting/password/password",
  84. "style": {
  85. "navigationBarTitleText": "修改密码"
  86. }
  87. },
  88. {
  89. "path": "pages/user/setting/signature/signature",
  90. "style": {
  91. "navigationBarTitleText": "签名"
  92. }
  93. }
  94. ],
  95. "globalStyle": {
  96. "mp-alipay": {
  97. /* 支付宝小程序特有相关 */
  98. "transparentTitle": "always",
  99. "allowsBounceVertical": "NO"
  100. },
  101. "usingComponents": {
  102. "ly-tree-node": "/components/ly-tree/ly-tree-node"
  103. },
  104. "h5":{
  105. "navigationStyle": "custom"
  106. },
  107. "app-plus":{
  108. "navigationBarBackgroundColor": "#36a7f3",
  109. "navigationBarTextStyle": "white"
  110. }
  111. },
  112. "usingComponts": true,
  113. "condition": { //模式配置,仅开发期间生效
  114. "current": 0, //当前激活的模式(list 的索引项)
  115. "list": [{
  116. "name": "表单", //模式名称
  117. "path": "pages/index/index", //启动页面
  118. "query": "" //启动参数
  119. }
  120. ]
  121. }
  122. }