pages.json 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/report/report",
  5. "style": {
  6. "navigationBarTitleText": "FICC研报",
  7. "navigationStyle": "custom",
  8. "enablePullDownRefresh": true
  9. }
  10. },
  11. {
  12. "path": "pages/buy/buy",
  13. "style": {
  14. "navigationBarTitleText": "已购",
  15. "enablePullDownRefresh": true
  16. }
  17. },
  18. {
  19. "path": "pages/chart/chart",
  20. "style": {
  21. "navigationBarTitleText": "图库",
  22. "enablePullDownRefresh": true
  23. }
  24. },
  25. {
  26. "path": "pages/activity/activity",
  27. "style": {
  28. "navigationBarTitleText": "活动",
  29. "enablePullDownRefresh": true
  30. }
  31. },
  32. {
  33. "path": "pages/user/user",
  34. "style": {
  35. "navigationBarTitleText": "我的"
  36. }
  37. },
  38. {
  39. "path": "pages/question/question",
  40. "style": {
  41. "navigationBarTitleText": "问答社区",
  42. "enablePullDownRefresh": true
  43. }
  44. },
  45. {
  46. "path":"pages/login",
  47. "style":{
  48. "navigationBarTitleText":"绑定联系方式"
  49. }
  50. },
  51. {
  52. "path": "pages/pc",
  53. "style":{
  54. "navigationBarTitleText": ""
  55. }
  56. },
  57. {
  58. "path": "pages/pricedriven/pricedriven",
  59. "style":{
  60. "navigationBarTitleText":"价格驱动"
  61. }
  62. },
  63. {
  64. "path": "pages/video/videoList",
  65. "style": {
  66. "navigationBarTitleText": "视频社区",
  67. "enablePullDownRefresh": true
  68. }
  69. },
  70. {
  71. "path": "pages/video/videoSearch",
  72. "style": {
  73. "navigationBarTitleText": "视频社区"
  74. }
  75. },
  76. {
  77. "path":"pages/voice/voice",
  78. "style": {
  79. "navigationBarTitleText": "语音播报",
  80. "enablePullDownRefresh": true
  81. }
  82. }
  83. ],
  84. "subPackages":[
  85. // 活动模块
  86. {
  87. "root":"pages-activity",
  88. "pages":[
  89. {
  90. "path":"detail",
  91. "style":{
  92. "navigationBarTitleText":"活动详情"
  93. }
  94. },
  95. {
  96. "path":"noAuthority",
  97. "style":{
  98. "navigationBarTitleText":"活动详情"
  99. }
  100. },
  101. {
  102. "path": "reportDetail",
  103. "style":{
  104. "navigationBarTitleText": "报告详情"
  105. }
  106. }
  107. ]
  108. },
  109. // 申请权限模块
  110. {
  111. "root":"pages-applyPermission",
  112. "pages": [
  113. {
  114. "path":"applyPermission",
  115. "style":{
  116. "navigationBarTitleText":"申请试用"
  117. }
  118. },
  119. {
  120. "path":"selectVariety",
  121. "style":{
  122. "navigationBarTitleText":"选择品种"
  123. }
  124. },
  125. {
  126. "path":"applyResult",
  127. "style":{
  128. "navigationBarTitleText":"申请结果"
  129. }
  130. }
  131. ]
  132. },
  133. // 用户模块
  134. {
  135. "root": "pages-user",
  136. "pages": [
  137. {
  138. "path": "permissionList",
  139. "style":{
  140. "navigationBarTitleText": "品种权限"
  141. }
  142. },
  143. {
  144. "path": "messageList",
  145. "style":{
  146. "navigationBarTitleText": "消息通知",
  147. "enablePullDownRefresh": true
  148. }
  149. },
  150. {
  151. "path": "mysetting",
  152. "style":{
  153. "navigationBarTitleText": "我的设置"
  154. }
  155. }
  156. ]
  157. },
  158. // 图库模块
  159. {
  160. "root": "pages-chart",
  161. "pages": [
  162. {
  163. "path": "allTypes",
  164. "style":{
  165. "navigationBarTitleText": "图表分类"
  166. }
  167. },
  168. {
  169. "path": "chartDetail",
  170. "style":{
  171. "navigationBarTitleText": "图表详情"
  172. }
  173. }
  174. ]
  175. },
  176. //已购模块
  177. {
  178. "root": "pages-buy",
  179. "pages": [
  180. {
  181. "path":"detail",
  182. "style":{
  183. "navigationBarTitleText":""
  184. }
  185. }
  186. ]
  187. },
  188. // 研报模块
  189. {
  190. "root": "pages-report",
  191. "pages": [
  192. {
  193. "path":"classify",
  194. "style":{
  195. "navigationBarTitleText":"FICC研报分类",
  196. "enablePullDownRefresh": true
  197. }
  198. },
  199. {
  200. "path":"search",
  201. "style":{
  202. "navigationBarTitleText":"FICC研报"
  203. }
  204. },
  205. // 专栏列表 classifyId
  206. {
  207. "path": "specialColumn/list",
  208. "style":{
  209. "enablePullDownRefresh": true
  210. }
  211. },
  212. // 专栏详情 columnId
  213. {
  214. "path": "specialColumn/detail",
  215. "style":{
  216. "enablePullDownRefresh": true
  217. }
  218. },
  219. // 报告列表 classifyId
  220. {
  221. "path": "reportList",
  222. "style":{
  223. "enablePullDownRefresh": true
  224. }
  225. },
  226. // 报告列表搜索页
  227. {
  228. "path": "reportListSearch"
  229. },
  230. //报告详情
  231. {
  232. "path": "reportDetail"
  233. },
  234. // 章节详情
  235. {
  236. "path": "chapterDetail"
  237. },
  238. //ficc介绍页面
  239. {
  240. "path": "ficcService"
  241. },
  242. //预览图片
  243. {
  244. "path":"previewImage",
  245. "style":{
  246. "navigationStyle": "custom"
  247. }
  248. },
  249. //按用户有权限品种分的报告列表页
  250. {
  251. "path": "reportForVariety/list",
  252. "style":{
  253. "enablePullDownRefresh": true
  254. }
  255. }
  256. ]
  257. },
  258. // 问答模块
  259. {
  260. "root": "pages-question",
  261. "pages": [
  262. {
  263. "path": "answerList",
  264. "style":{
  265. "navigationBarTitleText": "我的问答",
  266. "enablePullDownRefresh": true
  267. }
  268. },
  269. {
  270. "path": "answerDetail",
  271. "style":{
  272. "navigationBarTitleText": "问答详情"
  273. }
  274. },
  275. {
  276. "path": "hasQuestion",
  277. "style":{
  278. "navigationBarTitleText": "我要提问"
  279. }
  280. }
  281. ]
  282. },
  283. // 沙盘图
  284. {
  285. "root": "pages-sandTable",
  286. "pages": [
  287. {
  288. "path": "sandTable",
  289. "style":{
  290. "navigationBarTitleText": "沙盘推演",
  291. "enablePullDownRefresh": true
  292. }
  293. }
  294. ]
  295. },
  296. //语音播放模块
  297. {
  298. "root":"pages-voice",
  299. "pages": [
  300. {
  301. "path": "addVoice",
  302. "style":{
  303. "navigationBarTitleText": "新建语音"
  304. }
  305. },
  306. {
  307. "path": "voiceDetail",
  308. "style":{
  309. "navigationBarTitleText": "播报详情"
  310. }
  311. },
  312. {
  313. "path": "myVoice",
  314. "style":{
  315. "navigationBarTitleText": "我的语音",
  316. "enablePullDownRefresh": true
  317. }
  318. }
  319. ]
  320. },
  321. //线上路演模块
  322. {
  323. "root":"pages-roadShow",
  324. "pages":[
  325. {
  326. "path":"video/list",
  327. "style": {
  328. "navigationBarTitleText": "线上路演",
  329. "enablePullDownRefresh": true
  330. }
  331. },
  332. {
  333. "path":"video/search",
  334. "style": {
  335. "navigationBarTitleText": "线上路演"
  336. }
  337. }
  338. ]
  339. }
  340. ],
  341. "tabBar": {
  342. "custom": true,
  343. "color": "#1F243A",
  344. "selectedColor": "#E3B377",
  345. "list": [
  346. {
  347. "pagePath": "pages/report/report",
  348. "text": "首页",
  349. "iconPath": "./static/tabbar/report.png",
  350. "selectedIconPath": "./static/tabbar/report-s.png"
  351. },
  352. {
  353. "pagePath": "pages/pricedriven/pricedriven",
  354. "text": "价格驱动",
  355. "iconPath": "./static/tabbar/price.png",
  356. "selectedIconPath": "./static/tabbar/price-s.png"
  357. },
  358. {
  359. "pagePath": "pages/video/videoList",
  360. "text": "视频社区",
  361. "iconPath": "./static/tabbar/video.png",
  362. "selectedIconPath": "./static/tabbar/video-s.png"
  363. },
  364. {
  365. "pagePath": "pages/question/question",
  366. "text": "问答",
  367. "iconPath": "./static/tabbar/question.png",
  368. "selectedIconPath": "./static/tabbar/question-s.png"
  369. },
  370. {
  371. "pagePath": "pages/voice/voice",
  372. "text": "语音播报",
  373. "iconPath": "./static/tabbar/voice.png",
  374. "selectedIconPath": "./static/tabbar/voice-s.png"
  375. }
  376. ]
  377. },
  378. "globalStyle": {
  379. "navigationBarTextStyle": "black",
  380. "navigationBarTitleText": "弘则研报",
  381. "navigationBarBackgroundColor": "#FFFFFF",
  382. "backgroundColor": "#FFFFFF",
  383. "usingComponents":{
  384. "drag":"/wxcomponents/drag/index",
  385. "van-button":"/wxcomponents/vant/button/index",
  386. "van-toast":"/wxcomponents/vant/toast/index",
  387. "van-popup":"/wxcomponents/vant/popup/index",
  388. "van-search": "/wxcomponents/vant/search/index",
  389. "van-sticky": "/wxcomponents/vant/sticky/index",
  390. "van-field": "/wxcomponents/vant/field/index",
  391. "van-icon": "/wxcomponents/vant/icon/index",
  392. "van-radio": "/wxcomponents/vant/radio/index",
  393. "van-tab": "/wxcomponents/vant/tab/index",
  394. "van-tabs": "/wxcomponents/vant/tabs/index",
  395. "van-count-down": "/wxcomponents/vant/count-down/index",
  396. "van-empty": "/wxcomponents/vant/empty/index",
  397. "van-checkbox": "/wxcomponents/vant/checkbox/index",
  398. "van-transition": "/wxcomponents/vant/transition/index",
  399. "van-collapse": "/wxcomponents/vant/collapse/index",
  400. "van-collapse-item": "/wxcomponents/vant/collapse-item/index",
  401. "van-action-sheet": "/wxcomponents/vant/action-sheet/index",
  402. "van-tag": "/wxcomponents/vant/tag/index",
  403. "van-row": "/wxcomponents/vant/row/index",
  404. "van-col": "/wxcomponents/vant/col/index",
  405. "van-progress": "/wxcomponents/vant/progress/index",
  406. "van-dialog": "/wxcomponents/vant/dialog/index",
  407. "van-cell": "/wxcomponents/vant/cell/index",
  408. "van-tree-select": "/wxcomponents/vant/tree-select/index",
  409. "van-datetime-picker": "/wxcomponents/vant/datetime-picker/index"
  410. }
  411. }
  412. }