酷炫直播运营系统小程序版本

pages.json 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/index/index",
  5. "style" :
  6. {
  7. "navigationStyle": "custom",
  8. "navigationBarTitleText": "",
  9. "enablePullDownRefresh": true
  10. }
  11. },
  12. {
  13. "path" : "pages/addExpense/addExpense",
  14. "style": {
  15. "navigationBarTitleText": "添加报销",
  16. "enablePullDownRefresh": true
  17. }
  18. },
  19. {
  20. "path" : "pages/liveSituation/liveSituation",
  21. "style" :
  22. {
  23. "navigationBarTitleText": "直播情况",
  24. "enablePullDownRefresh": true
  25. }
  26. },
  27. {
  28. "path" : "pages/mine/mine",
  29. "style" :
  30. {
  31. "navigationStyle": "custom",
  32. "navigationBarTitleText": "",
  33. "enablePullDownRefresh": false
  34. }
  35. },
  36. {
  37. "path":"pages/login/login",
  38. "style": {
  39. "navigationStyle": "custom",//自定义头部
  40. "navigationBarTitleText": "授权登录"
  41. }
  42. }
  43. ,{
  44. "path" : "pages/dateplan/index",
  45. "style" :
  46. {
  47. "navigationStyle": "custom",
  48. "navigationBarTitleText": "直播计划",
  49. "enablePullDownRefresh": false
  50. }
  51. }
  52. ,{
  53. "path" : "pages/selfInfo/selfInfo",
  54. "style" :
  55. {
  56. "navigationBarTitleText": "基础报销信息",
  57. "enablePullDownRefresh": false
  58. }
  59. }
  60. ,{
  61. "path" : "pages/addExpenseForm/addExpenseForm",
  62. "style" :
  63. {
  64. "navigationBarTitleText": "添加直播报销",
  65. "enablePullDownRefresh": false
  66. }
  67. }
  68. ,{
  69. "path" : "pages/dateplan/editPlan",
  70. "style" :
  71. {
  72. "navigationBarTitleText": "编辑直播计划",
  73. "enablePullDownRefresh": false
  74. }
  75. }
  76. ,{
  77. "path" : "pages/reimbursementList/reimbursementList",
  78. "style" :
  79. {
  80. "navigationBarTitleText": "我的报销",
  81. "enablePullDownRefresh": false
  82. }
  83. }
  84. ,{
  85. "path" : "pages/reimbursementList/submitApply",
  86. "style" :
  87. {
  88. "navigationBarTitleText": "报销申请",
  89. "enablePullDownRefresh": false
  90. }
  91. }
  92. ,{
  93. "path" : "pages/reimbursementList/audit",
  94. "style" :
  95. {
  96. "navigationBarTitleText": "报销审核",
  97. "enablePullDownRefresh": false
  98. }
  99. } ,{
  100. "path" : "pages/addExpenseFormElse/addExpenseForm",
  101. "style" :
  102. {
  103. "navigationBarTitleText": "添加其他报销",
  104. "enablePullDownRefresh": false
  105. }
  106. }
  107. ],
  108. // "subPackages":[{
  109. // "root":"pages/subPackages",
  110. // "pages":[
  111. // {
  112. // "path" : "liveDetail/liveDetail",
  113. // "style" :{
  114. // "navigationBarTitleText": "",
  115. // "enablePullDownRefresh": false
  116. // }
  117. // }
  118. // ]
  119. // }],
  120. "tabBar": {
  121. // "custom": true,
  122. "color": "#AEB2B7",
  123. "selectedColor": "#446EF6",
  124. "borderStyle": "black",
  125. "backgroundColor": "#202020",
  126. "list": [{
  127. "pagePath": "pages/index/index",
  128. "iconPath": "/static/tabBar/home.png",
  129. "selectedIconPath": "/static/tabBar/home_yes.png",
  130. "text": "首页"
  131. },
  132. {
  133. "pagePath": "pages/dateplan/index",
  134. "iconPath": "/static/tabBar/dateplan.png",
  135. "selectedIconPath": "/static/tabBar/dateplan_yes.png",
  136. "text": "直播计划"
  137. },
  138. {
  139. "pagePath": "pages/mine/mine",
  140. "iconPath": "/static/tabBar/wode.png",
  141. "selectedIconPath": "/static/tabBar/wode_yes.png",
  142. "text": "我的"
  143. }
  144. ]
  145. },
  146. "globalStyle": {
  147. "navigationBarTextStyle": "white",
  148. "navigationBarTitleText": "问星数据-抖音版",
  149. "navigationBarBackgroundColor": "#333947",
  150. "backgroundColor": "#333947"
  151. }
  152. }