pages.json 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/report/report",
  5. "style": {
  6. "navigationBarTitleText": "FICC研报",
  7. "enablePullDownRefresh": true
  8. }
  9. },
  10. {
  11. "path": "pages/buy/buy",
  12. "style": {
  13. "navigationBarTitleText": "已购",
  14. "enablePullDownRefresh": true
  15. }
  16. },
  17. {
  18. "path": "pages/chart/chart",
  19. "style": {
  20. "navigationBarTitleText": "ETA图库",
  21. "enablePullDownRefresh": true
  22. }
  23. },
  24. {
  25. "path": "pages/activity/activity",
  26. "style": {
  27. "navigationBarTitleText": "活动",
  28. "enablePullDownRefresh": true
  29. }
  30. },
  31. {
  32. "path": "pages/user/user",
  33. "style": {
  34. "navigationBarTitleText": "我的"
  35. }
  36. },
  37. {
  38. "path": "pages/question/question",
  39. "style": {
  40. "navigationBarTitleText": "问答社区",
  41. "enablePullDownRefresh": true
  42. }
  43. },
  44. {
  45. "path":"pages/login",
  46. "style":{
  47. "navigationBarTitleText":"绑定联系方式"
  48. }
  49. },
  50. {
  51. "path": "pages/pc",
  52. "style":{
  53. "navigationBarTitleText": ""
  54. }
  55. }
  56. ],
  57. "subPackages":[
  58. // 活动模块
  59. {
  60. "root":"pages-activity",
  61. "pages":[
  62. {
  63. "path":"detail",
  64. "style":{
  65. "navigationBarTitleText":"活动详情"
  66. }
  67. },
  68. {
  69. "path":"noAuthority",
  70. "style":{
  71. "navigationBarTitleText":"活动详情"
  72. }
  73. },
  74. {
  75. "path": "reportDetail",
  76. "style":{
  77. "navigationBarTitleText": "报告详情"
  78. }
  79. }
  80. ]
  81. },
  82. // 申请权限模块
  83. {
  84. "root":"pages-applyPermission",
  85. "pages": [
  86. {
  87. "path":"applyPermission",
  88. "style":{
  89. "navigationBarTitleText":"申请试用"
  90. }
  91. },
  92. {
  93. "path":"selectVariety",
  94. "style":{
  95. "navigationBarTitleText":"选择品种"
  96. }
  97. },
  98. {
  99. "path":"applyResult",
  100. "style":{
  101. "navigationBarTitleText":"申请结果"
  102. }
  103. }
  104. ]
  105. },
  106. // 用户模块
  107. {
  108. "root": "pages-user",
  109. "pages": [
  110. {
  111. "path": "permissionList",
  112. "style":{
  113. "navigationBarTitleText": "品种权限"
  114. }
  115. },
  116. {
  117. "path": "messageList",
  118. "style":{
  119. "navigationBarTitleText": "消息通知",
  120. "enablePullDownRefresh": true
  121. }
  122. },
  123. {
  124. "path": "mysetting",
  125. "style":{
  126. "navigationBarTitleText": "我的设置"
  127. }
  128. }
  129. ]
  130. },
  131. // 图库模块
  132. {
  133. "root": "pages-chart",
  134. "pages": [
  135. {
  136. "path": "allTypes",
  137. "style":{
  138. "navigationBarTitleText": "图表分类"
  139. }
  140. },
  141. {
  142. "path": "chartDetail",
  143. "style":{
  144. "navigationBarTitleText": "图表详情"
  145. }
  146. }
  147. ]
  148. },
  149. //已购模块
  150. {
  151. "root": "pages-buy",
  152. "pages": [
  153. {
  154. "path":"detail",
  155. "style":{
  156. "navigationBarTitleText":""
  157. }
  158. }
  159. ]
  160. },
  161. // 研报模块
  162. {
  163. "root": "pages-report",
  164. "pages": [
  165. {
  166. "path":"classify",
  167. "style":{
  168. "navigationBarTitleText":"FICC研报分类",
  169. "enablePullDownRefresh": true
  170. }
  171. },
  172. {
  173. "path":"search",
  174. "style":{
  175. "navigationBarTitleText":"FICC研报"
  176. }
  177. },
  178. // 专栏列表 classifyId
  179. {
  180. "path": "specialColumn/list",
  181. "style":{
  182. "enablePullDownRefresh": true
  183. }
  184. },
  185. // 专栏详情 columnId
  186. {
  187. "path": "specialColumn/detail",
  188. "style":{
  189. "enablePullDownRefresh": true
  190. }
  191. },
  192. // 报告列表 classifyId
  193. {
  194. "path": "reportList",
  195. "style":{
  196. "enablePullDownRefresh": true
  197. }
  198. },
  199. // 报告列表搜索页
  200. {
  201. "path": "reportListSearch"
  202. },
  203. //报告详情
  204. {
  205. "path": "reportDetail"
  206. },
  207. // 章节详情
  208. {
  209. "path": "chapterDetail"
  210. },
  211. //ficc介绍页面
  212. {
  213. "path": "ficcService"
  214. }
  215. ]
  216. },
  217. // 问答模块
  218. {
  219. "root": "pages-question",
  220. "pages": [
  221. {
  222. "path": "answerList",
  223. "style":{
  224. "navigationBarTitleText": "我的问答",
  225. "enablePullDownRefresh": true
  226. }
  227. },
  228. {
  229. "path": "answerDetail",
  230. "style":{
  231. "navigationBarTitleText": "问答详情"
  232. }
  233. },
  234. {
  235. "path": "hasQuestion",
  236. "style":{
  237. "navigationBarTitleText": "我要提问"
  238. }
  239. }
  240. ]
  241. }
  242. ],
  243. "tabBar": {
  244. "custom": true,
  245. "color": "#1F243A",
  246. "selectedColor": "#E3B377",
  247. "list": [
  248. {
  249. "pagePath": "pages/report/report",
  250. "text": "报告",
  251. "iconPath": "./static/tabbar/report.png",
  252. "selectedIconPath": "./static/tabbar/report-s.png"
  253. },
  254. {
  255. "pagePath": "pages/buy/buy",
  256. "text": "已购",
  257. "iconPath": "./static/tabbar/buy.png",
  258. "selectedIconPath": "./static/tabbar/buy-s.png"
  259. },
  260. {
  261. "pagePath": "pages/chart/chart",
  262. "text": "图库",
  263. "iconPath": "./static/tabbar/chart.png",
  264. "selectedIconPath": "./static/tabbar/chart-s.png"
  265. },
  266. {
  267. "pagePath": "pages/activity/activity",
  268. "text": "活动",
  269. "iconPath": "./static/tabbar/activity.png",
  270. "selectedIconPath": "./static/tabbar/activity-s.png"
  271. },
  272. /* {
  273. "pagePath": "pages/user/user",
  274. "text": "我的",
  275. "iconPath": "./static/tabbar/user.png",
  276. "selectedIconPath": "./static/tabbar/user-s.png"
  277. }, */
  278. {
  279. "pagePath": "pages/question/question",
  280. "text": "问答",
  281. "iconPath": "./static/tabbar/question.png",
  282. "selectedIconPath": "./static/tabbar/question-s.png"
  283. }
  284. ]
  285. },
  286. "globalStyle": {
  287. "navigationBarTextStyle": "black",
  288. "navigationBarTitleText": "弘则研报",
  289. "navigationBarBackgroundColor": "#FFFFFF",
  290. "backgroundColor": "#FFFFFF",
  291. "usingComponents":{
  292. "drag":"/wxcomponents/drag/index",
  293. "van-button":"/wxcomponents/vant/button/index",
  294. "van-toast":"/wxcomponents/vant/toast/index",
  295. "van-popup":"/wxcomponents/vant/popup/index",
  296. "van-search": "/wxcomponents/vant/search/index",
  297. "van-sticky": "/wxcomponents/vant/sticky/index",
  298. "van-field": "/wxcomponents/vant/field/index",
  299. "van-icon": "/wxcomponents/vant/icon/index",
  300. "van-radio": "/wxcomponents/vant/radio/index",
  301. "van-tab": "/wxcomponents/vant/tab/index",
  302. "van-tabs": "/wxcomponents/vant/tabs/index",
  303. "van-count-down": "/wxcomponents/vant/count-down/index",
  304. "van-empty": "/wxcomponents/vant/empty/index",
  305. "van-checkbox": "/wxcomponents/vant/checkbox/index",
  306. "van-transition": "/wxcomponents/vant/transition/index",
  307. "van-collapse": "/wxcomponents/vant/collapse/index",
  308. "van-collapse-item": "/wxcomponents/vant/collapse-item/index",
  309. "van-tag": "/wxcomponents/vant/tag/index",
  310. "van-row": "/wxcomponents/vant/row/index",
  311. "van-col": "/wxcomponents/vant/col/index",
  312. "van-progress": "/wxcomponents/vant/progress/index",
  313. "van-dialog": "/wxcomponents/vant/dialog/index"
  314. }
  315. }
  316. }