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. "path":"pages/roadShow/video/list",
  85. "style": {
  86. "navigationBarTitleText": "线上路演",
  87. "enablePullDownRefresh": true
  88. }
  89. }
  90. ],
  91. "subPackages":[
  92. // 活动模块
  93. {
  94. "root":"pages-activity",
  95. "pages":[
  96. {
  97. "path":"detail",
  98. "style":{
  99. "navigationBarTitleText":"活动详情"
  100. }
  101. },
  102. {
  103. "path":"noAuthority",
  104. "style":{
  105. "navigationBarTitleText":"活动详情"
  106. }
  107. },
  108. {
  109. "path": "reportDetail",
  110. "style":{
  111. "navigationBarTitleText": "报告详情"
  112. }
  113. }
  114. ]
  115. },
  116. // 申请权限模块
  117. {
  118. "root":"pages-applyPermission",
  119. "pages": [
  120. {
  121. "path":"applyPermission",
  122. "style":{
  123. "navigationBarTitleText":"申请试用"
  124. }
  125. },
  126. {
  127. "path":"selectVariety",
  128. "style":{
  129. "navigationBarTitleText":"选择品种"
  130. }
  131. },
  132. {
  133. "path":"applyResult",
  134. "style":{
  135. "navigationBarTitleText":"申请结果"
  136. }
  137. }
  138. ]
  139. },
  140. // 用户模块
  141. {
  142. "root": "pages-user",
  143. "pages": [
  144. {
  145. "path": "permissionList",
  146. "style":{
  147. "navigationBarTitleText": "品种权限"
  148. }
  149. },
  150. {
  151. "path": "messageList",
  152. "style":{
  153. "navigationBarTitleText": "消息通知",
  154. "enablePullDownRefresh": true
  155. }
  156. },
  157. {
  158. "path": "mysetting",
  159. "style":{
  160. "navigationBarTitleText": "我的设置"
  161. }
  162. }
  163. ]
  164. },
  165. // 图库模块
  166. {
  167. "root": "pages-chart",
  168. "pages": [
  169. {
  170. "path": "allTypes",
  171. "style":{
  172. "navigationBarTitleText": "图表分类"
  173. }
  174. },
  175. {
  176. "path": "chartDetail",
  177. "style":{
  178. "navigationBarTitleText": "图表详情"
  179. }
  180. }
  181. ]
  182. },
  183. //已购模块
  184. {
  185. "root": "pages-buy",
  186. "pages": [
  187. {
  188. "path":"detail",
  189. "style":{
  190. "navigationBarTitleText":""
  191. }
  192. }
  193. ]
  194. },
  195. // 研报模块
  196. {
  197. "root": "pages-report",
  198. "pages": [
  199. {
  200. "path":"classify",
  201. "style":{
  202. "navigationBarTitleText":"FICC研报分类",
  203. "enablePullDownRefresh": true
  204. }
  205. },
  206. {
  207. "path":"search",
  208. "style":{
  209. "navigationBarTitleText":"FICC研报"
  210. }
  211. },
  212. // 专栏列表 classifyId
  213. {
  214. "path": "specialColumn/list",
  215. "style":{
  216. "enablePullDownRefresh": true
  217. }
  218. },
  219. // 专栏详情 columnId
  220. {
  221. "path": "specialColumn/detail",
  222. "style":{
  223. "enablePullDownRefresh": true
  224. }
  225. },
  226. // 报告列表 classifyId
  227. {
  228. "path": "reportList",
  229. "style":{
  230. "enablePullDownRefresh": true
  231. }
  232. },
  233. // 报告列表搜索页
  234. {
  235. "path": "reportListSearch"
  236. },
  237. //报告详情
  238. {
  239. "path": "reportDetail"
  240. },
  241. // 章节详情
  242. {
  243. "path": "chapterDetail"
  244. },
  245. //ficc介绍页面
  246. {
  247. "path": "ficcService"
  248. },
  249. //预览图片
  250. {
  251. "path":"previewImage",
  252. "style":{
  253. "navigationStyle": "custom"
  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/roadShow/video/list",
  354. "text": "线上路演",
  355. "iconPath": "./static/tabbar/roadShow.png",
  356. "selectedIconPath": "./static/tabbar/roadShow-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. }